.btn {
  border-width: 2px;
}
body {
  font-family: 'Montserrat', sans-serif;
}
.display-1 {
  font-family: 'Anton', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  line-height: 1.35;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- 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: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((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: #ca0100 !important;
}
.bg-success {
  background-color: #980000 !important;
}
.bg-info {
  background-color: #22a5e5 !important;
}
.bg-warning {
  background-color: #00b790 !important;
}
.bg-danger {
  background-color: #7b7b8b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ca0100 !important;
  border-color: #ca0100 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #262626 !important;
  background-color: #ca0100 !important;
  border-color: #ca0100 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #262626 !important;
  background-color: #ca0100 !important;
  border-color: #ca0100 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #262626 !important;
  background-color: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #262626 !important;
  background-color: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #262626 !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #262626 !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #980000 !important;
  border-color: #980000 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #262626 !important;
  background-color: #980000 !important;
  border-color: #980000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #262626 !important;
  background-color: #980000 !important;
  border-color: #980000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #00b790 !important;
  border-color: #00b790 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #262626 !important;
  background-color: #00b790 !important;
  border-color: #00b790 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #262626 !important;
  background-color: #00b790 !important;
  border-color: #00b790 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #7b7b8b !important;
  border-color: #7b7b8b !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #262626 !important;
  background-color: #7b7b8b !important;
  border-color: #7b7b8b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #262626 !important;
  background-color: #7b7b8b !important;
  border-color: #7b7b8b !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #262626 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #262626 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #262626 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #262626 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ca0100;
  color: #ca0100;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #730100 !important;
  background-color: transparent !important;
  border-color: #730100 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca0100 !important;
  border-color: #ca0100 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e8e8e8;
  color: #e8e8e8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bdbdbd !important;
  background-color: transparent !important;
  border-color: #bdbdbd !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #696969 !important;
  background-color: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #22a5e5;
  color: #22a5e5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #13709e !important;
  background-color: transparent !important;
  border-color: #13709e !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #980000;
  color: #980000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #410000 !important;
  background-color: transparent !important;
  border-color: #410000 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #980000 !important;
  border-color: #980000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #00b790;
  color: #00b790;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #00604c !important;
  background-color: transparent !important;
  border-color: #00604c !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #00b790 !important;
  border-color: #00b790 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #7b7b8b;
  color: #7b7b8b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #52525d !important;
  background-color: transparent !important;
  border-color: #52525d !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #7b7b8b !important;
  border-color: #7b7b8b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ca0100 !important;
}
.text-secondary {
  color: #e8e8e8 !important;
}
.text-success {
  color: #980000 !important;
}
.text-info {
  color: #22a5e5 !important;
}
.text-warning {
  color: #00b790 !important;
}
.text-danger {
  color: #7b7b8b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #262626 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ca0100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b5b5b5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #320000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #116690 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #005140 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4b4b55 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link {
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  color: #ca0100;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #22a5e5;
}
.alert-warning {
  background-color: #00b790;
}
.alert-danger {
  background-color: #7b7b8b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ca0100;
  border-color: #ca0100;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ca0100;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ff9897;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ff1919;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #38ffd4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfbfc7;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ca0100 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ca0100;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ca0100;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ca0100;
}
.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: #ca0100;
  border-bottom-color: #ca0100;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ca0100 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e8e8e8 !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='%23ca0100' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tJKeQ2yIpJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tJKeQ2yIpJ nav.navbar {
  position: fixed;
}
.cid-tJKeQ2yIpJ .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-tJKeQ2yIpJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJKeQ2yIpJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJKeQ2yIpJ .dropdown-item:hover,
.cid-tJKeQ2yIpJ .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tJKeQ2yIpJ .dropdown-item:hover span {
  color: white;
}
.cid-tJKeQ2yIpJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJKeQ2yIpJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJKeQ2yIpJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJKeQ2yIpJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJKeQ2yIpJ .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tJKeQ2yIpJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJKeQ2yIpJ .container {
    flex-wrap: nowrap;
  }
}
.cid-tJKeQ2yIpJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJKeQ2yIpJ .dropdown-menu,
.cid-tJKeQ2yIpJ .navbar.opened {
  background: #000000 !important;
}
.cid-tJKeQ2yIpJ .nav-item:focus,
.cid-tJKeQ2yIpJ .nav-link:focus {
  outline: none;
}
.cid-tJKeQ2yIpJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJKeQ2yIpJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJKeQ2yIpJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJKeQ2yIpJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJKeQ2yIpJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJKeQ2yIpJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJKeQ2yIpJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tJKeQ2yIpJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tJKeQ2yIpJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJKeQ2yIpJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tJKeQ2yIpJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJKeQ2yIpJ .navbar.collapsed {
  justify-content: center;
}
.cid-tJKeQ2yIpJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJKeQ2yIpJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJKeQ2yIpJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJKeQ2yIpJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJKeQ2yIpJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJKeQ2yIpJ .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-tJKeQ2yIpJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJKeQ2yIpJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJKeQ2yIpJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJKeQ2yIpJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJKeQ2yIpJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJKeQ2yIpJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJKeQ2yIpJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJKeQ2yIpJ .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-tJKeQ2yIpJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJKeQ2yIpJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJKeQ2yIpJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJKeQ2yIpJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJKeQ2yIpJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJKeQ2yIpJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJKeQ2yIpJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJKeQ2yIpJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJKeQ2yIpJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJKeQ2yIpJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJKeQ2yIpJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJKeQ2yIpJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJKeQ2yIpJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJKeQ2yIpJ .dropdown-item.active,
.cid-tJKeQ2yIpJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tJKeQ2yIpJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJKeQ2yIpJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJKeQ2yIpJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJKeQ2yIpJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJKeQ2yIpJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJKeQ2yIpJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJKeQ2yIpJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJKeQ2yIpJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJKeQ2yIpJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJKeQ2yIpJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tJKeQ2yIpJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJKeQ2yIpJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKeQ2yIpJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKeQ2yIpJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJKeQ2yIpJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKeQ2yIpJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJKeQ2yIpJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJKeQ2yIpJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKeQ2yIpJ .navbar-dropdown {
  position: fixed;
}
.cid-tJKeQ2yIpJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJKeQ2yIpJ .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-tJKeQ2yIpJ .navbar {
    height: 70px;
  }
  .cid-tJKeQ2yIpJ .navbar.opened {
    height: auto;
  }
  .cid-tJKeQ2yIpJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU4JlPTyB8 {
  display: flex;
  background-image: url("../../../assets/images/think-chery-think-lesydear-omoda-c5.gif");
}
.cid-uU4JlPTyB8 .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-uU4JlPTyB8 {
    align-items: center;
  }
  .cid-uU4JlPTyB8 .row {
    justify-content: center;
  }
  .cid-uU4JlPTyB8 .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uU4JlPTyB8 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uU4JlPTyB8 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uU4JlPTyB8 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uU4JlPTyB8 .content-wrap {
    width: 100%;
  }
}
.cid-uU4JlPTyB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU4JlPTyB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU4JlPTyB8 .mbr-section-title,
.cid-uU4JlPTyB8 .mbr-section-subtitle {
  text-align: left;
  color: #ffc091;
}
.cid-uU4JlPTyB8 .mbr-text,
.cid-uU4JlPTyB8 .mbr-section-btn {
  text-align: center;
}
.cid-uU4JlPTyB8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uU4JlPTyB8 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tMBbepIeva {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tMBbepIeva .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMBbepIeva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMBbepIeva .col-title {
  margin-bottom: 32px;
}
.cid-tMBbepIeva .mbr-section-title {
  color: #24262b;
}
.cid-tMBbepIeva .mbr-section-subtitle {
  color: #24262b;
}
.cid-tMBbepIeva .cars-row {
  row-gap: 32px;
}
.cid-tMBbepIeva .card {
  border-radius: 0;
}
.cid-tMBbepIeva .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-tMBbepIeva .text-wrap {
  flex-grow: 1;
}
.cid-tMBbepIeva .card-title {
  color: #24262b;
}
.cid-tMBbepIeva .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-tMBbepIeva .mbr-section-btn {
  margin-top: 12px;
}
.cid-tMBbepIeva .card-title,
.cid-tMBbepIeva .card-wrapper {
  color: #1b1b1b;
}
.cid-tMBbepIeva .card-text,
.cid-tMBbepIeva .mbr-section-btn {
  color: #2b2b2b;
}
.cid-tK6Eszef88 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-tK6Eszef88 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK6Eszef88 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tK6Eszef88 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tK6Eszef88 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tK6Eszef88 .container {
    padding: 0 26px;
  }
}
.cid-tK6Eszef88 .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-tK6Eszef88 .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-tK6Eszef88 .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-tK6Eszef88 .mbr-section-title {
  color: #ffffff;
}
.cid-tK6Eszef88 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tK6Eszef88 .mbr-text {
  color: #cacaca;
}
.cid-tKnpuYfUmQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #730000;
}
.cid-tKnpuYfUmQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKnpuYfUmQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKnpuYfUmQ h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-tKnpuYfUmQ h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-tKnpuYfUmQ .mbr-section-title {
  color: #ffffff;
}
.cid-tJKeQ4Kb4x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f1f4e9;
}
.cid-tJKeQ4Kb4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKeQ4Kb4x .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-tJKeQ4Kb4x .container {
    padding: 0 30px;
  }
}
.cid-tJKeQ4Kb4x .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tJKeQ4Kb4x .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tJKeQ4Kb4x .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tJKeQ4Kb4x .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tJKeQ4Kb4x .image-wrapper img {
    height: 300px;
  }
}
.cid-tJKeQ4Kb4x .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tJKeQ4Kb4x .title-wrapper {
    height: auto;
  }
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tJKeQ4Kb4x .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tJKeQ4Kb4x .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tJKeQ4Kb4x .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tJKeQ4Kb4x .mbr-section-subtitle {
  color: #212529;
}
.cid-tJKeQ4Kb4x .mbr-section-title {
  color: #212529;
}
.cid-tJKeQ4Kb4x .mbr-text {
  color: #212529;
}
.cid-tMy7DjAh4C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b2b2b;
}
.cid-tMy7DjAh4C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMy7DjAh4C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMy7DjAh4C h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-tMy7DjAh4C h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-tMy7DjAh4C .mbr-section-title {
  color: #ffffff;
}
.cid-tKUAIWAjIM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tKUAIWAjIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKUAIWAjIM .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-tKUAIWAjIM .container {
    padding: 0 30px;
  }
}
.cid-tKUAIWAjIM .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tKUAIWAjIM .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tKUAIWAjIM .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tKUAIWAjIM .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tKUAIWAjIM .image-wrapper img {
    height: 300px;
  }
}
.cid-tKUAIWAjIM .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tKUAIWAjIM .title-wrapper {
    height: auto;
  }
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKUAIWAjIM .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tKUAIWAjIM .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tKUAIWAjIM .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tKUAIWAjIM .mbr-section-subtitle {
  color: #212529;
}
.cid-tKUAIWAjIM .mbr-section-title {
  color: #212529;
}
.cid-tKUAIWAjIM .mbr-text {
  color: #212529;
}
.cid-uSGfID6pPv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSGfID6pPv .item:focus,
.cid-uSGfID6pPv span:focus {
  outline: none;
}
.cid-uSGfID6pPv .item {
  cursor: pointer;
}
.cid-uSGfID6pPv .grid-container {
  grid-row-gap: 0;
}
.cid-uSGfID6pPv .grid-container-1,
.cid-uSGfID6pPv .grid-container-2,
.cid-uSGfID6pPv .grid-container-3 {
  gap: 0;
}
.cid-uSGfID6pPv .mbr-section-title {
  color: #000000;
}
.cid-uSGfID6pPv .mbr-text,
.cid-uSGfID6pPv .mbr-section-btn {
  color: #000000;
}
.cid-uSGfID6pPv .content-head {
  max-width: 800px;
}
.cid-uSGfID6pPv .container,
.cid-uSGfID6pPv .container-fluid {
  overflow: hidden;
}
.cid-uSGfID6pPv .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSGfID6pPv .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSGfID6pPv .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSGfID6pPv .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSGfID6pPv .grid-container-1,
.cid-uSGfID6pPv .grid-container-2,
.cid-uSGfID6pPv .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSGfID6pPv .grid-container-1 {
  align-items: flex-end;
}
.cid-uSGfID6pPv .grid-container-2 {
  align-items: flex-start;
}
.cid-tKxNRyecZC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-tKxNRyecZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKxNRyecZC .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-tKxNRyecZC .container {
    padding: 0 30px;
  }
}
.cid-tKxNRyecZC .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tKxNRyecZC .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tKxNRyecZC .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tKxNRyecZC .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tKxNRyecZC .image-wrapper img {
    height: 300px;
  }
}
.cid-tKxNRyecZC .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tKxNRyecZC .title-wrapper {
    height: auto;
  }
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKxNRyecZC .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tKxNRyecZC .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tKxNRyecZC .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tKxNRyecZC .mbr-section-subtitle {
  color: #212529;
}
.cid-tKxNRyecZC .mbr-section-title {
  color: #212529;
}
.cid-tKxNRyecZC .mbr-text {
  color: #212529;
}
.cid-tKdEFkDmQt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tKdEFkDmQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKdEFkDmQt .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-tKdEFkDmQt .container {
    padding: 0 30px;
  }
}
.cid-tKdEFkDmQt .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tKdEFkDmQt .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tKdEFkDmQt .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tKdEFkDmQt .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tKdEFkDmQt .image-wrapper img {
    height: 300px;
  }
}
.cid-tKdEFkDmQt .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tKdEFkDmQt .title-wrapper {
    height: auto;
  }
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKdEFkDmQt .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tKdEFkDmQt .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tKdEFkDmQt .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tKdEFkDmQt .mbr-section-subtitle {
  color: #212529;
}
.cid-tKdEFkDmQt .mbr-section-title {
  color: #212529;
}
.cid-tKdEFkDmQt .mbr-text {
  color: #212529;
}
.cid-uSJSlFvhPS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSJSlFvhPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJSlFvhPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJSlFvhPS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSJSlFvhPS .image-wrap img {
    display: block;
    margin: auto;
    width: 120%;
  }
}
.cid-uSJSlFvhPS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uSJSlFvhPS .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uSJSlFvhPS .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uSJSlFvhPS .header-menu li p {
  margin: 0;
}
.cid-uSJSlFvhPS .content-head {
  max-width: 800px;
}
.cid-uSJSlFvhPS .mbr-section-title {
  color: #980000;
}
.cid-tKkrpTVGlg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tKkrpTVGlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKkrpTVGlg .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-tKkrpTVGlg .container {
    padding: 0 30px;
  }
}
.cid-tKkrpTVGlg .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tKkrpTVGlg .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tKkrpTVGlg .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tKkrpTVGlg .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tKkrpTVGlg .image-wrapper img {
    height: 300px;
  }
}
.cid-tKkrpTVGlg .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tKkrpTVGlg .title-wrapper {
    height: auto;
  }
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKkrpTVGlg .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tKkrpTVGlg .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tKkrpTVGlg .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tKkrpTVGlg .mbr-section-subtitle {
  color: #212529;
}
.cid-tKkrpTVGlg .mbr-section-title {
  color: #212529;
}
.cid-tKkrpTVGlg .mbr-text {
  color: #212529;
}
.cid-uSGZAb0XE4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSGZAb0XE4 .item:focus,
.cid-uSGZAb0XE4 span:focus {
  outline: none;
}
.cid-uSGZAb0XE4 .item {
  cursor: pointer;
}
.cid-uSGZAb0XE4 .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSGZAb0XE4 .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSGZAb0XE4 .grid-container-1,
.cid-uSGZAb0XE4 .grid-container-2,
.cid-uSGZAb0XE4 .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSGZAb0XE4 .grid-container-1,
  .cid-uSGZAb0XE4 .grid-container-2,
  .cid-uSGZAb0XE4 .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSGZAb0XE4 .mbr-section-title {
  color: #000000;
}
.cid-uSGZAb0XE4 .mbr-text,
.cid-uSGZAb0XE4 .mbr-section-btn {
  color: #000000;
}
.cid-uSGZAb0XE4 .content-head {
  max-width: 800px;
}
.cid-uSGZAb0XE4 .container,
.cid-uSGZAb0XE4 .container-fluid {
  overflow: hidden;
}
.cid-uSGZAb0XE4 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSGZAb0XE4 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSGZAb0XE4 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSGZAb0XE4 .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSGZAb0XE4 .grid-container-1,
.cid-uSGZAb0XE4 .grid-container-2,
.cid-uSGZAb0XE4 .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSGZAb0XE4 .grid-container-1 {
  align-items: flex-end;
}
.cid-uSGZAb0XE4 .grid-container-2 {
  align-items: flex-start;
}
.cid-uSGY2wLN5Z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSGY2wLN5Z .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uSGY2wLN5Z .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-uSGY2wLN5Z .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-uSGXEcwn7a {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSGXEcwn7a .item:focus,
.cid-uSGXEcwn7a span:focus {
  outline: none;
}
.cid-uSGXEcwn7a .item {
  cursor: pointer;
}
.cid-uSGXEcwn7a .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSGXEcwn7a .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSGXEcwn7a .grid-container-1,
.cid-uSGXEcwn7a .grid-container-2,
.cid-uSGXEcwn7a .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSGXEcwn7a .grid-container-1,
  .cid-uSGXEcwn7a .grid-container-2,
  .cid-uSGXEcwn7a .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSGXEcwn7a .mbr-section-title {
  color: #000000;
}
.cid-uSGXEcwn7a .mbr-text,
.cid-uSGXEcwn7a .mbr-section-btn {
  color: #000000;
}
.cid-uSGXEcwn7a .content-head {
  max-width: 800px;
}
.cid-uSGXEcwn7a .container,
.cid-uSGXEcwn7a .container-fluid {
  overflow: hidden;
}
.cid-uSGXEcwn7a .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSGXEcwn7a .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSGXEcwn7a .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSGXEcwn7a .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSGXEcwn7a .grid-container-1,
.cid-uSGXEcwn7a .grid-container-2,
.cid-uSGXEcwn7a .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSGXEcwn7a .grid-container-1 {
  align-items: flex-end;
}
.cid-uSGXEcwn7a .grid-container-2 {
  align-items: flex-start;
}
.cid-tJKeQ5wo7x {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tJKeQ5wo7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKeQ5wo7x .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-tJKeQ5wo7x .container {
    padding: 0 30px;
  }
}
.cid-tJKeQ5wo7x .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tJKeQ5wo7x .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tJKeQ5wo7x .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tJKeQ5wo7x .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tJKeQ5wo7x .image-wrapper img {
    height: 300px;
  }
}
.cid-tJKeQ5wo7x .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tJKeQ5wo7x .title-wrapper {
    height: auto;
  }
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tJKeQ5wo7x .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tJKeQ5wo7x .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tJKeQ5wo7x .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tJKeQ5wo7x .mbr-section-subtitle {
  color: #212529;
}
.cid-tJKeQ5wo7x .mbr-section-title {
  color: #212529;
}
.cid-tJKeQ5wo7x .mbr-text {
  color: #212529;
}
.cid-uUTSPVRQsP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUTSPVRQsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTSPVRQsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUTSPVRQsP .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUTSPVRQsP .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUTSPVRQsP .container {
    padding: 0 26px;
  }
}
.cid-uUTSPVRQsP .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUTSPVRQsP .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUTSPVRQsP .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUTSPVRQsP .mbr-section-title {
  color: #ffffff;
}
.cid-uUTSPVRQsP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUTSPVRQsP .mbr-text {
  color: #cacaca;
}
.cid-uSGXdzKLL8 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #7b7b8b;
}
.cid-uSGXdzKLL8 .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uSGXdzKLL8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSGXdzKLL8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMB5JSjxGd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #7b7b8b;
}
.cid-tMB5JSjxGd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMB5JSjxGd .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-tMB5JSjxGd .container {
    padding: 0 30px;
  }
}
.cid-tMB5JSjxGd .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMB5JSjxGd .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMB5JSjxGd .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMB5JSjxGd .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMB5JSjxGd .image-wrapper img {
    height: 300px;
  }
}
.cid-tMB5JSjxGd .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMB5JSjxGd .title-wrapper {
    height: auto;
  }
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMB5JSjxGd .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMB5JSjxGd .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMB5JSjxGd .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMB5JSjxGd .mbr-section-subtitle {
  color: #212529;
}
.cid-tMB5JSjxGd .mbr-section-title {
  color: #212529;
}
.cid-tMB5JSjxGd .mbr-text {
  color: #212529;
}
.cid-tMB0IZX3NZ {
  background-color: #7b7b8b;
}
.cid-tMB0IZX3NZ .mbr-section-head {
  position: absolute;
  transform: translate(2rem, 5rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-tMB0IZX3NZ .mbr-section-head {
    transform: translate(-1rem, 5rem) rotate(-90deg);
  }
}
.cid-tMB0IZX3NZ .wrap {
  padding: 0 1rem;
}
.cid-tMB0IZX3NZ .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-tMB0IZX3NZ img,
.cid-tMB0IZX3NZ .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tMB0IZX3NZ img,
  .cid-tMB0IZX3NZ .item-img {
    height: 420px;
  }
}
.cid-tMB0IZX3NZ .col-10,
.cid-tMB0IZX3NZ .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-tMB0IZX3NZ .col-10 {
  background-color: #ffffff;
}
.cid-tMB0IZX3NZ .item:focus,
.cid-tMB0IZX3NZ span:focus {
  outline: none;
}
.cid-tMB0IZX3NZ .item-wrapper {
  position: relative;
}
.cid-tMB0IZX3NZ .embla {
  position: relative;
}
.cid-tMB0IZX3NZ .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tMB0IZX3NZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-tMB0IZX3NZ .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tMB0IZX3NZ .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-tMB0IZX3NZ .embla__button--next,
.cid-tMB0IZX3NZ .embla__button--prev {
  display: flex;
}
.cid-tMB0IZX3NZ .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-tMB0IZX3NZ .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #730000;
  border: 1px solid #730000;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMB0IZX3NZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMB0IZX3NZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMB0IZX3NZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMB0IZX3NZ .embla__button {
    top: auto;
  }
}
.cid-tMB0IZX3NZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tMB0IZX3NZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-tMB0IZX3NZ .mbr-section-title {
    font-size: 64px;
  }
}
.cid-tMB0IZX3NZ .mbr-subtitle {
  color: #c40707;
}
.cid-tMB0IZX3NZ .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tMB0IZX3NZ .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tMB0IZX3NZ .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tMB0IZX3NZ .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tMB2i5wp98 {
  background-color: #730000;
}
.cid-tMB2i5wp98 .mbr-section-head {
  position: absolute;
  transform: translate(3rem, 5rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-tMB2i5wp98 .mbr-section-head {
    transform: translate(-1rem, 5rem) rotate(-90deg);
  }
}
.cid-tMB2i5wp98 .wrap {
  padding: 0 1rem;
}
.cid-tMB2i5wp98 .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-tMB2i5wp98 img,
.cid-tMB2i5wp98 .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tMB2i5wp98 img,
  .cid-tMB2i5wp98 .item-img {
    height: 420px;
  }
}
.cid-tMB2i5wp98 .col-10,
.cid-tMB2i5wp98 .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-tMB2i5wp98 .col-10 {
  background-color: #ffffff;
}
.cid-tMB2i5wp98 .item:focus,
.cid-tMB2i5wp98 span:focus {
  outline: none;
}
.cid-tMB2i5wp98 .item-wrapper {
  position: relative;
}
.cid-tMB2i5wp98 .embla {
  position: relative;
}
.cid-tMB2i5wp98 .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tMB2i5wp98 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-tMB2i5wp98 .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tMB2i5wp98 .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-tMB2i5wp98 .embla__button--next,
.cid-tMB2i5wp98 .embla__button--prev {
  display: flex;
}
.cid-tMB2i5wp98 .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-tMB2i5wp98 .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #730000;
  border: 1px solid #730000;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMB2i5wp98 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMB2i5wp98 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMB2i5wp98 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMB2i5wp98 .embla__button {
    top: auto;
  }
}
.cid-tMB2i5wp98 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tMB2i5wp98 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-tMB2i5wp98 .mbr-section-title {
    font-size: 64px;
  }
}
.cid-tMB2i5wp98 .mbr-subtitle {
  color: #c40707;
}
.cid-tMB2i5wp98 .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tMB2i5wp98 .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tMB2i5wp98 .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tMB2i5wp98 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tMB5MeLTS5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tMB5MeLTS5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMB5MeLTS5 .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-tMB5MeLTS5 .container {
    padding: 0 30px;
  }
}
.cid-tMB5MeLTS5 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMB5MeLTS5 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMB5MeLTS5 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMB5MeLTS5 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMB5MeLTS5 .image-wrapper img {
    height: 300px;
  }
}
.cid-tMB5MeLTS5 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMB5MeLTS5 .title-wrapper {
    height: auto;
  }
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMB5MeLTS5 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMB5MeLTS5 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMB5MeLTS5 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMB5MeLTS5 .mbr-section-subtitle {
  color: #212529;
}
.cid-tMB5MeLTS5 .mbr-section-title {
  color: #212529;
}
.cid-tMB5MeLTS5 .mbr-text {
  color: #212529;
}
.cid-tL1RV4s33k {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tL1RV4s33k .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tL1RV4s33k .row {
  flex-direction: row-reverse;
}
.cid-tL1RV4s33k .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tL1RV4s33k .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tL1RV4s33k .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tL1RV4s33k .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #730000;
}
.cid-tL1RV4s33k .mbr-text,
.cid-tL1RV4s33k .mbr-section-btn {
  text-align: center;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-tL1RV4s33k .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tL0ltg1Ibl {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/omoda-spec-bg-1920x894.webp");
}
.cid-tL0ltg1Ibl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL0ltg1Ibl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL0ltg1Ibl .mbr-section-title,
.cid-tL0ltg1Ibl .mbr-text,
.cid-tL0ltg1Ibl .card-title,
.cid-tL0ltg1Ibl .num {
  color: #fafafa;
}
.cid-tL0ltg1Ibl .title .num {
  width: 100%;
  display: block;
}
.cid-tL0ltg1Ibl .title .card-title {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tL0ltg1Ibl .content-column {
    margin-bottom: 2rem;
  }
  .cid-tL0ltg1Ibl .p-center {
    padding: 30px 0;
  }
}
.cid-tL0ltg1Ibl .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tL0ltg1Ibl .rotate {
    top: 30px;
  }
}
.cid-tL0ltg1Ibl .hide {
  display: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .cid-tL0ltg1Ibl .tablet-padding {
    padding: 50px 0 0 0;
  }
}
.cid-tKxNSAluUE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tKxNSAluUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKxNSAluUE .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-tKxNSAluUE .container {
    padding: 0 30px;
  }
}
.cid-tKxNSAluUE .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tKxNSAluUE .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tKxNSAluUE .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tKxNSAluUE .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tKxNSAluUE .image-wrapper img {
    height: 300px;
  }
}
.cid-tKxNSAluUE .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tKxNSAluUE .title-wrapper {
    height: auto;
  }
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tKxNSAluUE .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tKxNSAluUE .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tKxNSAluUE .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tKxNSAluUE .mbr-section-subtitle {
  color: #212529;
}
.cid-tKxNSAluUE .mbr-section-title {
  color: #212529;
}
.cid-tKxNSAluUE .mbr-text {
  color: #212529;
}
.cid-tL0qKE0ar9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-tL0qKE0ar9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL0qKE0ar9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL0qKE0ar9 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tL0qKE0ar9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tL0qKE0ar9 .container {
    padding: 0 26px;
  }
}
.cid-tL0qKE0ar9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 690px;
  max-width: 690px;
}
@media (max-width: 768px) {
  .cid-tL0qKE0ar9 .embla__slide {
    min-width: 85%;
    max-width: 85%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tL0qKE0ar9 .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tL0qKE0ar9 .embla__slide a:hover .card-wrap .item-wrapper .image-wrap::before {
  opacity: .65;
}
.cid-tL0qKE0ar9 .embla__slide a:hover .card-wrap .item-wrapper .image-wrap .content-wrap {
  opacity: 1;
  transform: translateX(0);
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
    opacity: .65;
  }
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-title {
  margin-bottom: 0;
}
.cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-desc {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tL0qKE0ar9 .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-tL0qKE0ar9 .embla__button--next,
.cid-tL0qKE0ar9 .embla__button--prev {
  display: flex;
}
.cid-tL0qKE0ar9 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tL0qKE0ar9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tL0qKE0ar9 .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tL0qKE0ar9 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tL0qKE0ar9 .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tL0qKE0ar9 .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tL0qKE0ar9 .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tL0qKE0ar9 .embla {
  position: relative;
  width: 100%;
}
.cid-tL0qKE0ar9 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tL0qKE0ar9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tL0qKE0ar9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tL0qKE0ar9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tL0qKE0ar9 .card-title {
  color: #ffffff;
}
.cid-tL0qKE0ar9 .card-desc {
  color: #cacaca;
}
.cid-tL1X6ukE2E {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tL1X6ukE2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL1X6ukE2E .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-tL1X6ukE2E .container {
    padding: 0 30px;
  }
}
.cid-tL1X6ukE2E .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tL1X6ukE2E .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tL1X6ukE2E .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tL1X6ukE2E .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tL1X6ukE2E .image-wrapper img {
    height: 300px;
  }
}
.cid-tL1X6ukE2E .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tL1X6ukE2E .title-wrapper {
    height: auto;
  }
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tL1X6ukE2E .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tL1X6ukE2E .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tL1X6ukE2E .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tL1X6ukE2E .mbr-section-subtitle {
  color: #212529;
}
.cid-tL1X6ukE2E .mbr-section-title {
  color: #212529;
}
.cid-tL1X6ukE2E .mbr-text {
  color: #212529;
}
.cid-tLgNo8JxWf {
  background-color: #ffffff;
}
.cid-tLgNo8JxWf .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tLgNo8JxWf .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tLgNo8JxWf .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tLgNo8JxWf .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #730000;
}
.cid-tLgNo8JxWf .mbr-text,
.cid-tLgNo8JxWf .mbr-section-btn {
  text-align: center;
  color: #161616;
}
@media (max-width: 767px) {
  .cid-tLgNo8JxWf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uUXQBOUs8s {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUXQBOUs8s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXQBOUs8s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXQBOUs8s .mbr-section-title {
  text-align: left;
}
.cid-uUXQBOUs8s .mbr-section-subtitle {
  text-align: left;
}
.cid-uUXLGBFJm8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUXLGBFJm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXLGBFJm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXLGBFJm8 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUXLGBFJm8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUXLGBFJm8 .container {
    padding: 0 26px;
  }
}
.cid-uUXLGBFJm8 .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUXLGBFJm8 .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUXLGBFJm8 .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUXLGBFJm8 .mbr-section-title {
  color: #ffffff;
}
.cid-uUXLGBFJm8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUXLGBFJm8 .mbr-text {
  color: #cacaca;
}
.cid-uUXNSUm3au {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUXNSUm3au .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXNSUm3au .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXNSUm3au .mbr-section-title {
  text-align: left;
}
.cid-uUXNSUm3au .mbr-section-subtitle {
  text-align: left;
}
.cid-uUXLJwL6g3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUXLJwL6g3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXLJwL6g3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXLJwL6g3 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUXLJwL6g3 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUXLJwL6g3 .container {
    padding: 0 26px;
  }
}
.cid-uUXLJwL6g3 .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUXLJwL6g3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUXLJwL6g3 .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUXLJwL6g3 .mbr-section-title {
  color: #ffffff;
}
.cid-uUXLJwL6g3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUXLJwL6g3 .mbr-text {
  color: #cacaca;
}
.cid-uUXZLXjDJk {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUXZLXjDJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXZLXjDJk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXZLXjDJk .mbr-section-title {
  text-align: left;
}
.cid-uUXZLXjDJk .mbr-section-subtitle {
  text-align: left;
}
.cid-uUXZMIaC0G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUXZMIaC0G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXZMIaC0G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXZMIaC0G .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUXZMIaC0G .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUXZMIaC0G .container {
    padding: 0 26px;
  }
}
.cid-uUXZMIaC0G .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUXZMIaC0G .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUXZMIaC0G .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUXZMIaC0G .mbr-section-title {
  color: #ffffff;
}
.cid-uUXZMIaC0G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUXZMIaC0G .mbr-text {
  color: #cacaca;
}
.cid-uUXQkllfQ5 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUXQkllfQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXQkllfQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXQkllfQ5 .mbr-section-title {
  text-align: left;
}
.cid-uUXQkllfQ5 .mbr-section-subtitle {
  text-align: left;
}
.cid-uUXLKpiJta {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUXLKpiJta .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXLKpiJta .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXLKpiJta .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUXLKpiJta .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUXLKpiJta .container {
    padding: 0 26px;
  }
}
.cid-uUXLKpiJta .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUXLKpiJta .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUXLKpiJta .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUXLKpiJta .mbr-section-title {
  color: #ffffff;
}
.cid-uUXLKpiJta .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUXLKpiJta .mbr-text {
  color: #cacaca;
}
.cid-uUXZM12Gkv {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUXZM12Gkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXZM12Gkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXZM12Gkv .mbr-section-title {
  text-align: left;
}
.cid-uUXZM12Gkv .mbr-section-subtitle {
  text-align: left;
}
.cid-tLgJWnkzmB {
  background-image: url("../../../assets/images/root1666586065851807-1920x1080.webp");
}
.cid-tLgJWnkzmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLgJWnkzmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLgJWnkzmB .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tLgJWnkzmB .container-fluid {
    padding: 0 16px;
  }
}
.cid-tLgJWnkzmB .container-fluid .row {
  padding: 0;
}
.cid-tLgJWnkzmB .container {
  overflow: hidden;
}
.cid-tLgJWnkzmB .title-wrapper {
  margin-bottom: 102px;
}
@media (max-width: 992px) {
  .cid-tLgJWnkzmB .title-wrapper {
    margin-bottom: 80px;
  }
}
.cid-tLgJWnkzmB .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tLgJWnkzmB .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .cid-tLgJWnkzmB .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tLgJWnkzmB .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tLgJWnkzmB .cards-wrapper {
  display: inline-grid;
  grid-template-columns: repeat(3, 190px);
  grid-column-gap: 24px;
  grid-row-gap: 64px;
}
@media (max-width: 768px) {
  .cid-tLgJWnkzmB .cards-wrapper {
    grid-template-columns: repeat(1, 100%);
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }
}
.cid-tLgJWnkzmB .cards-wrapper .card .mbr-number {
  margin-bottom: 4px;
}
.cid-tLgJWnkzmB .cards-wrapper .card .mbr-title {
  margin-bottom: 4px;
}
.cid-tLgJWnkzmB .cards-wrapper .card .mbr-desc {
  margin-bottom: 0;
}
.cid-tLgJWnkzmB .mbr-section-title {
  color: #495DFF;
}
.cid-tLgJWnkzmB .mbr-text {
  color: #e8e8e8;
}
.cid-tLgJWnkzmB .mbr-number {
  color: #e8e8e8;
}
.cid-tLgJWnkzmB .mbr-title {
  color: #e8e8e8;
}
.cid-tLgJWnkzmB .mbr-desc {
  color: #e8e8e8;
}
.cid-tLgJWnkzmB .mbr-section-title,
.cid-tLgJWnkzmB .cards {
  color: #e8e8e8;
}
.cid-tNxuWneHEW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-tNxuWneHEW .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tNxuWneHEW .mbr-text {
  color: #730000;
  text-align: right;
}
.cid-tNxuWneHEW .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-tLdRlnNSI0 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tLdRlnNSI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdRlnNSI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLdRlnNSI0 .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-tLdRlnNSI0 .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tLdRlnNSI0 .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tLdRlnNSI0 .mbr-section-title {
  color: #730000;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tLdRlnNSI0 .mbr-section-title {
    width: 100%;
  }
}
.cid-tLdRlnNSI0 .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tLdRlnNSI0 .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tLdRlnNSI0 .lists-col {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-tLdRlnNSI0 .lists-col {
    width: 100%;
  }
}
.cid-tLdRlnNSI0 .item-text-1 {
  color: #727272;
  position: relative;
  z-index: 1;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-tLdRlnNSI0 .item-text-2 {
  color: #ee2524;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-tLdRlnNSI0 .item-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tLdRlnNSI0 .item-wrap {
    padding-right: 0.5rem;
  }
}
.cid-tLdRlnNSI0 .item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #f0f0f0;
  transition: .5s all;
}
.cid-tLdRlnNSI0 .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  transition: .5s all;
  position: relative;
}
.cid-tLdRlnNSI0 .item-container {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: .5s all;
}
.cid-tLdRlnNSI0 .item-container:hover .item-content {
  padding: 3rem 1.5rem 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tLdRlnNSI0 .item-container:hover .item-content {
    padding: 3rem 0.7rem 3rem 1.4rem;
  }
}
.cid-tLdRlnNSI0 .item-container:hover .item-text-1 {
  transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tLdRlnNSI0 .item-container:hover .item-text-2 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tLdRlnNSI0 .item-container:hover .item-overlay {
  height: 100%;
}
.cid-tLdRlnNSI0 .item-info-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.cid-tLdRlnNSI0 .mbr-text {
  color: #000000;
}
.cid-tLdRlnNSI0 .number-text {
  color: #c4c4c8;
  margin-left: auto;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-tLdRlnNSI0 .number-text {
    padding-left: 0.5rem;
  }
}
.cid-uUYiNOpqwu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-uUYiNOpqwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYiNOpqwu .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-uUYiNOpqwu .container {
    padding: 0 30px;
  }
}
.cid-uUYiNOpqwu .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uUYiNOpqwu .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUYiNOpqwu .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uUYiNOpqwu .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uUYiNOpqwu .image-wrapper img {
    height: 300px;
  }
}
.cid-uUYiNOpqwu .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uUYiNOpqwu .title-wrapper {
    height: auto;
  }
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uUYiNOpqwu .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uUYiNOpqwu .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uUYiNOpqwu .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uUYiNOpqwu .mbr-section-subtitle {
  color: #212529;
}
.cid-uUYiNOpqwu .mbr-section-title {
  color: #212529;
}
.cid-uUYiNOpqwu .mbr-text {
  color: #212529;
}
.cid-tNx2qbJFW3 {
  background-image: url("../../../assets/images/360-explorer-1339x814.webp");
}
.cid-tNx2qbJFW3 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tNx2qbJFW3 .row {
  flex-direction: row-reverse;
}
.cid-tNx2qbJFW3 .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tNx2qbJFW3 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tNx2qbJFW3 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tNx2qbJFW3 .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
}
.cid-tNx2qbJFW3 .mbr-text,
.cid-tNx2qbJFW3 .mbr-section-btn {
  text-align: center;
  color: #e8e8e8;
}
@media (max-width: 767px) {
  .cid-tNx2qbJFW3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ues0Dpr3lH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-ues0Dpr3lH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ues0Dpr3lH .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-ues0Dpr3lH .container {
    padding: 0 30px;
  }
}
.cid-ues0Dpr3lH .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-ues0Dpr3lH .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ues0Dpr3lH .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-ues0Dpr3lH .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ues0Dpr3lH .image-wrapper img {
    height: 300px;
  }
}
.cid-ues0Dpr3lH .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ues0Dpr3lH .title-wrapper {
    height: auto;
  }
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ues0Dpr3lH .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-ues0Dpr3lH .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-ues0Dpr3lH .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-ues0Dpr3lH .mbr-section-subtitle {
  color: #212529;
}
.cid-ues0Dpr3lH .mbr-section-title {
  color: #212529;
}
.cid-ues0Dpr3lH .mbr-text {
  color: #212529;
}
.cid-ues0zrxk7u {
  padding-top: 180px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ues0zrxk7u h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-ues0zrxk7u span {
  background-image: url("../../../assets/images/copy-of-omoda-left-3-quarter-rear.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-ues0zrxk7u .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uUTNQBp7D3 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uUTNQBp7D3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTNQBp7D3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUTNQBp7D3 .row {
  flex-direction: row-reverse;
}
.cid-uUTNQBp7D3 .mbr-description {
  text-align: center;
}
.cid-ues0En6bED {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-ues0En6bED .mbr-fallback-image.disabled {
  display: none;
}
.cid-ues0En6bED .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-ues0En6bED .container {
    padding: 0 30px;
  }
}
.cid-ues0En6bED .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-ues0En6bED .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ues0En6bED .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-ues0En6bED .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ues0En6bED .image-wrapper img {
    height: 300px;
  }
}
.cid-ues0En6bED .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ues0En6bED .title-wrapper {
    height: auto;
  }
}
.cid-ues0En6bED .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-ues0En6bED .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-ues0En6bED .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-ues0En6bED .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-ues0En6bED .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ues0En6bED .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ues0En6bED .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-ues0En6bED .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-ues0En6bED .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-ues0En6bED .mbr-section-subtitle {
  color: #212529;
}
.cid-ues0En6bED .mbr-section-title {
  color: #212529;
}
.cid-ues0En6bED .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tJK13SKoGU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tJK13SKoGU nav.navbar {
  position: fixed;
}
.cid-tJK13SKoGU .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-tJK13SKoGU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJK13SKoGU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJK13SKoGU .dropdown-item:hover,
.cid-tJK13SKoGU .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tJK13SKoGU .dropdown-item:hover span {
  color: white;
}
.cid-tJK13SKoGU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJK13SKoGU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJK13SKoGU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJK13SKoGU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJK13SKoGU .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tJK13SKoGU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJK13SKoGU .container {
    flex-wrap: nowrap;
  }
}
.cid-tJK13SKoGU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJK13SKoGU .dropdown-menu,
.cid-tJK13SKoGU .navbar.opened {
  background: #000000 !important;
}
.cid-tJK13SKoGU .nav-item:focus,
.cid-tJK13SKoGU .nav-link:focus {
  outline: none;
}
.cid-tJK13SKoGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJK13SKoGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJK13SKoGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJK13SKoGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJK13SKoGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJK13SKoGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJK13SKoGU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tJK13SKoGU .navbar.opened {
  transition: all 0.3s;
}
.cid-tJK13SKoGU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJK13SKoGU .navbar .navbar-logo img {
  width: auto;
}
.cid-tJK13SKoGU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJK13SKoGU .navbar.collapsed {
  justify-content: center;
}
.cid-tJK13SKoGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJK13SKoGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJK13SKoGU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJK13SKoGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJK13SKoGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJK13SKoGU .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-tJK13SKoGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJK13SKoGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJK13SKoGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJK13SKoGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJK13SKoGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJK13SKoGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJK13SKoGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJK13SKoGU .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-tJK13SKoGU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJK13SKoGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJK13SKoGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJK13SKoGU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJK13SKoGU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJK13SKoGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJK13SKoGU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJK13SKoGU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJK13SKoGU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJK13SKoGU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJK13SKoGU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJK13SKoGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJK13SKoGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJK13SKoGU .dropdown-item.active,
.cid-tJK13SKoGU .dropdown-item:active {
  background-color: transparent;
}
.cid-tJK13SKoGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJK13SKoGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJK13SKoGU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJK13SKoGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJK13SKoGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJK13SKoGU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJK13SKoGU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJK13SKoGU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJK13SKoGU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJK13SKoGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tJK13SKoGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJK13SKoGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJK13SKoGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJK13SKoGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJK13SKoGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJK13SKoGU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJK13SKoGU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJK13SKoGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJK13SKoGU .navbar-dropdown {
  position: fixed;
}
.cid-tJK13SKoGU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJK13SKoGU .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-tJK13SKoGU .navbar {
    height: 70px;
  }
  .cid-tJK13SKoGU .navbar.opened {
    height: auto;
  }
  .cid-tJK13SKoGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJK13VsyKW {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/r-2000x663.webp");
}
.cid-tJK13VsyKW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK13VsyKW .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-tJK13VsyKW .container {
    padding: 0;
  }
}
.cid-tJK13VsyKW .title-wrapper {
  padding: 0 16px;
}
.cid-tJK13VsyKW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tJK13VsyKW .title-wrapper .mbr-text {
  margin: 25px 0 0 0;
}
.cid-tJK13VsyKW .title-wrapper .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tJK13VsyKW .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tJK13VsyKW .mbr-section-title {
  color: #ffffff;
}
.cid-tJK13VsyKW .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-tJK13VsyKW .mbr-section-title,
.cid-tJK13VsyKW .mbr-section-btn {
  text-align: center;
  color: #2b2b2b;
}
.cid-tJKcFVBTDB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/01design-1752x734.webp");
}
.cid-tJKcFVBTDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKcFVBTDB .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-tJKcFVBTDB .container {
    padding: 0;
  }
}
.cid-tJKcFVBTDB .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tJKcFVBTDB .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #730000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tJKcFVBTDB .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tJKcFVBTDB .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tJKcFVBTDB .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tJKcFVBTDB .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tJKcFVBTDB .mbr-section-title {
  color: #ffffff;
}
.cid-tJKcFVBTDB .mbr-box {
  color: #ffffff;
}
.cid-tJKcFVBTDB .mbr-section-btn {
  text-align: center;
}
.cid-tJK5ICADed {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-tJK5ICADed iframe,
.cid-tJK5ICADed img,
.cid-tJK5ICADed video {
  width: 100%;
}
.cid-tJK5ICADed .mbr-section-head {
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .cid-tJK5ICADed .mbr-section-head {
    margin-bottom: 32px;
  }
}
.cid-tJK5ICADed .mbr-section-title {
  color: #161616;
}
.cid-tJK5ICADed .mbr-section-subtitle {
  color: #161616;
  margin-top: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tJK5ICADed .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tJK5ICADed .mbr-media {
  position: relative;
}
.cid-tJK5ICADed .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tJK5ICADed .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJK5ICADed .icon-wrap .mbr-iconfont {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 70px;
}
.cid-tJK5ICADed .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJK5ICADed .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tJK5ICADed .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tJK5ICADed .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJK5ICADed .modalWindow .modalWindow-video {
  height: 100%;
  width: 80vw;
  margin: 0 auto;
}
.cid-tJK5ICADed .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJK5ICADed .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJKbXNSMk2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/autopilot-1494x689.webp");
}
.cid-tJKbXNSMk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKbXNSMk2 .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-tJKbXNSMk2 .container {
    padding: 0;
  }
}
.cid-tJKbXNSMk2 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tJKbXNSMk2 .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #730000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tJKbXNSMk2 .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tJKbXNSMk2 .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tJKbXNSMk2 .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tJKbXNSMk2 .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tJKbXNSMk2 .mbr-section-title {
  color: #ffffff;
}
.cid-tJKbXNSMk2 .mbr-box {
  color: #ffffff;
}
.cid-tJKbXNSMk2 .mbr-section-btn {
  text-align: center;
}
.cid-tJK8etsIZn {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-tJK8etsIZn iframe,
.cid-tJK8etsIZn img,
.cid-tJK8etsIZn video {
  width: 100%;
}
.cid-tJK8etsIZn .mbr-section-head {
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .cid-tJK8etsIZn .mbr-section-head {
    margin-bottom: 32px;
  }
}
.cid-tJK8etsIZn .mbr-section-title {
  color: #161616;
}
.cid-tJK8etsIZn .mbr-section-subtitle {
  color: #161616;
  margin-top: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tJK8etsIZn .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tJK8etsIZn .mbr-media {
  position: relative;
}
.cid-tJK8etsIZn .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tJK8etsIZn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJK8etsIZn .icon-wrap .mbr-iconfont {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 70px;
}
.cid-tJK8etsIZn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJK8etsIZn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tJK8etsIZn .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tJK8etsIZn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJK8etsIZn .modalWindow .modalWindow-video {
  height: 100%;
  width: 80vw;
  margin: 0 auto;
}
.cid-tJK8etsIZn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJK8etsIZn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJKcEHgl4G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/newenergy1-1-1860x924.webp");
}
.cid-tJKcEHgl4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKcEHgl4G .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-tJKcEHgl4G .container {
    padding: 0;
  }
}
.cid-tJKcEHgl4G .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tJKcEHgl4G .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #730000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tJKcEHgl4G .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tJKcEHgl4G .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tJKcEHgl4G .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tJKcEHgl4G .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tJKcEHgl4G .mbr-section-title {
  color: #ffffff;
}
.cid-tJKcEHgl4G .mbr-box {
  color: #ffffff;
}
.cid-tJKcEHgl4G .mbr-section-btn {
  text-align: center;
}
.cid-tJK9uaB08l {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #e8e8e8;
}
.cid-tJK9uaB08l iframe,
.cid-tJK9uaB08l img,
.cid-tJK9uaB08l video {
  width: 100%;
}
.cid-tJK9uaB08l .mbr-section-head {
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .cid-tJK9uaB08l .mbr-section-head {
    margin-bottom: 32px;
  }
}
.cid-tJK9uaB08l .mbr-section-title {
  color: #161616;
}
.cid-tJK9uaB08l .mbr-section-subtitle {
  color: #161616;
  margin-top: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tJK9uaB08l .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tJK9uaB08l .mbr-media {
  position: relative;
}
.cid-tJK9uaB08l .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tJK9uaB08l .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJK9uaB08l .icon-wrap .mbr-iconfont {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 70px;
}
.cid-tJK9uaB08l .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJK9uaB08l .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tJK9uaB08l .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tJK9uaB08l .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJK9uaB08l .modalWindow .modalWindow-video {
  height: 100%;
  width: 80vw;
  margin: 0 auto;
}
.cid-tJK9uaB08l .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJK9uaB08l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tLhJ0vEhBr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tLhJ0vEhBr nav.navbar {
  position: fixed;
}
.cid-tLhJ0vEhBr .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-tLhJ0vEhBr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLhJ0vEhBr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLhJ0vEhBr .dropdown-item:hover,
.cid-tLhJ0vEhBr .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tLhJ0vEhBr .dropdown-item:hover span {
  color: white;
}
.cid-tLhJ0vEhBr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLhJ0vEhBr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLhJ0vEhBr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLhJ0vEhBr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLhJ0vEhBr .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tLhJ0vEhBr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLhJ0vEhBr .container {
    flex-wrap: nowrap;
  }
}
.cid-tLhJ0vEhBr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLhJ0vEhBr .dropdown-menu,
.cid-tLhJ0vEhBr .navbar.opened {
  background: #000000 !important;
}
.cid-tLhJ0vEhBr .nav-item:focus,
.cid-tLhJ0vEhBr .nav-link:focus {
  outline: none;
}
.cid-tLhJ0vEhBr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLhJ0vEhBr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLhJ0vEhBr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLhJ0vEhBr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhJ0vEhBr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLhJ0vEhBr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLhJ0vEhBr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tLhJ0vEhBr .navbar.opened {
  transition: all 0.3s;
}
.cid-tLhJ0vEhBr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLhJ0vEhBr .navbar .navbar-logo img {
  width: auto;
}
.cid-tLhJ0vEhBr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLhJ0vEhBr .navbar.collapsed {
  justify-content: center;
}
.cid-tLhJ0vEhBr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLhJ0vEhBr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLhJ0vEhBr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLhJ0vEhBr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLhJ0vEhBr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLhJ0vEhBr .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-tLhJ0vEhBr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLhJ0vEhBr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLhJ0vEhBr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLhJ0vEhBr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLhJ0vEhBr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLhJ0vEhBr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLhJ0vEhBr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLhJ0vEhBr .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-tLhJ0vEhBr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLhJ0vEhBr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLhJ0vEhBr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLhJ0vEhBr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLhJ0vEhBr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLhJ0vEhBr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLhJ0vEhBr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLhJ0vEhBr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLhJ0vEhBr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLhJ0vEhBr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLhJ0vEhBr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLhJ0vEhBr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLhJ0vEhBr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLhJ0vEhBr .dropdown-item.active,
.cid-tLhJ0vEhBr .dropdown-item:active {
  background-color: transparent;
}
.cid-tLhJ0vEhBr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLhJ0vEhBr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLhJ0vEhBr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLhJ0vEhBr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLhJ0vEhBr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLhJ0vEhBr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLhJ0vEhBr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLhJ0vEhBr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLhJ0vEhBr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLhJ0vEhBr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tLhJ0vEhBr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLhJ0vEhBr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhJ0vEhBr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhJ0vEhBr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLhJ0vEhBr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhJ0vEhBr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLhJ0vEhBr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLhJ0vEhBr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhJ0vEhBr .navbar-dropdown {
  position: fixed;
}
.cid-tLhJ0vEhBr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLhJ0vEhBr .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-tLhJ0vEhBr .navbar {
    height: 70px;
  }
  .cid-tLhJ0vEhBr .navbar.opened {
    height: auto;
  }
  .cid-tLhJ0vEhBr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLhJ0zxL7W {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-tLhJ0zxL7W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0zxL7W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0zxL7W .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tLhJ0zxL7W .container {
    padding: 0 50px !important;
  }
}
.cid-tLhJ0zxL7W .row {
  align-items: stretch;
}
.cid-tLhJ0zxL7W .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tLhJ0zxL7W .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tLhJ0zxL7W .card-title {
  color: #2b2b2b;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .card-title {
    text-align: center;
  }
}
.cid-tLhJ0zxL7W .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .mbr-text {
    text-align: center;
  }
}
.cid-tLhJ0zxL7W .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tLhJ0zxL7W .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tLhJ0zxL7W .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tLhJ0zxL7W .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tLhJ0zxL7W .image-wrapper {
    padding-right: 0;
  }
}
.cid-tLhJ0zxL7W .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #9fdbf8;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tLhJ0zxL7W .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tLhJ0zxL7W .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tLhJ0zxL7W .mbr-text,
.cid-tLhJ0zxL7W .mbr-section-btn {
  text-align: right;
}
.cid-tNxyloGmw1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-tNxyloGmw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxyloGmw1 .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-tNxyloGmw1 .container {
    padding: 0 30px;
  }
}
.cid-tNxyloGmw1 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tNxyloGmw1 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNxyloGmw1 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tNxyloGmw1 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNxyloGmw1 .image-wrapper img {
    height: 300px;
  }
}
.cid-tNxyloGmw1 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tNxyloGmw1 .title-wrapper {
    height: auto;
  }
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tNxyloGmw1 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tNxyloGmw1 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tNxyloGmw1 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tNxyloGmw1 .mbr-section-subtitle {
  color: #212529;
}
.cid-tNxyloGmw1 .mbr-section-title {
  color: #212529;
}
.cid-tNxyloGmw1 .mbr-text {
  color: #212529;
}
.cid-tLhJ0zSsUv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/root1628505001671876-1200x360.webp");
}
.cid-tLhJ0zSsUv .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-tLhJ0zSsUv .mbr-section-title,
.cid-tLhJ0zSsUv .mbr-section-subtitle {
  color: #232323;
}
.cid-tLhJ0zSsUv .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-tLhJ0zSsUv .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-tLhJ0zSsUv .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-tLhJ0zSsUv .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLhJ0zSsUv .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-tLhJ0zSsUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0zSsUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0zSsUv .mbr-section-title {
  color: #e8e8e8;
}
.cid-tLhJ0AfkQ5 {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/root1628505127746100-1200x360.webp");
}
.cid-tLhJ0AfkQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0AfkQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0AfkQ5 .container {
  max-width: 1140px;
}
.cid-tLhJ0AfkQ5 .row {
  justify-content: center;
}
.cid-tLhJ0AfkQ5 .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-tLhJ0AfkQ5 .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-tLhJ0AfkQ5 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-tLhJ0AfkQ5 .toggle-panel {
  width: 100%;
}
.cid-tLhJ0AfkQ5 .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-tLhJ0AfkQ5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLhJ0AfkQ5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tLhJ0AfkQ5 .panel-title {
    align-items: flex-start;
  }
}
.cid-tLhJ0AfkQ5 .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-tLhJ0AfkQ5 .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-tLhJ0AfkQ5 .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-tLhJ0AfkQ5 .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-tLhJ0AfkQ5 .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-tLhJ0AfkQ5 .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-tLhJ0AfkQ5 .panel-body {
    width: 100%;
  }
}
.cid-tLhJ0AfkQ5 .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-tLhJ0AfkQ5 .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tNxyK8LIe7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-tNxyK8LIe7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxyK8LIe7 .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-tNxyK8LIe7 .container {
    padding: 0 30px;
  }
}
.cid-tNxyK8LIe7 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tNxyK8LIe7 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNxyK8LIe7 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tNxyK8LIe7 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNxyK8LIe7 .image-wrapper img {
    height: 300px;
  }
}
.cid-tNxyK8LIe7 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tNxyK8LIe7 .title-wrapper {
    height: auto;
  }
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tNxyK8LIe7 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tNxyK8LIe7 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tNxyK8LIe7 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tNxyK8LIe7 .mbr-section-subtitle {
  color: #212529;
}
.cid-tNxyK8LIe7 .mbr-section-title {
  color: #212529;
}
.cid-tNxyK8LIe7 .mbr-text {
  color: #212529;
}
.cid-tLhJ0ALy4o {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/root1628505127746100-1200x360.webp");
}
.cid-tLhJ0ALy4o .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-tLhJ0ALy4o .mbr-section-title,
.cid-tLhJ0ALy4o .mbr-section-subtitle {
  color: #232323;
}
.cid-tLhJ0ALy4o .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-tLhJ0ALy4o .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-tLhJ0ALy4o .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-tLhJ0ALy4o .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLhJ0ALy4o .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-tLhJ0ALy4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0ALy4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0ALy4o .mbr-section-title {
  color: #e8e8e8;
}
.cid-tLhJ0B9C5O {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/energy-car3-1200x360.webp");
}
.cid-tLhJ0B9C5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0B9C5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0B9C5O .container {
  max-width: 1140px;
}
.cid-tLhJ0B9C5O .row {
  justify-content: center;
}
.cid-tLhJ0B9C5O .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-tLhJ0B9C5O .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-tLhJ0B9C5O .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-tLhJ0B9C5O .toggle-panel {
  width: 100%;
}
.cid-tLhJ0B9C5O .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-tLhJ0B9C5O .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLhJ0B9C5O .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tLhJ0B9C5O .panel-title {
    align-items: flex-start;
  }
}
.cid-tLhJ0B9C5O .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-tLhJ0B9C5O .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-tLhJ0B9C5O .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-tLhJ0B9C5O .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-tLhJ0B9C5O .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-tLhJ0B9C5O .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-tLhJ0B9C5O .panel-body {
    width: 100%;
  }
}
.cid-tLhJ0B9C5O .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-tLhJ0B9C5O .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tNxyLevfKu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-tNxyLevfKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxyLevfKu .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-tNxyLevfKu .container {
    padding: 0 30px;
  }
}
.cid-tNxyLevfKu .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tNxyLevfKu .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNxyLevfKu .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tNxyLevfKu .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNxyLevfKu .image-wrapper img {
    height: 300px;
  }
}
.cid-tNxyLevfKu .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tNxyLevfKu .title-wrapper {
    height: auto;
  }
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tNxyLevfKu .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tNxyLevfKu .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tNxyLevfKu .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tNxyLevfKu .mbr-section-subtitle {
  color: #212529;
}
.cid-tNxyLevfKu .mbr-section-title {
  color: #212529;
}
.cid-tNxyLevfKu .mbr-text {
  color: #212529;
}
.cid-tLhJ0BHBiq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/energy-car3-1200x360.webp");
}
.cid-tLhJ0BHBiq .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-tLhJ0BHBiq .mbr-section-title,
.cid-tLhJ0BHBiq .mbr-section-subtitle {
  color: #232323;
}
.cid-tLhJ0BHBiq .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-tLhJ0BHBiq .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-tLhJ0BHBiq .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-tLhJ0BHBiq .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLhJ0BHBiq .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-tLhJ0BHBiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0BHBiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0BHBiq .mbr-section-title {
  color: #e8e8e8;
}
.cid-tLhJ0C7AVA {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/r-2000x663.webp");
}
.cid-tLhJ0C7AVA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0C7AVA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhJ0C7AVA .container {
  max-width: 1140px;
}
.cid-tLhJ0C7AVA .row {
  justify-content: center;
}
.cid-tLhJ0C7AVA .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-tLhJ0C7AVA .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-tLhJ0C7AVA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-tLhJ0C7AVA .toggle-panel {
  width: 100%;
}
.cid-tLhJ0C7AVA .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-tLhJ0C7AVA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLhJ0C7AVA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tLhJ0C7AVA .panel-title {
    align-items: flex-start;
  }
}
.cid-tLhJ0C7AVA .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-tLhJ0C7AVA .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-tLhJ0C7AVA .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-tLhJ0C7AVA .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-tLhJ0C7AVA .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-tLhJ0C7AVA .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-tLhJ0C7AVA .panel-body {
    width: 100%;
  }
}
.cid-tLhJ0C7AVA .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-tLhJ0C7AVA .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tLhJ0CHj1A {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-tLhJ0CHj1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhJ0CHj1A .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-tLhJ0CHj1A .container {
    padding: 0 30px;
  }
}
.cid-tLhJ0CHj1A .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLhJ0CHj1A .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLhJ0CHj1A .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLhJ0CHj1A .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLhJ0CHj1A .image-wrapper img {
    height: 300px;
  }
}
.cid-tLhJ0CHj1A .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLhJ0CHj1A .title-wrapper {
    height: auto;
  }
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLhJ0CHj1A .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLhJ0CHj1A .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLhJ0CHj1A .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLhJ0CHj1A .mbr-section-subtitle {
  color: #212529;
}
.cid-tLhJ0CHj1A .mbr-section-title {
  color: #212529;
}
.cid-tLhJ0CHj1A .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tLk0b1QAAr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tLk0b1QAAr nav.navbar {
  position: fixed;
}
.cid-tLk0b1QAAr .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-tLk0b1QAAr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLk0b1QAAr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLk0b1QAAr .dropdown-item:hover,
.cid-tLk0b1QAAr .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tLk0b1QAAr .dropdown-item:hover span {
  color: white;
}
.cid-tLk0b1QAAr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLk0b1QAAr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLk0b1QAAr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLk0b1QAAr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLk0b1QAAr .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tLk0b1QAAr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLk0b1QAAr .container {
    flex-wrap: nowrap;
  }
}
.cid-tLk0b1QAAr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLk0b1QAAr .dropdown-menu,
.cid-tLk0b1QAAr .navbar.opened {
  background: #000000 !important;
}
.cid-tLk0b1QAAr .nav-item:focus,
.cid-tLk0b1QAAr .nav-link:focus {
  outline: none;
}
.cid-tLk0b1QAAr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLk0b1QAAr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLk0b1QAAr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLk0b1QAAr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLk0b1QAAr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLk0b1QAAr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLk0b1QAAr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tLk0b1QAAr .navbar.opened {
  transition: all 0.3s;
}
.cid-tLk0b1QAAr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLk0b1QAAr .navbar .navbar-logo img {
  width: auto;
}
.cid-tLk0b1QAAr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLk0b1QAAr .navbar.collapsed {
  justify-content: center;
}
.cid-tLk0b1QAAr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLk0b1QAAr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLk0b1QAAr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLk0b1QAAr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLk0b1QAAr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLk0b1QAAr .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-tLk0b1QAAr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLk0b1QAAr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLk0b1QAAr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLk0b1QAAr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLk0b1QAAr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLk0b1QAAr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLk0b1QAAr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLk0b1QAAr .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-tLk0b1QAAr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLk0b1QAAr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLk0b1QAAr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLk0b1QAAr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLk0b1QAAr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLk0b1QAAr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLk0b1QAAr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLk0b1QAAr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLk0b1QAAr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLk0b1QAAr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLk0b1QAAr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLk0b1QAAr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLk0b1QAAr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLk0b1QAAr .dropdown-item.active,
.cid-tLk0b1QAAr .dropdown-item:active {
  background-color: transparent;
}
.cid-tLk0b1QAAr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLk0b1QAAr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLk0b1QAAr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLk0b1QAAr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLk0b1QAAr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLk0b1QAAr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLk0b1QAAr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLk0b1QAAr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLk0b1QAAr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLk0b1QAAr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tLk0b1QAAr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLk0b1QAAr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLk0b1QAAr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLk0b1QAAr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLk0b1QAAr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLk0b1QAAr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLk0b1QAAr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLk0b1QAAr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLk0b1QAAr .navbar-dropdown {
  position: fixed;
}
.cid-tLk0b1QAAr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLk0b1QAAr .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-tLk0b1QAAr .navbar {
    height: 70px;
  }
  .cid-tLk0b1QAAr .navbar.opened {
    height: auto;
  }
  .cid-tLk0b1QAAr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLk0b2mZu5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.cid-tLk0b2mZu5 .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-tLk0b2mZu5 .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-tLk0b2mZu5 .card-btn svg {
  transition: all 0.4s;
}
.cid-tLk0b2mZu5 .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-tLk0b2mZu5 .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-tLk0b2mZu5 .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-tLk0b2mZu5 .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-tLk0b2mZu5 .column {
  display: flex;
  flex-direction: column;
}
.cid-tLk0b2mZu5 .mbr-card-title,
.cid-tLk0b2mZu5 .mbr-text {
  color: #fafafa;
}
.cid-tLk0b2mZu5 .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tLk0b2mZu5 .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-tLk0b2mZu5 .mbr-text DIV {
  text-align: center;
}
.cid-tLk0b2mZu5 .mbr-card-title {
  text-align: center;
}
.cid-tNxusRGSlg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tNxusRGSlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxusRGSlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxusRGSlg .col-title {
  margin-bottom: 32px;
}
.cid-tNxusRGSlg .mbr-section-title {
  color: #24262b;
}
.cid-tNxusRGSlg .mbr-section-subtitle {
  color: #24262b;
}
.cid-tNxusRGSlg .cars-row {
  row-gap: 32px;
}
.cid-tNxusRGSlg .card {
  border-radius: 0;
}
.cid-tNxusRGSlg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-tNxusRGSlg .text-wrap {
  flex-grow: 1;
}
.cid-tNxusRGSlg .card-title {
  color: #24262b;
}
.cid-tNxusRGSlg .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-tNxusRGSlg .mbr-section-btn {
  margin-top: 12px;
}
.cid-tLk0b4sV8R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #3b2336;
}
.cid-tLk0b4sV8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b4sV8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0b4sV8R .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tLk0b4sV8R .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tLk0b4sV8R .container {
    padding: 0 26px;
  }
}
.cid-tLk0b4sV8R .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-tLk0b4sV8R .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-tLk0b4sV8R .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-tLk0b4sV8R .mbr-section-title {
  color: #ffffff;
}
.cid-tLk0b4sV8R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLk0b4sV8R .mbr-text {
  color: #cacaca;
}
.cid-tLk0b54XQS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3c2d38;
}
.cid-tLk0b54XQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b54XQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0b54XQS h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-tLk0b54XQS h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-tLk0b54XQS .mbr-section-title {
  color: #ffffff;
}
.cid-tLk0b5AXeA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f1f4e9;
}
.cid-tLk0b5AXeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b5AXeA .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-tLk0b5AXeA .container {
    padding: 0 30px;
  }
}
.cid-tLk0b5AXeA .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0b5AXeA .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0b5AXeA .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0b5AXeA .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0b5AXeA .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0b5AXeA .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0b5AXeA .title-wrapper {
    height: auto;
  }
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0b5AXeA .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0b5AXeA .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0b5AXeA .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0b5AXeA .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0b5AXeA .mbr-section-title {
  color: #212529;
}
.cid-tLk0b5AXeA .mbr-text {
  color: #212529;
}
.cid-tLk2nxRMzP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b2b2b;
}
.cid-tLk2nxRMzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk2nxRMzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk2nxRMzP h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-tLk2nxRMzP h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-tLk2nxRMzP .mbr-section-title {
  color: #ffffff;
}
.cid-tLk0b6Jzld {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/tiggo-overview-1-1536x552.webp");
}
.cid-tLk0b6Jzld .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tLk0b6Jzld .row {
  flex-direction: row-reverse;
}
.cid-tLk0b6Jzld .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tLk0b6Jzld .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tLk0b6Jzld .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tLk0b6Jzld .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #730000;
}
.cid-tLk0b6Jzld .mbr-text,
.cid-tLk0b6Jzld .mbr-section-btn {
  text-align: left;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-tLk0b6Jzld .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tLk0b6Jzld .mbr-section-title DIV {
  text-align: center;
}
.cid-tLk0b7pRou {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0b7pRou .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b7pRou .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-tLk0b7pRou .container {
    padding: 0 30px;
  }
}
.cid-tLk0b7pRou .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0b7pRou .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0b7pRou .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0b7pRou .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0b7pRou .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0b7pRou .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0b7pRou .title-wrapper {
    height: auto;
  }
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0b7pRou .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0b7pRou .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0b7pRou .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0b7pRou .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0b7pRou .mbr-section-title {
  color: #212529;
}
.cid-tLk0b7pRou .mbr-text {
  color: #212529;
}
.cid-tLk0b82AjR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-tLk0b82AjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b82AjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0b82AjR .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tLk0b82AjR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tLk0b82AjR .container {
    padding: 0 26px;
  }
}
.cid-tLk0b82AjR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-tLk0b82AjR .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tLk0b82AjR .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tLk0b82AjR .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tLk0b82AjR .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tLk0b82AjR .embla__button--next,
.cid-tLk0b82AjR .embla__button--prev {
  display: flex;
}
.cid-tLk0b82AjR .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLk0b82AjR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tLk0b82AjR .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tLk0b82AjR .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0b82AjR .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tLk0b82AjR .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0b82AjR .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tLk0b82AjR .embla {
  position: relative;
  width: 100%;
}
.cid-tLk0b82AjR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tLk0b82AjR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tLk0b82AjR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tLk0b82AjR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tLk0b8Rcrw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-tLk0b8Rcrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b8Rcrw .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-tLk0b8Rcrw .container {
    padding: 0 30px;
  }
}
.cid-tLk0b8Rcrw .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0b8Rcrw .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0b8Rcrw .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0b8Rcrw .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0b8Rcrw .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0b8Rcrw .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0b8Rcrw .title-wrapper {
    height: auto;
  }
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0b8Rcrw .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0b8Rcrw .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0b8Rcrw .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0b8Rcrw .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0b8Rcrw .mbr-section-title {
  color: #212529;
}
.cid-tLk0b8Rcrw .mbr-text {
  color: #212529;
}
.cid-tLk0b9wDo0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0b9wDo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0b9wDo0 .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-tLk0b9wDo0 .container {
    padding: 0 30px;
  }
}
.cid-tLk0b9wDo0 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0b9wDo0 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0b9wDo0 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0b9wDo0 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0b9wDo0 .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0b9wDo0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0b9wDo0 .title-wrapper {
    height: auto;
  }
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0b9wDo0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0b9wDo0 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0b9wDo0 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0b9wDo0 .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0b9wDo0 .mbr-section-title {
  color: #212529;
}
.cid-tLk0b9wDo0 .mbr-text {
  color: #212529;
}
.cid-tLk0bae8My {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-tLk0bae8My .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tLk0bae8My .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tLk0bae8My .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tLk0bae8My .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #730000;
}
.cid-tLk0bae8My .mbr-text,
.cid-tLk0bae8My .mbr-section-btn {
  text-align: left;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-tLk0bae8My .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tLk0baLmHm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-tLk0baLmHm .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tLk0baLmHm .row {
  flex-direction: row-reverse;
}
.cid-tLk0baLmHm .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tLk0baLmHm .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tLk0baLmHm .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tLk0baLmHm .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #730000;
}
.cid-tLk0baLmHm .mbr-text,
.cid-tLk0baLmHm .mbr-section-btn {
  text-align: left;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-tLk0baLmHm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tLk0bbnr02 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0bbnr02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bbnr02 .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-tLk0bbnr02 .container {
    padding: 0 30px;
  }
}
.cid-tLk0bbnr02 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0bbnr02 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0bbnr02 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0bbnr02 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0bbnr02 .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0bbnr02 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0bbnr02 .title-wrapper {
    height: auto;
  }
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0bbnr02 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0bbnr02 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0bbnr02 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0bbnr02 .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0bbnr02 .mbr-section-title {
  color: #212529;
}
.cid-tLk0bbnr02 .mbr-text {
  color: #212529;
}
.cid-tLk0bc2jk2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-tLk0bc2jk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bc2jk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0bc2jk2 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tLk0bc2jk2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tLk0bc2jk2 .container {
    padding: 0 26px;
  }
}
.cid-tLk0bc2jk2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-tLk0bc2jk2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tLk0bc2jk2 .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tLk0bc2jk2 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tLk0bc2jk2 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tLk0bc2jk2 .embla__button--next,
.cid-tLk0bc2jk2 .embla__button--prev {
  display: flex;
}
.cid-tLk0bc2jk2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLk0bc2jk2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tLk0bc2jk2 .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tLk0bc2jk2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0bc2jk2 .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tLk0bc2jk2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0bc2jk2 .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tLk0bc2jk2 .embla {
  position: relative;
  width: 100%;
}
.cid-tLk0bc2jk2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tLk0bc2jk2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tLk0bc2jk2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tLk0bc2jk2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tLk0bcYpd6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0bcYpd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bcYpd6 .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-tLk0bcYpd6 .container {
    padding: 0 30px;
  }
}
.cid-tLk0bcYpd6 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0bcYpd6 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0bcYpd6 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0bcYpd6 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0bcYpd6 .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0bcYpd6 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0bcYpd6 .title-wrapper {
    height: auto;
  }
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0bcYpd6 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0bcYpd6 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0bcYpd6 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0bcYpd6 .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0bcYpd6 .mbr-section-title {
  color: #212529;
}
.cid-tLk0bcYpd6 .mbr-text {
  color: #212529;
}
.cid-tLk0bdGMrr {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-tLk0bdGMrr .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLk0bdGMrr .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLk0bdGMrr .mbr-section-title {
  color: #522348;
  text-align: center;
}
.cid-tLk0befBTu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #9b9ba5;
}
.cid-tLk0befBTu .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLk0befBTu .mbr-text {
  color: #e8e8e8;
  text-align: center;
}
.cid-tLk0befBTu .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-tLk0beVDLm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-tLk0beVDLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0beVDLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0beVDLm .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tLk0beVDLm .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tLk0beVDLm .container {
    padding: 0 26px;
  }
}
.cid-tLk0beVDLm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 690px;
  max-width: 690px;
}
@media (max-width: 768px) {
  .cid-tLk0beVDLm .embla__slide {
    min-width: 85%;
    max-width: 85%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tLk0beVDLm .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tLk0beVDLm .embla__slide a:hover .card-wrap .item-wrapper .image-wrap::before {
  opacity: .65;
}
.cid-tLk0beVDLm .embla__slide a:hover .card-wrap .item-wrapper .image-wrap .content-wrap {
  opacity: 1;
  transform: translateX(0);
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
    opacity: .65;
  }
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-title {
  margin-bottom: 0;
}
.cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-desc {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tLk0beVDLm .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-tLk0beVDLm .embla__button--next,
.cid-tLk0beVDLm .embla__button--prev {
  display: flex;
}
.cid-tLk0beVDLm .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLk0beVDLm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tLk0beVDLm .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tLk0beVDLm .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0beVDLm .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tLk0beVDLm .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0beVDLm .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tLk0beVDLm .embla {
  position: relative;
  width: 100%;
}
.cid-tLk0beVDLm .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tLk0beVDLm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tLk0beVDLm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tLk0beVDLm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tLk0beVDLm .card-title {
  color: #ffffff;
}
.cid-tLk0beVDLm .card-desc {
  color: #cacaca;
}
.cid-tLkElhfj40 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLkElhfj40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLkElhfj40 .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-tLkElhfj40 .container {
    padding: 0 30px;
  }
}
.cid-tLkElhfj40 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLkElhfj40 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLkElhfj40 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLkElhfj40 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLkElhfj40 .image-wrapper img {
    height: 300px;
  }
}
.cid-tLkElhfj40 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLkElhfj40 .title-wrapper {
    height: auto;
  }
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLkElhfj40 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLkElhfj40 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLkElhfj40 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLkElhfj40 .mbr-section-subtitle {
  color: #212529;
}
.cid-tLkElhfj40 .mbr-section-title {
  color: #212529;
}
.cid-tLkElhfj40 .mbr-text {
  color: #212529;
}
.cid-tLk0bhcc4N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-tLk0bhcc4N .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tLk0bhcc4N .row {
  flex-direction: row-reverse;
}
.cid-tLk0bhcc4N .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tLk0bhcc4N .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tLk0bhcc4N .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tLk0bhcc4N .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #522348;
}
.cid-tLk0bhcc4N .mbr-text,
.cid-tLk0bhcc4N .mbr-section-btn {
  text-align: left;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-tLk0bhcc4N .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tLk0bhYItt {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/tiggo-spec-bg-1920x899.webp");
}
.cid-tLk0bhYItt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bhYItt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0bhYItt .mbr-section-title,
.cid-tLk0bhYItt .mbr-text,
.cid-tLk0bhYItt .card-title,
.cid-tLk0bhYItt .num {
  color: #fafafa;
}
.cid-tLk0bhYItt .title .num {
  width: 100%;
  display: block;
}
.cid-tLk0bhYItt .title .card-title {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tLk0bhYItt .content-column {
    margin-bottom: 2rem;
  }
  .cid-tLk0bhYItt .p-center {
    padding: 30px 0;
  }
}
.cid-tLk0bhYItt .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tLk0bhYItt .rotate {
    top: 30px;
  }
}
.cid-tLk0bhYItt .hide {
  display: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .cid-tLk0bhYItt .tablet-padding {
    padding: 50px 0 0 0;
  }
}
.cid-tLk0biLB88 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0biLB88 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0biLB88 .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-tLk0biLB88 .container {
    padding: 0 30px;
  }
}
.cid-tLk0biLB88 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0biLB88 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0biLB88 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0biLB88 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0biLB88 .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0biLB88 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0biLB88 .title-wrapper {
    height: auto;
  }
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0biLB88 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0biLB88 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0biLB88 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0biLB88 .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0biLB88 .mbr-section-title {
  color: #212529;
}
.cid-tLk0biLB88 .mbr-text {
  color: #212529;
}
.cid-tLk0bjzU3F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-tLk0bjzU3F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bjzU3F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0bjzU3F .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tLk0bjzU3F .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tLk0bjzU3F .container {
    padding: 0 26px;
  }
}
.cid-tLk0bjzU3F .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 690px;
  max-width: 690px;
}
@media (max-width: 768px) {
  .cid-tLk0bjzU3F .embla__slide {
    min-width: 85%;
    max-width: 85%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tLk0bjzU3F .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tLk0bjzU3F .embla__slide a:hover .card-wrap .item-wrapper .image-wrap::before {
  opacity: .65;
}
.cid-tLk0bjzU3F .embla__slide a:hover .card-wrap .item-wrapper .image-wrap .content-wrap {
  opacity: 1;
  transform: translateX(0);
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
    opacity: .65;
  }
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-title {
  margin-bottom: 0;
}
.cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-desc {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tLk0bjzU3F .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-tLk0bjzU3F .embla__button--next,
.cid-tLk0bjzU3F .embla__button--prev {
  display: flex;
}
.cid-tLk0bjzU3F .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLk0bjzU3F .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tLk0bjzU3F .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tLk0bjzU3F .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0bjzU3F .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tLk0bjzU3F .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tLk0bjzU3F .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tLk0bjzU3F .embla {
  position: relative;
  width: 100%;
}
.cid-tLk0bjzU3F .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tLk0bjzU3F .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tLk0bjzU3F .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tLk0bjzU3F .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tLk0bjzU3F .card-title {
  color: #ffffff;
}
.cid-tLk0bjzU3F .card-desc {
  color: #cacaca;
}
.cid-tLk0bkBxpG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3b2336;
}
.cid-tLk0bkBxpG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bkBxpG .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-tLk0bkBxpG .container {
    padding: 0 30px;
  }
}
.cid-tLk0bkBxpG .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tLk0bkBxpG .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tLk0bkBxpG .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tLk0bkBxpG .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLk0bkBxpG .image-wrapper img {
    height: 300px;
  }
}
.cid-tLk0bkBxpG .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tLk0bkBxpG .title-wrapper {
    height: auto;
  }
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tLk0bkBxpG .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tLk0bkBxpG .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tLk0bkBxpG .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tLk0bkBxpG .mbr-section-subtitle {
  color: #212529;
}
.cid-tLk0bkBxpG .mbr-section-title {
  color: #212529;
}
.cid-tLk0bkBxpG .mbr-text {
  color: #212529;
}
.cid-tLk0bnnrDH {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/newtiggo8pro-design-p2-1920x960.webp");
}
.cid-tLk0bnnrDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bnnrDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0bnnrDH .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tLk0bnnrDH .container-fluid {
    padding: 0 16px;
  }
}
.cid-tLk0bnnrDH .container-fluid .row {
  padding: 0;
}
.cid-tLk0bnnrDH .container {
  overflow: hidden;
}
.cid-tLk0bnnrDH .title-wrapper {
  margin-bottom: 102px;
}
@media (max-width: 992px) {
  .cid-tLk0bnnrDH .title-wrapper {
    margin-bottom: 80px;
  }
}
.cid-tLk0bnnrDH .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tLk0bnnrDH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .cid-tLk0bnnrDH .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tLk0bnnrDH .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tLk0bnnrDH .cards-wrapper {
  display: inline-grid;
  grid-template-columns: repeat(3, 190px);
  grid-column-gap: 24px;
  grid-row-gap: 64px;
}
@media (max-width: 768px) {
  .cid-tLk0bnnrDH .cards-wrapper {
    grid-template-columns: repeat(1, 100%);
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }
}
.cid-tLk0bnnrDH .cards-wrapper .card .mbr-number {
  margin-bottom: 4px;
}
.cid-tLk0bnnrDH .cards-wrapper .card .mbr-title {
  margin-bottom: 4px;
}
.cid-tLk0bnnrDH .cards-wrapper .card .mbr-desc {
  margin-bottom: 0;
}
.cid-tLk0bnnrDH .mbr-section-title {
  color: #495DFF;
}
.cid-tLk0bnnrDH .mbr-text {
  color: #e8e8e8;
}
.cid-tLk0bnnrDH .mbr-number {
  color: #e8e8e8;
}
.cid-tLk0bnnrDH .mbr-title {
  color: #e8e8e8;
}
.cid-tLk0bnnrDH .mbr-desc {
  color: #e8e8e8;
}
.cid-tLk0bnnrDH .mbr-section-title,
.cid-tLk0bnnrDH .cards {
  color: #e8e8e8;
}
.cid-tLkK92TdrK {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-tLkK92TdrK .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLkK92TdrK .mbr-text {
  color: #522348;
  text-align: left;
}
.cid-tLkK92TdrK .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-tLk0bocIAy {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tLk0bocIAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLk0bocIAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLk0bocIAy .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-tLk0bocIAy .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tLk0bocIAy .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tLk0bocIAy .mbr-section-title {
  color: #522348;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tLk0bocIAy .mbr-section-title {
    width: 100%;
  }
}
.cid-tLk0bocIAy .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tLk0bocIAy .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tLk0bocIAy .lists-col {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-tLk0bocIAy .lists-col {
    width: 100%;
  }
}
.cid-tLk0bocIAy .item-text-1 {
  color: #161616;
  position: relative;
  z-index: 1;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-tLk0bocIAy .item-text-2 {
  color: #522348;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-tLk0bocIAy .item-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tLk0bocIAy .item-wrap {
    padding-right: 0.5rem;
  }
}
.cid-tLk0bocIAy .item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #f0f0f0;
  transition: .5s all;
}
.cid-tLk0bocIAy .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  transition: .5s all;
  position: relative;
}
.cid-tLk0bocIAy .item-container {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: .5s all;
}
.cid-tLk0bocIAy .item-container:hover .item-content {
  padding: 3rem 1.5rem 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tLk0bocIAy .item-container:hover .item-content {
    padding: 3rem 0.7rem 3rem 1.4rem;
  }
}
.cid-tLk0bocIAy .item-container:hover .item-text-1 {
  transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tLk0bocIAy .item-container:hover .item-text-2 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tLk0bocIAy .item-container:hover .item-overlay {
  height: 100%;
}
.cid-tLk0bocIAy .item-info-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.cid-tLk0bocIAy .mbr-text {
  color: #000000;
}
.cid-tLk0bocIAy .number-text {
  color: #c4c4c8;
  margin-left: auto;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-tLk0bocIAy .number-text {
    padding-left: 0.5rem;
  }
}
.cid-ues0XrUv0F {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-ues0XrUv0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-ues0XrUv0F .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-ues0XrUv0F .container {
    padding: 0 30px;
  }
}
.cid-ues0XrUv0F .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-ues0XrUv0F .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ues0XrUv0F .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-ues0XrUv0F .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ues0XrUv0F .image-wrapper img {
    height: 300px;
  }
}
.cid-ues0XrUv0F .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ues0XrUv0F .title-wrapper {
    height: auto;
  }
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ues0XrUv0F .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-ues0XrUv0F .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-ues0XrUv0F .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-ues0XrUv0F .mbr-section-subtitle {
  color: #212529;
}
.cid-ues0XrUv0F .mbr-section-title {
  color: #212529;
}
.cid-ues0XrUv0F .mbr-text {
  color: #212529;
}
.cid-ues0VI79Jo {
  padding-top: 180px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-ues0VI79Jo h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-ues0VI79Jo span {
  background-image: url("../../../assets/images/copy-of-omoda-left-3-quarter-rear.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-ues0VI79Jo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ustIfdh9zE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2b2b2b;
}
.cid-ustIfdh9zE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustIfdh9zE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustIfdh9zE .mbr-description {
  color: #fafafa;
}
@media (max-width: 991px) {
  .cid-ustIfdh9zE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ustIfdh9zE .row {
  flex-direction: row-reverse;
}
.cid-ustIfdh9zE img {
  width: 100%;
}
.cid-ues0YHf3cL {
  background-color: #ffffff;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-ues0YHf3cL .carousel {
  height: 800px;
}
.cid-ues0YHf3cL .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ues0YHf3cL .carousel-item,
.cid-ues0YHf3cL .carousel-inner {
  height: 100%;
}
.cid-ues0YHf3cL img,
.cid-ues0YHf3cL .item-wrapper {
  border-radius: 0 !important;
}
.cid-ues0YHf3cL .carousel-caption {
  bottom: 40px;
}
.cid-ues0YHf3cL .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ues0YHf3cL .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ues0YHf3cL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-ues0YHf3cL .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ues0YHf3cL .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ues0YHf3cL .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ues0YHf3cL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ues0YHf3cL .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ues0YHf3cL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ues0YHf3cL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ues0YHf3cL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ues0YHf3cL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ues0YHf3cL .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ues0YHf3cL .carousel-indicators li.active,
.cid-ues0YHf3cL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ues0YHf3cL .carousel-indicators li::after,
.cid-ues0YHf3cL .carousel-indicators li::before {
  content: none;
}
.cid-ues0YHf3cL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ues0YHf3cL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ues0YHf3cL .mbr-section-subtitle,
  .cid-ues0YHf3cL .mbr-section-text,
  .cid-ues0YHf3cL .mbr-section-btn {
    text-align: center;
  }
}
.cid-ues0YHf3cL .carousel-control-prev,
.cid-ues0YHf3cL .carousel-control-next {
  display: none;
}
.cid-ues0ZoSMLj {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-ues0ZoSMLj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ues0ZoSMLj form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ues0ZoSMLj form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-ues0ZoSMLj form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ues0ZoSMLj .content-head {
  max-width: 800px;
}
.cid-ues0ZoSMLj LABEL {
  color: #161616;
}
.cid-ues0ZoSMLj .mbr-section-title {
  color: #161616;
}
.cid-ues10sda9Q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-ues10sda9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ues10sda9Q .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-ues10sda9Q .container {
    padding: 0 30px;
  }
}
.cid-ues10sda9Q .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-ues10sda9Q .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ues10sda9Q .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-ues10sda9Q .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ues10sda9Q .image-wrapper img {
    height: 300px;
  }
}
.cid-ues10sda9Q .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ues10sda9Q .title-wrapper {
    height: auto;
  }
}
.cid-ues10sda9Q .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-ues10sda9Q .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-ues10sda9Q .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-ues10sda9Q .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-ues10sda9Q .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ues10sda9Q .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ues10sda9Q .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-ues10sda9Q .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-ues10sda9Q .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-ues10sda9Q .mbr-section-subtitle {
  color: #212529;
}
.cid-ues10sda9Q .mbr-section-title {
  color: #212529;
}
.cid-ues10sda9Q .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tLmVSFPmEa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tLmVSFPmEa nav.navbar {
  position: fixed;
}
.cid-tLmVSFPmEa .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-tLmVSFPmEa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLmVSFPmEa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLmVSFPmEa .dropdown-item:hover,
.cid-tLmVSFPmEa .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tLmVSFPmEa .dropdown-item:hover span {
  color: white;
}
.cid-tLmVSFPmEa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLmVSFPmEa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLmVSFPmEa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLmVSFPmEa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLmVSFPmEa .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tLmVSFPmEa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLmVSFPmEa .container {
    flex-wrap: nowrap;
  }
}
.cid-tLmVSFPmEa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLmVSFPmEa .dropdown-menu,
.cid-tLmVSFPmEa .navbar.opened {
  background: #000000 !important;
}
.cid-tLmVSFPmEa .nav-item:focus,
.cid-tLmVSFPmEa .nav-link:focus {
  outline: none;
}
.cid-tLmVSFPmEa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLmVSFPmEa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLmVSFPmEa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLmVSFPmEa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLmVSFPmEa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLmVSFPmEa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLmVSFPmEa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tLmVSFPmEa .navbar.opened {
  transition: all 0.3s;
}
.cid-tLmVSFPmEa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLmVSFPmEa .navbar .navbar-logo img {
  width: auto;
}
.cid-tLmVSFPmEa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLmVSFPmEa .navbar.collapsed {
  justify-content: center;
}
.cid-tLmVSFPmEa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLmVSFPmEa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLmVSFPmEa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLmVSFPmEa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLmVSFPmEa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLmVSFPmEa .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-tLmVSFPmEa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLmVSFPmEa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLmVSFPmEa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLmVSFPmEa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLmVSFPmEa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLmVSFPmEa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLmVSFPmEa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLmVSFPmEa .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-tLmVSFPmEa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLmVSFPmEa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLmVSFPmEa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLmVSFPmEa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLmVSFPmEa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLmVSFPmEa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLmVSFPmEa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLmVSFPmEa .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLmVSFPmEa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLmVSFPmEa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLmVSFPmEa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLmVSFPmEa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLmVSFPmEa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLmVSFPmEa .dropdown-item.active,
.cid-tLmVSFPmEa .dropdown-item:active {
  background-color: transparent;
}
.cid-tLmVSFPmEa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLmVSFPmEa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLmVSFPmEa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLmVSFPmEa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLmVSFPmEa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLmVSFPmEa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLmVSFPmEa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLmVSFPmEa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLmVSFPmEa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLmVSFPmEa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tLmVSFPmEa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLmVSFPmEa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLmVSFPmEa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLmVSFPmEa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLmVSFPmEa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLmVSFPmEa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLmVSFPmEa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLmVSFPmEa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLmVSFPmEa .navbar-dropdown {
  position: fixed;
}
.cid-tLmVSFPmEa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLmVSFPmEa .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-tLmVSFPmEa .navbar {
    height: 70px;
  }
  .cid-tLmVSFPmEa .navbar.opened {
    height: auto;
  }
  .cid-tLmVSFPmEa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLLbKaFW1q {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-tLLbKaFW1q iframe,
.cid-tLLbKaFW1q img,
.cid-tLLbKaFW1q video {
  width: 100%;
}
.cid-tLLbKaFW1q .mbr-section-head {
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .cid-tLLbKaFW1q .mbr-section-head {
    margin-bottom: 32px;
  }
}
.cid-tLLbKaFW1q .mbr-section-title {
  color: #161616;
}
.cid-tLLbKaFW1q .mbr-section-subtitle {
  color: #161616;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tLLbKaFW1q .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tLLbKaFW1q .mbr-media {
  position: relative;
}
.cid-tLLbKaFW1q .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tLLbKaFW1q .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tLLbKaFW1q .icon-wrap .mbr-iconfont {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 70px;
}
.cid-tLLbKaFW1q .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tLLbKaFW1q .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tLLbKaFW1q .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tLLbKaFW1q .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tLLbKaFW1q .modalWindow .modalWindow-video {
  height: 100%;
  width: 80vw;
  margin: 0 auto;
}
.cid-tLLbKaFW1q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tLLbKaFW1q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tLnjpT8yLT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLnjpT8yLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLnjpT8yLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLnjpT8yLT .mbr-section-head {
  margin-bottom: 75px;
}
@media (max-width: 1399px) {
  .cid-tLnjpT8yLT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tLnjpT8yLT .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tLnjpT8yLT .mbr-section-title {
  color: #2b2b2b;
}
.cid-tLnjpT8yLT .mbr-section-subtitle {
  margin-top: 18px;
  color: #2b2b2b;
}
.cid-tLnjpT8yLT .cards-row {
  row-gap: 40px;
}
@media (max-width: 767px) {
  .cid-tLnjpT8yLT .cards-row {
    row-gap: 30px;
  }
}
.cid-tLnjpT8yLT .card {
  border-radius: 0;
}
.cid-tLnjpT8yLT .card-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-tLnjpT8yLT .card-wrapper {
    justify-content: center;
  }
}
.cid-tLnjpT8yLT .card-title {
  color: #c40707;
}
.cid-tLnjpT8yLT .card-text {
  margin-left: 15px;
  color: #131313;
  text-align: left;
}
.cid-tLnjpT8yLT .border-item {
  width: 100%;
  height: 2px;
  margin-top: 58px;
  background-color: #131313;
}
@media (max-width: 1399px) {
  .cid-tLnjpT8yLT .border-item {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .cid-tLnjpT8yLT .border-item {
    margin-top: 40px;
  }
}
.cid-tLnk4T2nmk {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLnk4T2nmk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLnk4T2nmk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLnk4T2nmk .mbr-section-head {
  margin-bottom: 75px;
}
@media (max-width: 1399px) {
  .cid-tLnk4T2nmk .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tLnk4T2nmk .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tLnk4T2nmk .mbr-section-title {
  color: #131313;
}
.cid-tLnk4T2nmk .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tLnk4T2nmk .cards-row {
  row-gap: 40px;
}
@media (max-width: 767px) {
  .cid-tLnk4T2nmk .cards-row {
    row-gap: 30px;
  }
}
.cid-tLnk4T2nmk .card {
  border-radius: 0;
}
.cid-tLnk4T2nmk .card-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-tLnk4T2nmk .card-wrapper {
    justify-content: center;
  }
}
.cid-tLnk4T2nmk .card-title {
  color: #c40707;
}
.cid-tLnk4T2nmk .card-text {
  margin-left: 15px;
  color: #131313;
  text-align: left;
}
.cid-tLnk4T2nmk .border-item {
  width: 100%;
  height: 2px;
  margin-top: 58px;
  background-color: #131313;
}
@media (max-width: 1399px) {
  .cid-tLnk4T2nmk .border-item {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .cid-tLnk4T2nmk .border-item {
    margin-top: 40px;
  }
}
.cid-tLKk8LTO80 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #e8e8e8;
}
.cid-tLKk8LTO80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLKk8LTO80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLKk8LTO80 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tLKk8LTO80 .mbr-section-title {
  color: #24262b;
}
.cid-tLKk8LTO80 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-tLKk8LTO80 .items-row {
  row-gap: 0;
  margin: 0 !important;
}
.cid-tLKk8LTO80 .item {
  padding: 0 !important;
}
.cid-tLKk8LTO80 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tLKk8LTO80 .item-wrapper img {
  width: 100%;
  height: calc(50px * 14);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tLKk8LTO80 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tLKk8LTO80 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tLKk8LTO80 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tLKk8LTO80 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tLKk8LTO80 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tLKk8LTO80 .carousel-control,
.cid-tLKk8LTO80 .close {
  background: #1b1b1b;
}
.cid-tLKk8LTO80 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tLKk8LTO80 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tLKk8LTO80 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tLKk8LTO80 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tLKk8LTO80 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tLKk8LTO80 .close::before {
  content: '\e91a';
}
.cid-tLKk8LTO80 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tLKk8LTO80 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tLKk8LTO80 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLKk8LTO80 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tLKk8LTO80 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLKk8LTO80 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tLKk8LTO80 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLKk8LTO80 .carousel-indicators li.active,
.cid-tLKk8LTO80 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLKk8LTO80 .carousel-indicators li::after,
.cid-tLKk8LTO80 .carousel-indicators li::before {
  content: none;
}
.cid-tLKk8LTO80 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLKk8LTO80 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tLKk8LTO80 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tLKk8LTO80 .carousel-indicators {
    display: none;
  }
}
.cid-tLKk8LTO80 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tLKk8LTO80 .carousel-inner > .active {
  display: block;
}
.cid-tLKk8LTO80 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLKk8LTO80 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLKk8LTO80 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tLKk8LTO80 .carousel-control,
  .cid-tLKk8LTO80 .carousel-indicators,
  .cid-tLKk8LTO80 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tLKk8LTO80 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tLKk8LTO80 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLKk8LTO80 .carousel-indicators .active,
.cid-tLKk8LTO80 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tLKk8LTO80 .carousel-indicators .active {
  background: #fff;
}
.cid-tLKk8LTO80 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tLKk8LTO80 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tLKk8LTO80 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tLKk8LTO80 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tLKk8LTO80 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tLKk8LTO80 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tLKk8LTO80 .carousel {
  width: 100%;
}
.cid-tLKk8LTO80 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tLKk8LTO80 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tLKk8LTO80 .modal.fade .modal-dialog,
.cid-tLKk8LTO80 .modal.in .modal-dialog {
  transform: none;
}
.cid-tLKk8LTO80 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tLKk8LTO80 H6 {
  text-align: center;
}
.cid-tLL9NwruKl {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tLL9NwruKl .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-tLL9NwruKl .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tLL9NwruKl .mbr-section-title {
  color: #131313;
}
.cid-tLL9NwruKl .mbr-section-title a {
  pointer-events: none;
}
.cid-tLL9NwruKl .mbr-section-subtitle {
  margin-top: 12px;
  color: #131313;
}
.cid-tLL9NwruKl .card-row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tLL9NwruKl .card-row {
    justify-content: center;
    row-gap: 16px;
    flex-wrap: wrap;
  }
}
.cid-tLL9NwruKl .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0 !important;
  opacity: 0.5;
  margin-bottom: 1rem;
  max-width: 20%;
  width: fit-content;
}
@media (max-width: 991px) {
  .cid-tLL9NwruKl .card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    max-width: 33.33333333%;
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-tLL9NwruKl .card {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-tLL9NwruKl .card {
    max-width: 100%;
  }
}
.cid-tLL9NwruKl .card:hover {
  opacity: 1;
}
.cid-tLL9NwruKl .card img {
  max-width: 100%;
}
.cid-tLLb6kepdv {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #e8e8e8;
}
.cid-tLLb6kepdv .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLLb6kepdv .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLLb6kepdv .mbr-section-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLLbubagY8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/foresight-tech-banner-1920x920.webp");
}
.cid-tLLbubagY8 .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-tLLbubagY8 .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-tLLbubagY8 .card-btn svg {
  transition: all 0.4s;
}
.cid-tLLbubagY8 .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-tLLbubagY8 .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-tLLbubagY8 .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-tLLbubagY8 .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-tLLbubagY8 .column {
  display: flex;
  flex-direction: column;
}
.cid-tLLbubagY8 .mbr-card-title,
.cid-tLLbubagY8 .mbr-text {
  color: #fafafa;
}
.cid-tLLbubagY8 .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tLLbubagY8 .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tLRaiYYfNu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tLRaiYYfNu nav.navbar {
  position: fixed;
}
.cid-tLRaiYYfNu .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-tLRaiYYfNu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLRaiYYfNu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLRaiYYfNu .dropdown-item:hover,
.cid-tLRaiYYfNu .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tLRaiYYfNu .dropdown-item:hover span {
  color: white;
}
.cid-tLRaiYYfNu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLRaiYYfNu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLRaiYYfNu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLRaiYYfNu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLRaiYYfNu .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tLRaiYYfNu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLRaiYYfNu .container {
    flex-wrap: nowrap;
  }
}
.cid-tLRaiYYfNu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLRaiYYfNu .dropdown-menu,
.cid-tLRaiYYfNu .navbar.opened {
  background: #000000 !important;
}
.cid-tLRaiYYfNu .nav-item:focus,
.cid-tLRaiYYfNu .nav-link:focus {
  outline: none;
}
.cid-tLRaiYYfNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLRaiYYfNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLRaiYYfNu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLRaiYYfNu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLRaiYYfNu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLRaiYYfNu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLRaiYYfNu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tLRaiYYfNu .navbar.opened {
  transition: all 0.3s;
}
.cid-tLRaiYYfNu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLRaiYYfNu .navbar .navbar-logo img {
  width: auto;
}
.cid-tLRaiYYfNu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLRaiYYfNu .navbar.collapsed {
  justify-content: center;
}
.cid-tLRaiYYfNu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLRaiYYfNu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLRaiYYfNu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLRaiYYfNu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLRaiYYfNu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLRaiYYfNu .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-tLRaiYYfNu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLRaiYYfNu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLRaiYYfNu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLRaiYYfNu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLRaiYYfNu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLRaiYYfNu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLRaiYYfNu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLRaiYYfNu .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-tLRaiYYfNu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLRaiYYfNu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLRaiYYfNu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLRaiYYfNu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLRaiYYfNu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLRaiYYfNu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLRaiYYfNu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLRaiYYfNu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLRaiYYfNu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLRaiYYfNu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLRaiYYfNu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLRaiYYfNu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLRaiYYfNu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLRaiYYfNu .dropdown-item.active,
.cid-tLRaiYYfNu .dropdown-item:active {
  background-color: transparent;
}
.cid-tLRaiYYfNu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLRaiYYfNu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLRaiYYfNu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLRaiYYfNu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLRaiYYfNu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLRaiYYfNu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLRaiYYfNu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLRaiYYfNu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLRaiYYfNu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLRaiYYfNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tLRaiYYfNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLRaiYYfNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLRaiYYfNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLRaiYYfNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLRaiYYfNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLRaiYYfNu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLRaiYYfNu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLRaiYYfNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLRaiYYfNu .navbar-dropdown {
  position: fixed;
}
.cid-tLRaiYYfNu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLRaiYYfNu .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-tLRaiYYfNu .navbar {
    height: 70px;
  }
  .cid-tLRaiYYfNu .navbar.opened {
    height: auto;
  }
  .cid-tLRaiYYfNu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLRasqhpl4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/warranty-banner-1920x1075.webp");
}
.cid-tLRasqhpl4 .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-tLRasqhpl4 .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-tLRasqhpl4 .card-btn svg {
  transition: all 0.4s;
}
.cid-tLRasqhpl4 .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-tLRasqhpl4 .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-tLRasqhpl4 .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-tLRasqhpl4 .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-tLRasqhpl4 .column {
  display: flex;
  flex-direction: column;
}
.cid-tLRasqhpl4 .mbr-card-title,
.cid-tLRasqhpl4 .mbr-text {
  color: #fafafa;
}
.cid-tLRasqhpl4 .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tLRasqhpl4 .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-tLRaj3xJW3 {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #7b7b8b;
}
.cid-tLRaj3xJW3 .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tLRaj3xJW3 .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-tLRaj3xJW3 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tP9jXxJapj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #730000;
}
.cid-tP9jXxJapj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9jXxJapj .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-tP9jXxJapj .container {
    padding: 0 30px;
  }
}
.cid-tP9jXxJapj .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tP9jXxJapj .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tP9jXxJapj .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tP9jXxJapj .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tP9jXxJapj .image-wrapper img {
    height: 300px;
  }
}
.cid-tP9jXxJapj .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tP9jXxJapj .title-wrapper {
    height: auto;
  }
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tP9jXxJapj .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tP9jXxJapj .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tP9jXxJapj .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tP9jXxJapj .mbr-section-subtitle {
  color: #212529;
}
.cid-tP9jXxJapj .mbr-section-title {
  color: #212529;
}
.cid-tP9jXxJapj .mbr-text {
  color: #212529;
}
.cid-tLSfnXzSUe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tLSfnXzSUe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLSfnXzSUe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLSfnXzSUe .container {
  max-width: 1140px;
}
.cid-tLSfnXzSUe .row {
  justify-content: center;
}
.cid-tLSfnXzSUe .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-tLSfnXzSUe .mbr-section-title {
  color: #980000;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-tLSfnXzSUe .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-tLSfnXzSUe .toggle-panel {
  width: 100%;
}
.cid-tLSfnXzSUe .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #2b2b2b;
}
.cid-tLSfnXzSUe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tLSfnXzSUe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tLSfnXzSUe .panel-title {
    align-items: flex-start;
  }
}
.cid-tLSfnXzSUe .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #e8e8e8;
  background-color: #9b9ba5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-tLSfnXzSUe .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-tLSfnXzSUe .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-tLSfnXzSUe .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-tLSfnXzSUe .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-tLSfnXzSUe .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-tLSfnXzSUe .panel-body {
    width: 100%;
  }
}
.cid-tLSfnXzSUe .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-tLSfnXzSUe .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tLSfnXzSUe .panel-title-edit DIV {
  text-align: center;
}
.cid-uetemw3diw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uetemw3diw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uetemw3diw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uetemw3diw .container {
  max-width: 1140px;
}
.cid-uetemw3diw .row {
  justify-content: center;
}
.cid-uetemw3diw .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uetemw3diw .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uetemw3diw .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uetemw3diw .toggle-panel {
  width: 100%;
}
.cid-uetemw3diw .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #2b2b2b;
}
.cid-uetemw3diw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uetemw3diw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uetemw3diw .panel-title {
    align-items: flex-start;
  }
}
.cid-uetemw3diw .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #e8e8e8;
  background-color: #9b9ba5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uetemw3diw .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uetemw3diw .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uetemw3diw .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uetemw3diw .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uetemw3diw .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uetemw3diw .panel-body {
    width: 100%;
  }
}
.cid-uetemw3diw .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uetemw3diw .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tMfJ2cMLGI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tMfJ2cMLGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMfJ2cMLGI .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-tMfJ2cMLGI .container {
    padding: 0 30px;
  }
}
.cid-tMfJ2cMLGI .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMfJ2cMLGI .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMfJ2cMLGI .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMfJ2cMLGI .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMfJ2cMLGI .image-wrapper img {
    height: 300px;
  }
}
.cid-tMfJ2cMLGI .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMfJ2cMLGI .title-wrapper {
    height: auto;
  }
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMfJ2cMLGI .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMfJ2cMLGI .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMfJ2cMLGI .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMfJ2cMLGI .mbr-section-subtitle {
  color: #212529;
}
.cid-tMfJ2cMLGI .mbr-section-title {
  color: #212529;
}
.cid-tMfJ2cMLGI .mbr-text {
  color: #212529;
}
.cid-uetpatvB9K {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #00b790;
}
.cid-uetpatvB9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uetpatvB9K .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-uetpatvB9K .container {
    padding: 0 30px;
  }
}
.cid-uetpatvB9K .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uetpatvB9K .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uetpatvB9K .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uetpatvB9K .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uetpatvB9K .image-wrapper img {
    height: 300px;
  }
}
.cid-uetpatvB9K .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uetpatvB9K .title-wrapper {
    height: auto;
  }
}
.cid-uetpatvB9K .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uetpatvB9K .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uetpatvB9K .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uetpatvB9K .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uetpatvB9K .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uetpatvB9K .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uetpatvB9K .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uetpatvB9K .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uetpatvB9K .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uetpatvB9K .mbr-section-subtitle {
  color: #212529;
}
.cid-uetpatvB9K .mbr-section-title {
  color: #212529;
}
.cid-uetpatvB9K .mbr-text {
  color: #212529;
}
.cid-uetl9Qw0QA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uetl9Qw0QA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uetl9Qw0QA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uetl9Qw0QA .container {
  max-width: 1140px;
}
.cid-uetl9Qw0QA .row {
  justify-content: center;
}
.cid-uetl9Qw0QA .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uetl9Qw0QA .mbr-section-title {
  color: #00b790;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uetl9Qw0QA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uetl9Qw0QA .toggle-panel {
  width: 100%;
}
.cid-uetl9Qw0QA .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #2b2b2b;
}
.cid-uetl9Qw0QA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uetl9Qw0QA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uetl9Qw0QA .panel-title {
    align-items: flex-start;
  }
}
.cid-uetl9Qw0QA .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #e8e8e8;
  background-color: #9b9ba5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uetl9Qw0QA .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uetl9Qw0QA .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uetl9Qw0QA .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uetl9Qw0QA .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uetl9Qw0QA .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uetl9Qw0QA .panel-body {
    width: 100%;
  }
}
.cid-uetl9Qw0QA .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uetl9Qw0QA .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-uetl9Qw0QA .panel-title-edit DIV {
  text-align: center;
}
.cid-uet66A54kQ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uet66A54kQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uet66A54kQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uet66A54kQ .container {
  max-width: 1140px;
}
.cid-uet66A54kQ .row {
  justify-content: center;
}
.cid-uet66A54kQ .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uet66A54kQ .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uet66A54kQ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-uet66A54kQ .toggle-panel {
  width: 100%;
}
.cid-uet66A54kQ .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #2b2b2b;
}
.cid-uet66A54kQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uet66A54kQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uet66A54kQ .panel-title {
    align-items: flex-start;
  }
}
.cid-uet66A54kQ .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #e8e8e8;
  background-color: #9b9ba5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uet66A54kQ .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uet66A54kQ .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uet66A54kQ .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uet66A54kQ .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uet66A54kQ .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uet66A54kQ .panel-body {
    width: 100%;
  }
}
.cid-uet66A54kQ .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uet66A54kQ .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tMfJ1g7QLP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #00b790;
}
.cid-tMfJ1g7QLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMfJ1g7QLP .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-tMfJ1g7QLP .container {
    padding: 0 30px;
  }
}
.cid-tMfJ1g7QLP .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMfJ1g7QLP .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMfJ1g7QLP .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMfJ1g7QLP .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMfJ1g7QLP .image-wrapper img {
    height: 300px;
  }
}
.cid-tMfJ1g7QLP .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMfJ1g7QLP .title-wrapper {
    height: auto;
  }
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMfJ1g7QLP .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMfJ1g7QLP .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMfJ1g7QLP .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMfJ1g7QLP .mbr-section-subtitle {
  color: #212529;
}
.cid-tMfJ1g7QLP .mbr-section-title {
  color: #212529;
}
.cid-tMfJ1g7QLP .mbr-text {
  color: #212529;
}
.cid-uetpUq1KkW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #7b7b8b;
}
.cid-uetpUq1KkW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uetpUq1KkW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uetpUq1KkW .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uetpUq1KkW .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uetpUq1KkW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uetpUq1KkW .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uetpUq1KkW .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uetpUq1KkW .header-menu li p {
  margin: 0;
}
.cid-uetpUq1KkW .content-head {
  max-width: 800px;
}
.cid-uetpUq1KkW .mbr-text,
.cid-uetpUq1KkW .mbr-section-btn {
  color: #fafafa;
}
.cid-uetpUq1KkW .mbr-section-title {
  color: #fafafa;
}
.cid-tMfImPgzgL {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-tMfImPgzgL .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-tMfImPgzgL .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-tMfImPgzgL .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tMfymtaSdQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tMfymtaSdQ nav.navbar {
  position: fixed;
}
.cid-tMfymtaSdQ .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-tMfymtaSdQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMfymtaSdQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMfymtaSdQ .dropdown-item:hover,
.cid-tMfymtaSdQ .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tMfymtaSdQ .dropdown-item:hover span {
  color: white;
}
.cid-tMfymtaSdQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMfymtaSdQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMfymtaSdQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMfymtaSdQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMfymtaSdQ .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tMfymtaSdQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMfymtaSdQ .container {
    flex-wrap: nowrap;
  }
}
.cid-tMfymtaSdQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMfymtaSdQ .dropdown-menu,
.cid-tMfymtaSdQ .navbar.opened {
  background: #000000 !important;
}
.cid-tMfymtaSdQ .nav-item:focus,
.cid-tMfymtaSdQ .nav-link:focus {
  outline: none;
}
.cid-tMfymtaSdQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMfymtaSdQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMfymtaSdQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMfymtaSdQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMfymtaSdQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMfymtaSdQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMfymtaSdQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tMfymtaSdQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tMfymtaSdQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMfymtaSdQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tMfymtaSdQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMfymtaSdQ .navbar.collapsed {
  justify-content: center;
}
.cid-tMfymtaSdQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMfymtaSdQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMfymtaSdQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tMfymtaSdQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMfymtaSdQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMfymtaSdQ .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-tMfymtaSdQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMfymtaSdQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMfymtaSdQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMfymtaSdQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMfymtaSdQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMfymtaSdQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMfymtaSdQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMfymtaSdQ .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-tMfymtaSdQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMfymtaSdQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMfymtaSdQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMfymtaSdQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMfymtaSdQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMfymtaSdQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMfymtaSdQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMfymtaSdQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMfymtaSdQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMfymtaSdQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMfymtaSdQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMfymtaSdQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMfymtaSdQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMfymtaSdQ .dropdown-item.active,
.cid-tMfymtaSdQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tMfymtaSdQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMfymtaSdQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMfymtaSdQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMfymtaSdQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMfymtaSdQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMfymtaSdQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMfymtaSdQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMfymtaSdQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMfymtaSdQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMfymtaSdQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tMfymtaSdQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMfymtaSdQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMfymtaSdQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMfymtaSdQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMfymtaSdQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMfymtaSdQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMfymtaSdQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMfymtaSdQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMfymtaSdQ .navbar-dropdown {
  position: fixed;
}
.cid-tMfymtaSdQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMfymtaSdQ .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-tMfymtaSdQ .navbar {
    height: 70px;
  }
  .cid-tMfymtaSdQ .navbar.opened {
    height: auto;
  }
  .cid-tMfymtaSdQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMvyFtyBuo {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-tMvyFtyBuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMvyFtyBuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMvyFtyBuo .container {
  max-width: 1140px;
}
.cid-tMvyFtyBuo .row {
  justify-content: center;
}
.cid-tMvyFtyBuo .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-tMvyFtyBuo .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-tMvyFtyBuo .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-tMvyFtyBuo .toggle-panel {
  width: 100%;
}
.cid-tMvyFtyBuo .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #c40707;
}
.cid-tMvyFtyBuo .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tMvyFtyBuo .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tMvyFtyBuo .panel-title {
    align-items: flex-start;
  }
}
.cid-tMvyFtyBuo .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #2b2b2b;
  background-color: #9fdbf8;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-tMvyFtyBuo .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-tMvyFtyBuo .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-tMvyFtyBuo .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-tMvyFtyBuo .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-tMvyFtyBuo .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-tMvyFtyBuo .panel-body {
    width: 100%;
  }
}
.cid-tMvyFtyBuo .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-tMvyFtyBuo .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-tMvyFtyBuo .panel-title-edit DIV {
  text-align: center;
}
.cid-tMfymwvzaj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/omoda-5-15.20.16-2000x1146.webp");
}
.cid-tMfymwvzaj .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-tMfymwvzaj .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-tMfymwvzaj .card-btn svg {
  transition: all 0.4s;
}
.cid-tMfymwvzaj .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-tMfymwvzaj .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-tMfymwvzaj .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-tMfymwvzaj .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-tMfymwvzaj .column {
  display: flex;
  flex-direction: column;
}
.cid-tMfymwvzaj .mbr-card-title,
.cid-tMfymwvzaj .mbr-text {
  color: #fafafa;
}
.cid-tMfymwvzaj .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tMfymwvzaj .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-tLSR6zN3VJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-tLSR6zN3VJ nav.navbar {
  position: fixed;
}
.cid-tLSR6zN3VJ .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-tLSR6zN3VJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLSR6zN3VJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLSR6zN3VJ .dropdown-item:hover,
.cid-tLSR6zN3VJ .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-tLSR6zN3VJ .dropdown-item:hover span {
  color: white;
}
.cid-tLSR6zN3VJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLSR6zN3VJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLSR6zN3VJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLSR6zN3VJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLSR6zN3VJ .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-tLSR6zN3VJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLSR6zN3VJ .container {
    flex-wrap: nowrap;
  }
}
.cid-tLSR6zN3VJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLSR6zN3VJ .dropdown-menu,
.cid-tLSR6zN3VJ .navbar.opened {
  background: #000000 !important;
}
.cid-tLSR6zN3VJ .nav-item:focus,
.cid-tLSR6zN3VJ .nav-link:focus {
  outline: none;
}
.cid-tLSR6zN3VJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLSR6zN3VJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLSR6zN3VJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLSR6zN3VJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLSR6zN3VJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLSR6zN3VJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLSR6zN3VJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-tLSR6zN3VJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tLSR6zN3VJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLSR6zN3VJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tLSR6zN3VJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLSR6zN3VJ .navbar.collapsed {
  justify-content: center;
}
.cid-tLSR6zN3VJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLSR6zN3VJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLSR6zN3VJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLSR6zN3VJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLSR6zN3VJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLSR6zN3VJ .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-tLSR6zN3VJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLSR6zN3VJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLSR6zN3VJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLSR6zN3VJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLSR6zN3VJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLSR6zN3VJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLSR6zN3VJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLSR6zN3VJ .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-tLSR6zN3VJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLSR6zN3VJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLSR6zN3VJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLSR6zN3VJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLSR6zN3VJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLSR6zN3VJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLSR6zN3VJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLSR6zN3VJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLSR6zN3VJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLSR6zN3VJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLSR6zN3VJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLSR6zN3VJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLSR6zN3VJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLSR6zN3VJ .dropdown-item.active,
.cid-tLSR6zN3VJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tLSR6zN3VJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLSR6zN3VJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLSR6zN3VJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLSR6zN3VJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLSR6zN3VJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLSR6zN3VJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLSR6zN3VJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLSR6zN3VJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLSR6zN3VJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLSR6zN3VJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tLSR6zN3VJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLSR6zN3VJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLSR6zN3VJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLSR6zN3VJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLSR6zN3VJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLSR6zN3VJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLSR6zN3VJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLSR6zN3VJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLSR6zN3VJ .navbar-dropdown {
  position: fixed;
}
.cid-tLSR6zN3VJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLSR6zN3VJ .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-tLSR6zN3VJ .navbar {
    height: 70px;
  }
  .cid-tLSR6zN3VJ .navbar.opened {
    height: auto;
  }
  .cid-tLSR6zN3VJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uesYoYmSy3 {
  display: flex;
  padding-top: 24rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/flag-logo-896025-original-gif.gif");
}
.cid-uesYoYmSy3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .cid-uesYoYmSy3 {
    align-items: flex-end;
  }
  .cid-uesYoYmSy3 .row {
    justify-content: center;
  }
  .cid-uesYoYmSy3 .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uesYoYmSy3 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uesYoYmSy3 {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uesYoYmSy3 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uesYoYmSy3 .content-wrap {
    width: 100%;
  }
}
.cid-uesYoYmSy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uesYoYmSy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uesYoYmSy3 .mbr-section-title,
.cid-uesYoYmSy3 .mbr-section-subtitle {
  text-align: left;
  color: #ffc091;
}
.cid-uesYoYmSy3 .mbr-text,
.cid-uesYoYmSy3 .mbr-section-btn {
  text-align: left;
}
.cid-uUPq1iLt89 {
  padding-top: 225px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-uUPq1iLt89 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uUPq1iLt89 span {
  background-image: url("../../../assets/images/register-cross-bottom.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uUPq1iLt89 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uUPpHZZcXZ {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uUPpHZZcXZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uUPpHZZcXZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uUPpHZZcXZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uUPpHZZcXZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uUPpHZZcXZ .content-head {
  max-width: 800px;
}
.cid-uUPpHZZcXZ LABEL {
  color: #161616;
}
.cid-uUPpHZZcXZ .mbr-section-title {
  color: #161616;
}
.cid-tMxuIhzPAO {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-tMxuIhzPAO .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: left;
}
.cid-tMxuIhzPAO .mbr-text {
  color: #2b2b2b;
  text-align: right;
}
.cid-tMxuIhzPAO .mbr-section-title {
  color: #161616;
  text-align: center;
}
.cid-tMxyqJOAhS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tMxyqJOAhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMxyqJOAhS .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-tMxyqJOAhS .container {
    padding: 0 30px;
  }
}
.cid-tMxyqJOAhS .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMxyqJOAhS .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMxyqJOAhS .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMxyqJOAhS .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMxyqJOAhS .image-wrapper img {
    height: 300px;
  }
}
.cid-tMxyqJOAhS .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMxyqJOAhS .title-wrapper {
    height: auto;
  }
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMxyqJOAhS .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMxyqJOAhS .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMxyqJOAhS .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMxyqJOAhS .mbr-section-subtitle {
  color: #212529;
}
.cid-tMxyqJOAhS .mbr-section-title {
  color: #212529;
}
.cid-tMxyqJOAhS .mbr-text {
  color: #212529;
}
.cid-tYJ8X59bVt {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/2023-07-22-680x510.webp");
}
.cid-tYJ8X59bVt .icon-title {
  margin: 0;
  padding: 0;
}
@media (min-width: 1400px) {
  .cid-tYJ8X59bVt .text {
    max-width: 360px;
  }
}
@media (max-width: 992px) {
  .cid-tYJ8X59bVt .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-tYJ8X59bVt .google-map {
  height: 18rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tYJ8X59bVt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYJ8X59bVt .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYJ8X59bVt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYJ8X59bVt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYJ8X59bVt .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
  color: #5758e0;
  text-align: right;
}
.cid-tYJ8X59bVt .mail:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-tYJ8X59bVt .mail:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-tYJ8X59bVt .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-tYJ8X59bVt .mbr-text,
.cid-tYJ8X59bVt .mbr-section-btn {
  color: #999999;
}
.cid-tYJ8X59bVt .icon-title,
.cid-tYJ8X59bVt .align-wrap {
  color: #000000;
}
.cid-tYJ8X59bVt H4 {
  color: #000000;
}
.cid-tYJ8X59bVt .mbr-section-title,
.cid-tYJ8X59bVt .col {
  color: #730000;
}
.cid-tYJ8X59bVt .title {
  color: #22a5e5;
}
.cid-tYJ8X59bVt .mbr-text,
.cid-tYJ8X59bVt .col {
  color: #2b2b2b;
}
.cid-tYJ8YCudZN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tYJ8YCudZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ8YCudZN .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-tYJ8YCudZN .container {
    padding: 0 30px;
  }
}
.cid-tYJ8YCudZN .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tYJ8YCudZN .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tYJ8YCudZN .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tYJ8YCudZN .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tYJ8YCudZN .image-wrapper img {
    height: 300px;
  }
}
.cid-tYJ8YCudZN .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tYJ8YCudZN .title-wrapper {
    height: auto;
  }
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tYJ8YCudZN .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tYJ8YCudZN .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tYJ8YCudZN .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tYJ8YCudZN .mbr-section-subtitle {
  color: #212529;
}
.cid-tYJ8YCudZN .mbr-section-title {
  color: #212529;
}
.cid-tYJ8YCudZN .mbr-text {
  color: #212529;
}
.cid-tMq4Yyz7ZO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tMq4Yyz7ZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMq4Yyz7ZO .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-tMq4Yyz7ZO .container {
    padding: 0 30px;
  }
}
.cid-tMq4Yyz7ZO .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMq4Yyz7ZO .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMq4Yyz7ZO .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMq4Yyz7ZO .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMq4Yyz7ZO .image-wrapper img {
    height: 300px;
  }
}
.cid-tMq4Yyz7ZO .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMq4Yyz7ZO .title-wrapper {
    height: auto;
  }
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMq4Yyz7ZO .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMq4Yyz7ZO .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMq4Yyz7ZO .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMq4Yyz7ZO .mbr-section-subtitle {
  color: #212529;
}
.cid-tMq4Yyz7ZO .mbr-section-title {
  color: #212529;
}
.cid-tMq4Yyz7ZO .mbr-text {
  color: #212529;
}
.cid-tMq4ZWRjV0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-tMq4ZWRjV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMq4ZWRjV0 .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-tMq4ZWRjV0 .container {
    padding: 0 30px;
  }
}
.cid-tMq4ZWRjV0 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-tMq4ZWRjV0 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMq4ZWRjV0 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tMq4ZWRjV0 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tMq4ZWRjV0 .image-wrapper img {
    height: 300px;
  }
}
.cid-tMq4ZWRjV0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tMq4ZWRjV0 .title-wrapper {
    height: auto;
  }
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tMq4ZWRjV0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tMq4ZWRjV0 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tMq4ZWRjV0 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tMq4ZWRjV0 .mbr-section-subtitle {
  color: #212529;
}
.cid-tMq4ZWRjV0 .mbr-section-title {
  color: #212529;
}
.cid-tMq4ZWRjV0 .mbr-text {
  color: #212529;
}
.cid-tMqKs7I3VO {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/contact-us-1920x812.webp");
}
.cid-tMqKs7I3VO .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-tMqKs7I3VO .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-tMqKs7I3VO .card-btn svg {
  transition: all 0.4s;
}
.cid-tMqKs7I3VO .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-tMqKs7I3VO .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-tMqKs7I3VO .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-tMqKs7I3VO .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-tMqKs7I3VO .column {
  display: flex;
  flex-direction: column;
}
.cid-tMqKs7I3VO .mbr-card-title,
.cid-tMqKs7I3VO .mbr-text {
  color: #fafafa;
}
.cid-tMqKs7I3VO .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tMqKs7I3VO .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-tMqKs7I3VO .mbr-text DIV {
  text-align: center;
}
.cid-tMqKs7I3VO .mbr-card-title {
  text-align: center;
}
.cid-tMqKs7I3VO .mbr-text,
.cid-tMqKs7I3VO .mbr-section-btn {
  text-align: center;
}
.cid-tMoCXmb1pu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-tMoCXmb1pu .mbr-text,
.cid-tMoCXmb1pu .mbr-section-btn {
  color: #121212;
}
.cid-tMoCXmb1pu .mbr-text,
.cid-tMoCXmb1pu .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tMoCXmb1pu .mbr-text,
  .cid-tMoCXmb1pu .mbr-section-title {
    text-align: center;
  }
}
.cid-tMoCXmb1pu a.btn {
  height: 100%;
  margin: 0;
}
.cid-tMoCXmb1pu .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-tMoCXmb1pu .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tMoCXmb1pu .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tMoCXmb1pu .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-tMoCXmb1pu .justify-content-center {
  align-items: center;
}
.cid-tMoCXmb1pu .border-radius {
  border-radius: 0px;
}
.cid-tMoCXmb1pu .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tMoCXmb1pu .rotate {
    top: -6px;
  }
}
.cid-tMoCXmb1pu svg {
  transition: all 0.4s;
}
.cid-tMoCXmb1pu .svg-rotate {
  transform: rotate(225deg);
}
.cid-tMoCXmb1pu .style-button {
  font-size: 30px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 0px;
}
.cid-tMoCXmb1pu .style-button:hover > .svg-rotate {
  transform: rotate(315deg);
}
.cid-tMoCXmb1pu P {
  color: #2b2b2b;
}
.cid-tMoCXmb1pu H1 {
  color: #161616;
}
.cid-tMoCXmb1pu LABEL {
  color: #fafafa;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-taOw7l9PvM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-taOw7l9PvM nav.navbar {
  position: fixed;
}
.cid-taOw7l9PvM .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-taOw7l9PvM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-taOw7l9PvM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-taOw7l9PvM .dropdown-item:hover,
.cid-taOw7l9PvM .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-taOw7l9PvM .dropdown-item:hover span {
  color: white;
}
.cid-taOw7l9PvM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taOw7l9PvM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taOw7l9PvM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taOw7l9PvM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taOw7l9PvM .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-taOw7l9PvM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-taOw7l9PvM .container {
    flex-wrap: nowrap;
  }
}
.cid-taOw7l9PvM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taOw7l9PvM .dropdown-menu,
.cid-taOw7l9PvM .navbar.opened {
  background: #000000 !important;
}
.cid-taOw7l9PvM .nav-item:focus,
.cid-taOw7l9PvM .nav-link:focus {
  outline: none;
}
.cid-taOw7l9PvM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taOw7l9PvM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taOw7l9PvM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taOw7l9PvM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taOw7l9PvM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taOw7l9PvM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taOw7l9PvM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-taOw7l9PvM .navbar.opened {
  transition: all 0.3s;
}
.cid-taOw7l9PvM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taOw7l9PvM .navbar .navbar-logo img {
  width: auto;
}
.cid-taOw7l9PvM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taOw7l9PvM .navbar.collapsed {
  justify-content: center;
}
.cid-taOw7l9PvM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taOw7l9PvM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-taOw7l9PvM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-taOw7l9PvM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taOw7l9PvM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taOw7l9PvM .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-taOw7l9PvM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taOw7l9PvM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taOw7l9PvM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taOw7l9PvM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taOw7l9PvM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taOw7l9PvM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taOw7l9PvM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taOw7l9PvM .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-taOw7l9PvM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taOw7l9PvM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taOw7l9PvM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taOw7l9PvM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-taOw7l9PvM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taOw7l9PvM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-taOw7l9PvM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-taOw7l9PvM .navbar.navbar-short {
  min-height: 60px;
}
.cid-taOw7l9PvM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taOw7l9PvM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-taOw7l9PvM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-taOw7l9PvM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taOw7l9PvM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taOw7l9PvM .dropdown-item.active,
.cid-taOw7l9PvM .dropdown-item:active {
  background-color: transparent;
}
.cid-taOw7l9PvM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taOw7l9PvM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taOw7l9PvM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taOw7l9PvM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-taOw7l9PvM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taOw7l9PvM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taOw7l9PvM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taOw7l9PvM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-taOw7l9PvM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-taOw7l9PvM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-taOw7l9PvM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taOw7l9PvM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taOw7l9PvM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taOw7l9PvM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taOw7l9PvM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taOw7l9PvM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taOw7l9PvM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taOw7l9PvM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taOw7l9PvM .navbar-dropdown {
  position: fixed;
}
.cid-taOw7l9PvM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taOw7l9PvM .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-taOw7l9PvM .navbar {
    height: 70px;
  }
  .cid-taOw7l9PvM .navbar.opened {
    height: auto;
  }
  .cid-taOw7l9PvM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSlQof8vJq {
  background-image: url("../../../assets/images/home-banner.gif");
}
.cid-uSlQof8vJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlQof8vJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlQof8vJq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSlQof8vJq .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uSlQof8vJq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uSlQof8vJq .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uSlQof8vJq .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uSlQof8vJq .header-menu li p {
  margin: 0;
}
.cid-uSlQof8vJq .content-head {
  max-width: 800px;
}
.cid-uSlQof8vJq .mbr-section-title {
  color: #fafafa;
}
.cid-uSlQof8vJq .mbr-text,
.cid-uSlQof8vJq .mbr-section-btn {
  color: #fafafa;
}
.cid-uSExhszRHj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uSExhszRHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSExhszRHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSExhszRHj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSExhszRHj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSExhszRHj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSExhszRHj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSExhszRHj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSExhszRHj .mbr-text,
.cid-uSExhszRHj .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSuwS851I6 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSuwS851I6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSuwS851I6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRSXXdTg0M {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/6.gif");
}
.cid-uRSXXdTg0M .mbr-overlay {
  background: #ffffff;
  opacity: 0.4;
}
.cid-uRSXXdTg0M .item:focus,
.cid-uRSXXdTg0M span:focus {
  outline: none;
}
.cid-uRSXXdTg0M .item {
  cursor: pointer;
}
.cid-uRSXXdTg0M .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uRSXXdTg0M .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXXdTg0M .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uRSXXdTg0M .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.cid-uRSXXdTg0M .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #2b2b2b;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXXdTg0M .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 25s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXXdTg0M .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 12s;
}
.cid-uRSXXdTg0M .mbr-section-title,
.cid-uRSXXdTg0M .mbr-section-subtitle {
  color: #000000;
}
.cid-uSqQL6GgYs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSqQL6GgYs .content-head {
  max-width: 800px;
}
.cid-uShGJjiCQw {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uShGJjiCQw .item:focus,
.cid-uShGJjiCQw span:focus {
  outline: none;
}
.cid-uShGJjiCQw .item {
  cursor: pointer;
}
.cid-uShGJjiCQw .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uShGJjiCQw .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uShGJjiCQw .grid-container-1,
.cid-uShGJjiCQw .grid-container-2,
.cid-uShGJjiCQw .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uShGJjiCQw .grid-container-1,
  .cid-uShGJjiCQw .grid-container-2,
  .cid-uShGJjiCQw .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uShGJjiCQw .mbr-section-title {
  color: #000000;
}
.cid-uShGJjiCQw .mbr-text,
.cid-uShGJjiCQw .mbr-section-btn {
  color: #000000;
}
.cid-uShGJjiCQw .content-head {
  max-width: 800px;
}
.cid-uShGJjiCQw .container,
.cid-uShGJjiCQw .container-fluid {
  overflow: hidden;
}
.cid-uShGJjiCQw .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uShGJjiCQw .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uShGJjiCQw .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uShGJjiCQw .grid-item img {
    min-width: 35vw;
  }
}
.cid-uShGJjiCQw .grid-container-1,
.cid-uShGJjiCQw .grid-container-2,
.cid-uShGJjiCQw .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uShGJjiCQw .grid-container-1 {
  align-items: flex-end;
}
.cid-uShGJjiCQw .grid-container-2 {
  align-items: flex-start;
}
.cid-uSvsalMe67 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSvsalMe67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSvsalMe67 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSvsalMe67 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSvsalMe67 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSvsalMe67 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSvsalMe67 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSvsalMe67 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSvsalMe67 .mbr-text,
.cid-uSvsalMe67 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSvzdcpYpA {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSvzdcpYpA .item:focus,
.cid-uSvzdcpYpA span:focus {
  outline: none;
}
.cid-uSvzdcpYpA .item {
  cursor: pointer;
}
.cid-uSvzdcpYpA .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSvzdcpYpA .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSvzdcpYpA .grid-container-1,
.cid-uSvzdcpYpA .grid-container-2,
.cid-uSvzdcpYpA .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSvzdcpYpA .grid-container-1,
  .cid-uSvzdcpYpA .grid-container-2,
  .cid-uSvzdcpYpA .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSvzdcpYpA .mbr-section-title {
  color: #000000;
}
.cid-uSvzdcpYpA .mbr-text,
.cid-uSvzdcpYpA .mbr-section-btn {
  color: #000000;
}
.cid-uSvzdcpYpA .content-head {
  max-width: 800px;
}
.cid-uSvzdcpYpA .container,
.cid-uSvzdcpYpA .container-fluid {
  overflow: hidden;
}
.cid-uSvzdcpYpA .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSvzdcpYpA .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSvzdcpYpA .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSvzdcpYpA .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSvzdcpYpA .grid-container-1,
.cid-uSvzdcpYpA .grid-container-2,
.cid-uSvzdcpYpA .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSvzdcpYpA .grid-container-1 {
  align-items: flex-end;
}
.cid-uSvzdcpYpA .grid-container-2 {
  align-items: flex-start;
}
.cid-uSjK4aiRll {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSjK4aiRll .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjK4aiRll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSjK4aiRll .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSjK4aiRll .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSjK4aiRll .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSjK4aiRll .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSjK4aiRll .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSjK4aiRll .mbr-text,
.cid-uSjK4aiRll .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uShGGpotk6 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uShGGpotk6 .item:focus,
.cid-uShGGpotk6 span:focus {
  outline: none;
}
.cid-uShGGpotk6 .item {
  cursor: pointer;
}
.cid-uShGGpotk6 .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uShGGpotk6 .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uShGGpotk6 .grid-container-1,
.cid-uShGGpotk6 .grid-container-2,
.cid-uShGGpotk6 .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uShGGpotk6 .grid-container-1,
  .cid-uShGGpotk6 .grid-container-2,
  .cid-uShGGpotk6 .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uShGGpotk6 .mbr-section-title {
  color: #000000;
}
.cid-uShGGpotk6 .mbr-text,
.cid-uShGGpotk6 .mbr-section-btn {
  color: #000000;
}
.cid-uShGGpotk6 .content-head {
  max-width: 800px;
}
.cid-uShGGpotk6 .container,
.cid-uShGGpotk6 .container-fluid {
  overflow: hidden;
}
.cid-uShGGpotk6 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uShGGpotk6 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uShGGpotk6 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uShGGpotk6 .grid-item img {
    min-width: 35vw;
  }
}
.cid-uShGGpotk6 .grid-container-1,
.cid-uShGGpotk6 .grid-container-2,
.cid-uShGGpotk6 .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uShGGpotk6 .grid-container-1 {
  align-items: flex-end;
}
.cid-uShGGpotk6 .grid-container-2 {
  align-items: flex-start;
}
.cid-uShF1Y7NOp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uShF1Y7NOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShF1Y7NOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uShF1Y7NOp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uShF1Y7NOp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uShF1Y7NOp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uShF1Y7NOp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uShF1Y7NOp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uShF1Y7NOp .mbr-text,
.cid-uShF1Y7NOp .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSf7Msz2OL {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSf7Msz2OL .item:focus,
.cid-uSf7Msz2OL span:focus {
  outline: none;
}
.cid-uSf7Msz2OL .item {
  cursor: pointer;
}
.cid-uSf7Msz2OL .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSf7Msz2OL .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSf7Msz2OL .grid-container-1,
.cid-uSf7Msz2OL .grid-container-2,
.cid-uSf7Msz2OL .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSf7Msz2OL .grid-container-1,
  .cid-uSf7Msz2OL .grid-container-2,
  .cid-uSf7Msz2OL .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSf7Msz2OL .mbr-section-title {
  color: #000000;
}
.cid-uSf7Msz2OL .mbr-text,
.cid-uSf7Msz2OL .mbr-section-btn {
  color: #000000;
}
.cid-uSf7Msz2OL .content-head {
  max-width: 800px;
}
.cid-uSf7Msz2OL .container,
.cid-uSf7Msz2OL .container-fluid {
  overflow: hidden;
}
.cid-uSf7Msz2OL .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSf7Msz2OL .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSf7Msz2OL .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSf7Msz2OL .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSf7Msz2OL .grid-container-1,
.cid-uSf7Msz2OL .grid-container-2,
.cid-uSf7Msz2OL .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSf7Msz2OL .grid-container-1 {
  align-items: flex-end;
}
.cid-uSf7Msz2OL .grid-container-2 {
  align-items: flex-start;
}
.cid-uSvsFUQQhF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSvsFUQQhF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSvsFUQQhF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSvsFUQQhF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSvsFUQQhF .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSvsFUQQhF .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSvsFUQQhF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSvsFUQQhF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSvsFUQQhF .mbr-text,
.cid-uSvsFUQQhF .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSvsHxpn7R {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSvsHxpn7R .item:focus,
.cid-uSvsHxpn7R span:focus {
  outline: none;
}
.cid-uSvsHxpn7R .item {
  cursor: pointer;
}
.cid-uSvsHxpn7R .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSvsHxpn7R .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSvsHxpn7R .grid-container-1,
.cid-uSvsHxpn7R .grid-container-2,
.cid-uSvsHxpn7R .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSvsHxpn7R .grid-container-1,
  .cid-uSvsHxpn7R .grid-container-2,
  .cid-uSvsHxpn7R .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSvsHxpn7R .mbr-section-title {
  color: #000000;
}
.cid-uSvsHxpn7R .mbr-text,
.cid-uSvsHxpn7R .mbr-section-btn {
  color: #000000;
}
.cid-uSvsHxpn7R .content-head {
  max-width: 800px;
}
.cid-uSvsHxpn7R .container,
.cid-uSvsHxpn7R .container-fluid {
  overflow: hidden;
}
.cid-uSvsHxpn7R .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSvsHxpn7R .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSvsHxpn7R .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSvsHxpn7R .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSvsHxpn7R .grid-container-1,
.cid-uSvsHxpn7R .grid-container-2,
.cid-uSvsHxpn7R .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSvsHxpn7R .grid-container-1 {
  align-items: flex-end;
}
.cid-uSvsHxpn7R .grid-container-2 {
  align-items: flex-start;
}
.cid-uRSXVDo2KH {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/7.gif");
}
.cid-uRSXVDo2KH .mbr-overlay {
  background: #ffffff;
  opacity: 0.3;
}
.cid-uRSXVDo2KH .item:focus,
.cid-uRSXVDo2KH span:focus {
  outline: none;
}
.cid-uRSXVDo2KH .item {
  cursor: pointer;
}
.cid-uRSXVDo2KH .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uRSXVDo2KH .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXVDo2KH .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uRSXVDo2KH .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.cid-uRSXVDo2KH .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #2b2b2b;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXVDo2KH .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 15s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uRSXVDo2KH .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 11s;
}
.cid-uRSXVDo2KH .mbr-section-title,
.cid-uRSXVDo2KH .mbr-section-subtitle {
  color: #000000;
}
.cid-uSpPm0g15T {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSpPm0g15T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSpPm0g15T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSpPm0g15T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSpPm0g15T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSpPm0g15T .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSpPm0g15T .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSpPm0g15T .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSpPm0g15T .mbr-text,
.cid-uSpPm0g15T .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSsRppFdoc {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSsRppFdoc .item:focus,
.cid-uSsRppFdoc span:focus {
  outline: none;
}
.cid-uSsRppFdoc .item {
  cursor: pointer;
}
.cid-uSsRppFdoc .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSsRppFdoc .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSsRppFdoc .grid-container-1,
.cid-uSsRppFdoc .grid-container-2,
.cid-uSsRppFdoc .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSsRppFdoc .grid-container-1,
  .cid-uSsRppFdoc .grid-container-2,
  .cid-uSsRppFdoc .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSsRppFdoc .mbr-section-title {
  color: #000000;
}
.cid-uSsRppFdoc .mbr-text,
.cid-uSsRppFdoc .mbr-section-btn {
  color: #000000;
}
.cid-uSsRppFdoc .content-head {
  max-width: 800px;
}
.cid-uSsRppFdoc .container,
.cid-uSsRppFdoc .container-fluid {
  overflow: hidden;
}
.cid-uSsRppFdoc .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSsRppFdoc .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSsRppFdoc .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSsRppFdoc .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSsRppFdoc .grid-container-1,
.cid-uSsRppFdoc .grid-container-2,
.cid-uSsRppFdoc .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSsRppFdoc .grid-container-1 {
  align-items: flex-end;
}
.cid-uSsRppFdoc .grid-container-2 {
  align-items: flex-start;
}
.cid-uSpPvDzPOZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSpPvDzPOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSpPvDzPOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSpPvDzPOZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSpPvDzPOZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSpPvDzPOZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSpPvDzPOZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSpPvDzPOZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSpPvDzPOZ .mbr-text,
.cid-uSpPvDzPOZ .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSsRqmVteq {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSsRqmVteq .item:focus,
.cid-uSsRqmVteq span:focus {
  outline: none;
}
.cid-uSsRqmVteq .item {
  cursor: pointer;
}
.cid-uSsRqmVteq .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uSsRqmVteq .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uSsRqmVteq .grid-container-1,
.cid-uSsRqmVteq .grid-container-2,
.cid-uSsRqmVteq .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSsRqmVteq .grid-container-1,
  .cid-uSsRqmVteq .grid-container-2,
  .cid-uSsRqmVteq .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uSsRqmVteq .mbr-section-title {
  color: #000000;
}
.cid-uSsRqmVteq .mbr-text,
.cid-uSsRqmVteq .mbr-section-btn {
  color: #000000;
}
.cid-uSsRqmVteq .content-head {
  max-width: 800px;
}
.cid-uSsRqmVteq .container,
.cid-uSsRqmVteq .container-fluid {
  overflow: hidden;
}
.cid-uSsRqmVteq .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uSsRqmVteq .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSsRqmVteq .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSsRqmVteq .grid-item img {
    min-width: 35vw;
  }
}
.cid-uSsRqmVteq .grid-container-1,
.cid-uSsRqmVteq .grid-container-2,
.cid-uSsRqmVteq .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uSsRqmVteq .grid-container-1 {
  align-items: flex-end;
}
.cid-uSsRqmVteq .grid-container-2 {
  align-items: flex-start;
}
.cid-uSsVhQKngJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSsVhQKngJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSsVhQKngJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSsVhQKngJ .row {
  flex-direction: row-reverse;
}
.cid-uSEWs9x9Cy {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uSEWs9x9Cy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSEWs9x9Cy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSEWs9x9Cy .row {
  flex-direction: row-reverse;
}
.cid-uSEWs9x9Cy .mbr-description {
  text-align: center;
}
.cid-uerGVgRFDp {
  padding-top: 225px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-uerGVgRFDp h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uerGVgRFDp span {
  background-image: url("../../../assets/images/register-cross-bottom.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uerGVgRFDp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uerHE8EcCJ {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uerHE8EcCJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uerHE8EcCJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uerHE8EcCJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uerHE8EcCJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uerHE8EcCJ .content-head {
  max-width: 800px;
}
.cid-uerHE8EcCJ LABEL {
  color: #161616;
}
.cid-uerHE8EcCJ .mbr-section-title {
  color: #161616;
}
.cid-uerMke4qGR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-uerMke4qGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerMke4qGR .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-uerMke4qGR .container {
    padding: 0 30px;
  }
}
.cid-uerMke4qGR .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerMke4qGR .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerMke4qGR .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerMke4qGR .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerMke4qGR .image-wrapper img {
    height: 300px;
  }
}
.cid-uerMke4qGR .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerMke4qGR .title-wrapper {
    height: auto;
  }
}
.cid-uerMke4qGR .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerMke4qGR .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerMke4qGR .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerMke4qGR .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerMke4qGR .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerMke4qGR .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerMke4qGR .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerMke4qGR .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerMke4qGR .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerMke4qGR .mbr-section-subtitle {
  color: #212529;
}
.cid-uerMke4qGR .mbr-section-title {
  color: #212529;
}
.cid-uerMke4qGR .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-u5jHwGDF1r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-u5jHwGDF1r nav.navbar {
  position: fixed;
}
.cid-u5jHwGDF1r .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-u5jHwGDF1r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5jHwGDF1r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5jHwGDF1r .dropdown-item:hover,
.cid-u5jHwGDF1r .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-u5jHwGDF1r .dropdown-item:hover span {
  color: white;
}
.cid-u5jHwGDF1r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5jHwGDF1r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5jHwGDF1r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5jHwGDF1r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5jHwGDF1r .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-u5jHwGDF1r .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5jHwGDF1r .container {
    flex-wrap: nowrap;
  }
}
.cid-u5jHwGDF1r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5jHwGDF1r .dropdown-menu,
.cid-u5jHwGDF1r .navbar.opened {
  background: #000000 !important;
}
.cid-u5jHwGDF1r .nav-item:focus,
.cid-u5jHwGDF1r .nav-link:focus {
  outline: none;
}
.cid-u5jHwGDF1r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5jHwGDF1r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5jHwGDF1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5jHwGDF1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5jHwGDF1r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5jHwGDF1r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5jHwGDF1r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-u5jHwGDF1r .navbar.opened {
  transition: all 0.3s;
}
.cid-u5jHwGDF1r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5jHwGDF1r .navbar .navbar-logo img {
  width: auto;
}
.cid-u5jHwGDF1r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5jHwGDF1r .navbar.collapsed {
  justify-content: center;
}
.cid-u5jHwGDF1r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5jHwGDF1r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5jHwGDF1r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u5jHwGDF1r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5jHwGDF1r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5jHwGDF1r .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-u5jHwGDF1r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5jHwGDF1r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5jHwGDF1r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5jHwGDF1r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5jHwGDF1r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5jHwGDF1r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5jHwGDF1r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5jHwGDF1r .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-u5jHwGDF1r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5jHwGDF1r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5jHwGDF1r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5jHwGDF1r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5jHwGDF1r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5jHwGDF1r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5jHwGDF1r .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5jHwGDF1r .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5jHwGDF1r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5jHwGDF1r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5jHwGDF1r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5jHwGDF1r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5jHwGDF1r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5jHwGDF1r .dropdown-item.active,
.cid-u5jHwGDF1r .dropdown-item:active {
  background-color: transparent;
}
.cid-u5jHwGDF1r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5jHwGDF1r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5jHwGDF1r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5jHwGDF1r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u5jHwGDF1r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5jHwGDF1r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5jHwGDF1r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5jHwGDF1r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5jHwGDF1r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5jHwGDF1r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u5jHwGDF1r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5jHwGDF1r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5jHwGDF1r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5jHwGDF1r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5jHwGDF1r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5jHwGDF1r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5jHwGDF1r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5jHwGDF1r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5jHwGDF1r .navbar-dropdown {
  position: fixed;
}
.cid-u5jHwGDF1r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5jHwGDF1r .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-u5jHwGDF1r .navbar {
    height: 70px;
  }
  .cid-u5jHwGDF1r .navbar.opened {
    height: auto;
  }
  .cid-u5jHwGDF1r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5jHwHz4BR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/untitled-design.gif");
}
.cid-u5jHwHz4BR .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-u5jHwHz4BR .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-u5jHwHz4BR .card-btn svg {
  transition: all 0.4s;
}
.cid-u5jHwHz4BR .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-u5jHwHz4BR .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-u5jHwHz4BR .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-u5jHwHz4BR .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-u5jHwHz4BR .column {
  display: flex;
  flex-direction: column;
}
.cid-u5jHwHz4BR .mbr-card-title,
.cid-u5jHwHz4BR .mbr-text {
  color: #fafafa;
}
.cid-u5jHwHz4BR .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-u5jHwHz4BR .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-u5jHwHz4BR .mbr-text DIV {
  text-align: left;
}
.cid-u5jHwHz4BR .mbr-card-title {
  text-align: left;
  color: #fafafa;
}
.cid-uUWxQz7TGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #7bcab9;
}
.cid-uUWxQz7TGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUWxQz7TGL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUWxQz7TGL .col-title {
  margin-bottom: 32px;
}
.cid-uUWxQz7TGL .mbr-section-title {
  color: #24262b;
}
.cid-uUWxQz7TGL .mbr-section-subtitle {
  color: #24262b;
}
.cid-uUWxQz7TGL .cars-row {
  row-gap: 32px;
}
.cid-uUWxQz7TGL .card {
  border-radius: 0;
}
.cid-uUWxQz7TGL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uUWxQz7TGL .text-wrap {
  flex-grow: 1;
}
.cid-uUWxQz7TGL .card-title {
  color: #24262b;
}
.cid-uUWxQz7TGL .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uUWxQz7TGL .mbr-section-btn {
  margin-top: 12px;
}
.cid-uUWxQz7TGL .card-title,
.cid-uUWxQz7TGL .card-wrapper {
  color: #1b1b1b;
}
.cid-uUWxQz7TGL .card-text,
.cid-uUWxQz7TGL .mbr-section-btn {
  color: #2b2b2b;
}
.cid-uUUtPAQgbU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUUtPAQgbU .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uUUtPAQgbU .mbr-text {
  color: #161616;
  text-align: center;
}
.cid-uUUtPAQgbU .mbr-section-title {
  color: #97b9ad;
  text-align: center;
}
.cid-u5UzzGlsFz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5UzzGlsFz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5UzzGlsFz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5UzzGlsFz .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-u5UzzGlsFz .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-u5UzzGlsFz .card:first-child {
    border: none;
  }
  .cid-u5UzzGlsFz .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-u5UzzGlsFz .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-u5UzzGlsFz .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-u5UzzGlsFz .card-wrapper .mbr-text,
.cid-u5UzzGlsFz .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u5UzzGlsFz .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u5UzzGlsFz .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-u5UzzGlsFz .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uUTTxUH5dA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uUTTxUH5dA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTTxUH5dA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUTTxUH5dA .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uUTTxUH5dA .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uUTTxUH5dA .container {
    padding: 0 26px;
  }
}
.cid-uUTTxUH5dA .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uUTTxUH5dA .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uUTTxUH5dA .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uUTTxUH5dA .mbr-section-title {
  color: #ffffff;
}
.cid-uUTTxUH5dA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUTTxUH5dA .mbr-text {
  color: #cacaca;
}
.cid-u5jHwJPcvZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b6ffe7;
}
.cid-u5jHwJPcvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwJPcvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5jHwJPcvZ h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-u5jHwJPcvZ h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-u5jHwJPcvZ .mbr-section-title {
  color: #ffffff;
}
.cid-u5jHwKrtnL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f1f4e9;
}
.cid-u5jHwKrtnL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwKrtnL .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-u5jHwKrtnL .container {
    padding: 0 30px;
  }
}
.cid-u5jHwKrtnL .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwKrtnL .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwKrtnL .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwKrtnL .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwKrtnL .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwKrtnL .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwKrtnL .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwKrtnL .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwKrtnL .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwKrtnL .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwKrtnL .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwKrtnL .mbr-section-title {
  color: #212529;
}
.cid-u5jHwKrtnL .mbr-text {
  color: #212529;
}
.cid-u5jHwLd8wy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b2b2b;
}
.cid-u5jHwLd8wy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwLd8wy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5jHwLd8wy h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-u5jHwLd8wy h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-u5jHwLd8wy .mbr-section-title {
  color: #ffffff;
}
.cid-u5Usc97Sx3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/ev-future-lifestyle-post-pleasure-garden.webp");
}
.cid-u5Usc97Sx3 .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-u5Usc97Sx3 .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-u5Usc97Sx3 .card-btn svg {
  transition: all 0.4s;
}
.cid-u5Usc97Sx3 .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-u5Usc97Sx3 .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-u5Usc97Sx3 .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-u5Usc97Sx3 .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-u5Usc97Sx3 .column {
  display: flex;
  flex-direction: column;
}
.cid-u5Usc97Sx3 .mbr-card-title,
.cid-u5Usc97Sx3 .mbr-text {
  color: #fafafa;
}
.cid-u5Usc97Sx3 .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-u5Usc97Sx3 .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-u5Usc97Sx3 .mbr-text DIV {
  text-align: left;
}
.cid-u5Usc97Sx3 .mbr-card-title {
  text-align: right;
  color: #fafafa;
}
.cid-u5Usc97Sx3 .mbr-text {
  color: #fafafa;
}
.cid-u5Usc97Sx3 .mbr-card-title DIV {
  text-align: left;
}
.cid-u7QqTilCIz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7QqTilCIz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7QqTilCIz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7QqTilCIz .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-u7QqTilCIz .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-u7QqTilCIz .card:first-child {
    border: none;
  }
  .cid-u7QqTilCIz .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-u7QqTilCIz .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-u7QqTilCIz .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-u7QqTilCIz .card-wrapper .mbr-text,
.cid-u7QqTilCIz .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u7QqTilCIz .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u7QqTilCIz .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-u7QqTilCIz .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-u5jHwMw07d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-u5jHwMw07d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwMw07d .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-u5jHwMw07d .container {
    padding: 0 30px;
  }
}
.cid-u5jHwMw07d .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwMw07d .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwMw07d .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwMw07d .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwMw07d .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwMw07d .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwMw07d .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwMw07d .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwMw07d .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwMw07d .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwMw07d .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwMw07d .mbr-section-title {
  color: #212529;
}
.cid-u5jHwMw07d .mbr-text {
  color: #212529;
}
.cid-u5jHwOdMHc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-u5jHwOdMHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwOdMHc .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-u5jHwOdMHc .container {
    padding: 0 30px;
  }
}
.cid-u5jHwOdMHc .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwOdMHc .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwOdMHc .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwOdMHc .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwOdMHc .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwOdMHc .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwOdMHc .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwOdMHc .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwOdMHc .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwOdMHc .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwOdMHc .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwOdMHc .mbr-section-title {
  color: #212529;
}
.cid-u5jHwOdMHc .mbr-text {
  color: #212529;
}
.cid-u5jHwP5zCj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-u5jHwP5zCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwP5zCj .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-u5jHwP5zCj .container {
    padding: 0 30px;
  }
}
.cid-u5jHwP5zCj .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwP5zCj .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwP5zCj .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwP5zCj .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwP5zCj .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwP5zCj .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwP5zCj .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwP5zCj .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwP5zCj .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwP5zCj .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwP5zCj .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwP5zCj .mbr-section-title {
  color: #212529;
}
.cid-u5jHwP5zCj .mbr-text {
  color: #212529;
}
.cid-u5Ua4wmvT4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1.webp");
}
.cid-u5Ua4wmvT4 .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-u5Ua4wmvT4 .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-u5Ua4wmvT4 .card-btn svg {
  transition: all 0.4s;
}
.cid-u5Ua4wmvT4 .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-u5Ua4wmvT4 .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-u5Ua4wmvT4 .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-u5Ua4wmvT4 .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-u5Ua4wmvT4 .column {
  display: flex;
  flex-direction: column;
}
.cid-u5Ua4wmvT4 .mbr-card-title,
.cid-u5Ua4wmvT4 .mbr-text {
  color: #fafafa;
}
.cid-u5Ua4wmvT4 .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-u5Ua4wmvT4 .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-u5Ua4wmvT4 .mbr-text DIV {
  text-align: center;
}
.cid-u5Ua4wmvT4 .mbr-card-title {
  text-align: right;
}
.cid-u7Qj5wjYv6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7Qj5wjYv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7Qj5wjYv6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7Qj5wjYv6 .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-u7Qj5wjYv6 .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-u7Qj5wjYv6 .card:first-child {
    border: none;
  }
  .cid-u7Qj5wjYv6 .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-u7Qj5wjYv6 .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-u7Qj5wjYv6 .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-u7Qj5wjYv6 .card-wrapper .mbr-text,
.cid-u7Qj5wjYv6 .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u7Qj5wjYv6 .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u7Qj5wjYv6 .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-u7Qj5wjYv6 .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uUUvIvvsCm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-uUUvIvvsCm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUUvIvvsCm .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-uUUvIvvsCm .container {
    padding: 0 30px;
  }
}
.cid-uUUvIvvsCm .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uUUvIvvsCm .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUUvIvvsCm .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uUUvIvvsCm .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uUUvIvvsCm .image-wrapper img {
    height: 300px;
  }
}
.cid-uUUvIvvsCm .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uUUvIvvsCm .title-wrapper {
    height: auto;
  }
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uUUvIvvsCm .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uUUvIvvsCm .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uUUvIvvsCm .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uUUvIvvsCm .mbr-section-subtitle {
  color: #212529;
}
.cid-uUUvIvvsCm .mbr-section-title {
  color: #212529;
}
.cid-uUUvIvvsCm .mbr-text {
  color: #212529;
}
.cid-u5jHwNiMNO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-u5jHwNiMNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwNiMNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5jHwNiMNO .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u5jHwNiMNO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-u5jHwNiMNO .container {
    padding: 0 26px;
  }
}
.cid-u5jHwNiMNO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-u5jHwNiMNO .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u5jHwNiMNO .embla__slide a {
  display: block;
  width: 100%;
}
.cid-u5jHwNiMNO .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u5jHwNiMNO .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-u5jHwNiMNO .embla__button--next,
.cid-u5jHwNiMNO .embla__button--prev {
  display: flex;
}
.cid-u5jHwNiMNO .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u5jHwNiMNO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5jHwNiMNO .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-u5jHwNiMNO .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-u5jHwNiMNO .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-u5jHwNiMNO .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-u5jHwNiMNO .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-u5jHwNiMNO .embla {
  position: relative;
  width: 100%;
}
.cid-u5jHwNiMNO .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u5jHwNiMNO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u5jHwNiMNO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u5jHwNiMNO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u5jHwT0Aua {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-u5jHwT0Aua .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwT0Aua .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-u5jHwT0Aua .container {
    padding: 0 30px;
  }
}
.cid-u5jHwT0Aua .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwT0Aua .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwT0Aua .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwT0Aua .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwT0Aua .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwT0Aua .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwT0Aua .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwT0Aua .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwT0Aua .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwT0Aua .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwT0Aua .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwT0Aua .mbr-section-title {
  color: #212529;
}
.cid-u5jHwT0Aua .mbr-text {
  color: #212529;
}
.cid-uUUvUgv8fS {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUUvUgv8fS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUUvUgv8fS .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-uUUvUgv8fS .container {
    padding: 0 30px;
  }
}
.cid-uUUvUgv8fS .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uUUvUgv8fS .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUUvUgv8fS .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uUUvUgv8fS .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uUUvUgv8fS .image-wrapper img {
    height: 300px;
  }
}
.cid-uUUvUgv8fS .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uUUvUgv8fS .title-wrapper {
    height: auto;
  }
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uUUvUgv8fS .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uUUvUgv8fS .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uUUvUgv8fS .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uUUvUgv8fS .mbr-section-subtitle {
  color: #212529;
}
.cid-uUUvUgv8fS .mbr-section-title {
  color: #212529;
}
.cid-uUUvUgv8fS .mbr-text {
  color: #212529;
}
.cid-uUUwQVaATT {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/title-omoda.webp");
}
.cid-uUUwQVaATT .mbr-overlay {
  background: #ffffff;
  opacity: 0.3;
}
.cid-uUUwQVaATT .item:focus,
.cid-uUUwQVaATT span:focus {
  outline: none;
}
.cid-uUUwQVaATT .item {
  cursor: pointer;
}
.cid-uUUwQVaATT .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uUUwQVaATT .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uUUwQVaATT .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uUUwQVaATT .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.cid-uUUwQVaATT .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #2b2b2b;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uUUwQVaATT .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 15s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uUUwQVaATT .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 11s;
}
.cid-uUUwQVaATT .mbr-section-title,
.cid-uUUwQVaATT .mbr-section-subtitle {
  color: #000000;
}
.cid-uUUwXwp8wE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUUwXwp8wE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUUwXwp8wE .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-uUUwXwp8wE .container {
    padding: 0 30px;
  }
}
.cid-uUUwXwp8wE .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uUUwXwp8wE .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUUwXwp8wE .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uUUwXwp8wE .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uUUwXwp8wE .image-wrapper img {
    height: 300px;
  }
}
.cid-uUUwXwp8wE .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uUUwXwp8wE .title-wrapper {
    height: auto;
  }
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uUUwXwp8wE .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uUUwXwp8wE .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uUUwXwp8wE .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uUUwXwp8wE .mbr-section-subtitle {
  color: #212529;
}
.cid-uUUwXwp8wE .mbr-section-title {
  color: #212529;
}
.cid-uUUwXwp8wE .mbr-text {
  color: #212529;
}
.cid-u5UcOsF36U {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231023-153454.webp");
}
.cid-u5UcOsF36U .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-u5UcOsF36U .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-u5UcOsF36U .card-btn svg {
  transition: all 0.4s;
}
.cid-u5UcOsF36U .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-u5UcOsF36U .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-u5UcOsF36U .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-u5UcOsF36U .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-u5UcOsF36U .column {
  display: flex;
  flex-direction: column;
}
.cid-u5UcOsF36U .mbr-card-title,
.cid-u5UcOsF36U .mbr-text {
  color: #fafafa;
}
.cid-u5UcOsF36U .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-u5UcOsF36U .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-u5UcOsF36U .mbr-text DIV {
  text-align: left;
}
.cid-u5UcOsF36U .mbr-card-title {
  text-align: right;
}
.cid-u7Qj7okZ7O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7Qj7okZ7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7Qj7okZ7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7Qj7okZ7O .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-u7Qj7okZ7O .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-u7Qj7okZ7O .card:first-child {
    border: none;
  }
  .cid-u7Qj7okZ7O .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-u7Qj7okZ7O .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-u7Qj7okZ7O .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-u7Qj7okZ7O .card-wrapper .mbr-text,
.cid-u7Qj7okZ7O .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u7Qj7okZ7O .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u7Qj7okZ7O .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-u7Qj7okZ7O .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-u5jHwS0Pes {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-u5jHwS0Pes .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwS0Pes .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5jHwS0Pes .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u5jHwS0Pes .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-u5jHwS0Pes .container {
    padding: 0 26px;
  }
}
.cid-u5jHwS0Pes .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-u5jHwS0Pes .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u5jHwS0Pes .embla__slide a {
  display: block;
  width: 100%;
}
.cid-u5jHwS0Pes .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u5jHwS0Pes .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-u5jHwS0Pes .embla__button--next,
.cid-u5jHwS0Pes .embla__button--prev {
  display: flex;
}
.cid-u5jHwS0Pes .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u5jHwS0Pes .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5jHwS0Pes .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-u5jHwS0Pes .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-u5jHwS0Pes .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-u5jHwS0Pes .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-u5jHwS0Pes .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-u5jHwS0Pes .embla {
  position: relative;
  width: 100%;
}
.cid-u5jHwS0Pes .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u5jHwS0Pes .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u5jHwS0Pes .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u5jHwS0Pes .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u5jHwRchcz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-u5jHwRchcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwRchcz .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-u5jHwRchcz .container {
    padding: 0 30px;
  }
}
.cid-u5jHwRchcz .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwRchcz .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwRchcz .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwRchcz .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwRchcz .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwRchcz .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwRchcz .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwRchcz .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwRchcz .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwRchcz .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwRchcz .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwRchcz .mbr-section-title {
  color: #212529;
}
.cid-u5jHwRchcz .mbr-text {
  color: #212529;
}
.cid-u5UreQcM6S {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-u5UreQcM6S .column-wrapper {
  padding-left: 1.5rem;
}
.cid-u5UreQcM6S .row {
  flex-direction: row-reverse;
}
.cid-u5UreQcM6S .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-u5UreQcM6S .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-u5UreQcM6S .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-u5UreQcM6S .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-u5UreQcM6S .mbr-text,
.cid-u5UreQcM6S .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-u5UreQcM6S .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u5UreQcM6S .mbr-section-title DIV {
  text-align: center;
}
.cid-u5jHwUBW1k {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #7b7b8b;
}
.cid-u5jHwUBW1k .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwUBW1k .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-u5jHwUBW1k .container {
    padding: 0 30px;
  }
}
.cid-u5jHwUBW1k .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwUBW1k .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwUBW1k .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwUBW1k .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwUBW1k .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwUBW1k .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwUBW1k .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwUBW1k .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwUBW1k .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwUBW1k .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwUBW1k .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwUBW1k .mbr-section-title {
  color: #212529;
}
.cid-u5jHwUBW1k .mbr-text {
  color: #212529;
}
.cid-u5jHwVsDX4 {
  background-color: #7b7b8b;
}
.cid-u5jHwVsDX4 .mbr-section-head {
  position: absolute;
  transform: translate(5rem, 5rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-u5jHwVsDX4 .mbr-section-head {
    transform: translate(-1rem, 5rem) rotate(-90deg);
  }
}
.cid-u5jHwVsDX4 .wrap {
  padding: 0 1rem;
}
.cid-u5jHwVsDX4 .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-u5jHwVsDX4 img,
.cid-u5jHwVsDX4 .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-u5jHwVsDX4 img,
  .cid-u5jHwVsDX4 .item-img {
    height: 420px;
  }
}
.cid-u5jHwVsDX4 .col-10,
.cid-u5jHwVsDX4 .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-u5jHwVsDX4 .col-10 {
  background-color: #ffffff;
}
.cid-u5jHwVsDX4 .item:focus,
.cid-u5jHwVsDX4 span:focus {
  outline: none;
}
.cid-u5jHwVsDX4 .item-wrapper {
  position: relative;
}
.cid-u5jHwVsDX4 .embla {
  position: relative;
}
.cid-u5jHwVsDX4 .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-u5jHwVsDX4 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-u5jHwVsDX4 .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-u5jHwVsDX4 .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-u5jHwVsDX4 .embla__button--next,
.cid-u5jHwVsDX4 .embla__button--prev {
  display: flex;
}
.cid-u5jHwVsDX4 .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-u5jHwVsDX4 .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #00493c;
  border: 1px solid #00493c;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u5jHwVsDX4 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5jHwVsDX4 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5jHwVsDX4 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u5jHwVsDX4 .embla__button {
    top: auto;
  }
}
.cid-u5jHwVsDX4 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u5jHwVsDX4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-u5jHwVsDX4 .mbr-section-title {
    font-size: 64px;
  }
}
.cid-u5jHwVsDX4 .mbr-subtitle {
  color: #1b1b1b;
}
.cid-u5jHwVsDX4 .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-u5jHwVsDX4 .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-u5jHwVsDX4 .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-u5jHwVsDX4 .mbr-section-subtitle {
  color: #b6ffe7;
}
.cid-u5jHwWmSOy {
  background-color: #b6ffe7;
}
.cid-u5jHwWmSOy .mbr-section-head {
  position: absolute;
  transform: translate(5rem, 5rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-u5jHwWmSOy .mbr-section-head {
    transform: translate(-1rem, 5rem) rotate(-90deg);
  }
}
.cid-u5jHwWmSOy .wrap {
  padding: 0 1rem;
}
.cid-u5jHwWmSOy .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-u5jHwWmSOy img,
.cid-u5jHwWmSOy .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-u5jHwWmSOy img,
  .cid-u5jHwWmSOy .item-img {
    height: 420px;
  }
}
.cid-u5jHwWmSOy .col-10,
.cid-u5jHwWmSOy .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-u5jHwWmSOy .col-10 {
  background-color: #ffffff;
}
.cid-u5jHwWmSOy .item:focus,
.cid-u5jHwWmSOy span:focus {
  outline: none;
}
.cid-u5jHwWmSOy .item-wrapper {
  position: relative;
}
.cid-u5jHwWmSOy .embla {
  position: relative;
}
.cid-u5jHwWmSOy .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-u5jHwWmSOy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-u5jHwWmSOy .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-u5jHwWmSOy .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-u5jHwWmSOy .embla__button--next,
.cid-u5jHwWmSOy .embla__button--prev {
  display: flex;
}
.cid-u5jHwWmSOy .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-u5jHwWmSOy .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #00493c;
  border: 1px solid #00493c;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u5jHwWmSOy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5jHwWmSOy .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5jHwWmSOy .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u5jHwWmSOy .embla__button {
    top: auto;
  }
}
.cid-u5jHwWmSOy .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u5jHwWmSOy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-u5jHwWmSOy .mbr-section-title {
    font-size: 64px;
  }
}
.cid-u5jHwWmSOy .mbr-subtitle {
  color: #c40707;
}
.cid-u5jHwWmSOy .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-u5jHwWmSOy .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-u5jHwWmSOy .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-u5jHwWmSOy .mbr-section-subtitle {
  color: #1b1b1b;
}
.cid-u5jHwXqCj7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #b6ffe7;
}
.cid-u5jHwXqCj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwXqCj7 .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-u5jHwXqCj7 .container {
    padding: 0 30px;
  }
}
.cid-u5jHwXqCj7 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHwXqCj7 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHwXqCj7 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHwXqCj7 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHwXqCj7 .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHwXqCj7 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHwXqCj7 .title-wrapper {
    height: auto;
  }
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHwXqCj7 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHwXqCj7 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHwXqCj7 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHwXqCj7 .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHwXqCj7 .mbr-section-title {
  color: #212529;
}
.cid-u5jHwXqCj7 .mbr-text {
  color: #212529;
}
.cid-u5UqYf5RKO {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u5UqYf5RKO .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5UqYf5RKO .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5UqYf5RKO .mbr-section-title {
  color: #97b9ad;
  text-align: center;
}
.cid-u5jHwZ95LW {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/omoda-e5-safety.webp");
}
.cid-u5jHwZ95LW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHwZ95LW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5jHwZ95LW .mbr-section-title,
.cid-u5jHwZ95LW .mbr-text,
.cid-u5jHwZ95LW .card-title,
.cid-u5jHwZ95LW .num {
  color: #fafafa;
}
.cid-u5jHwZ95LW .title .num {
  width: 100%;
  display: block;
}
.cid-u5jHwZ95LW .title .card-title {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-u5jHwZ95LW .content-column {
    margin-bottom: 2rem;
  }
  .cid-u5jHwZ95LW .p-center {
    padding: 30px 0;
  }
}
.cid-u5jHwZ95LW .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-u5jHwZ95LW .rotate {
    top: 30px;
  }
}
.cid-u5jHwZ95LW .hide {
  display: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .cid-u5jHwZ95LW .tablet-padding {
    padding: 50px 0 0 0;
  }
}
.cid-u5jHx23xS8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #97b9ad;
}
.cid-u5jHx23xS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHx23xS8 .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-u5jHx23xS8 .container {
    padding: 0 30px;
  }
}
.cid-u5jHx23xS8 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHx23xS8 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHx23xS8 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHx23xS8 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHx23xS8 .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHx23xS8 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHx23xS8 .title-wrapper {
    height: auto;
  }
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHx23xS8 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHx23xS8 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHx23xS8 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHx23xS8 .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHx23xS8 .mbr-section-title {
  color: #212529;
}
.cid-u5jHx23xS8 .mbr-text {
  color: #212529;
}
.cid-u5UvDKcByQ {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u5UvDKcByQ .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5UvDKcByQ .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5UvDKcByQ .mbr-section-title {
  color: #97b9ad;
  text-align: center;
}
.cid-u5UuIj64pR {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-u5UuIj64pR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5UuIj64pR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5UuIj64pR .row {
  justify-content: center;
}
.cid-u5UuIj64pR .video-wrapper iframe {
  width: 100%;
}
.cid-u5UuIj64pR .title-wrapper {
  margin-bottom: 32px;
}
.cid-u5UuIj64pR .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u5UuIj64pR .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-u5UuIj64pR .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #97b9ad;
  z-index: -1;
}
.cid-u5UuIj64pR .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-u5UuIj64pR .video-block {
    margin-bottom: 24px;
  }
}
.cid-u5UuIj64pR .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-u5UuIj64pR .mbr-section-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5jHx00oJn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #97b9ad;
}
.cid-u5jHx00oJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5jHx00oJn .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-u5jHx00oJn .container {
    padding: 0 30px;
  }
}
.cid-u5jHx00oJn .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-u5jHx00oJn .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u5jHx00oJn .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-u5jHx00oJn .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u5jHx00oJn .image-wrapper img {
    height: 300px;
  }
}
.cid-u5jHx00oJn .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u5jHx00oJn .title-wrapper {
    height: auto;
  }
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-u5jHx00oJn .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u5jHx00oJn .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-u5jHx00oJn .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-u5jHx00oJn .mbr-section-subtitle {
  color: #212529;
}
.cid-u5jHx00oJn .mbr-section-title {
  color: #212529;
}
.cid-u5jHx00oJn .mbr-text {
  color: #212529;
}
.cid-u7QsSc98To {
  background-image: url("../../../assets/images/omoda-e5-spec.webp");
}
.cid-u7QsSc98To .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7QsSc98To .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7QsSc98To .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u7QsSc98To .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .container {
    padding: 0 16px;
  }
}
.cid-u7QsSc98To .desc-wrapper {
  margin-bottom: 16px;
}
.cid-u7QsSc98To .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-u7QsSc98To .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ffd751, #f27120);
}
.cid-u7QsSc98To .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u7QsSc98To .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-u7QsSc98To .title-wrapper .title-wrap img {
  height: 110px;
  width: 60px;
  border-radius: 0 !important;
  object-fit: cover;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .title-wrapper .title-wrap img {
    margin: 0 0 16px 0;
    display: inline-flex;
  }
}
.cid-u7QsSc98To .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7QsSc98To .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 116px;
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .items-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 16px;
  }
}
.cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap {
  display: flex;
  padding: 18px 0 14px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap .item-title {
  width: 50%;
  padding-right: 16px;
}
.cid-u7QsSc98To .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap .item-desc {
  width: 50%;
}
.cid-u7QsSc98To .mbr-desc {
  color: #1c1c1c;
}
.cid-u7QsSc98To .mbr-section-title {
  color: #1c1c1c;
}
.cid-u7QsSc98To .card-title {
  color: #ffffff;
}
.cid-u7QsSc98To .item-title {
  color: #1c1c1c;
}
.cid-u7QsSc98To .item-desc {
  color: #fafafa;
}
.cid-u7QsSc98To .mbr-section-title,
.cid-u7QsSc98To .title-wrapper {
  color: #fafafa;
}
.cid-u5jHx8maHL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-u5jHx8maHL .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-u5jHx8maHL .mbr-text {
  color: #97b9ad;
  text-align: left;
}
.cid-u5jHx8maHL .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-u7pL6BqKXV {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-u7pL6BqKXV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7pL6BqKXV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7pL6BqKXV .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-u7pL6BqKXV .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u7pL6BqKXV .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-u7pL6BqKXV .mbr-section-title {
  color: #730000;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7pL6BqKXV .mbr-section-title {
    width: 100%;
  }
}
.cid-u7pL6BqKXV .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-u7pL6BqKXV .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-u7pL6BqKXV .lists-col {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-u7pL6BqKXV .lists-col {
    width: 100%;
  }
}
.cid-u7pL6BqKXV .item-text-1 {
  color: #727272;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transition: .5s all;
  transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-u7pL6BqKXV .item-text-2 {
  color: #ee2524;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform-style: preserve-3d;
  transition: .5s all;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-u7pL6BqKXV .item-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-u7pL6BqKXV .item-wrap {
    padding-right: 0.5rem;
  }
}
.cid-u7pL6BqKXV .item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #f0f0f0;
  transition: .5s all;
}
.cid-u7pL6BqKXV .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  transition: .5s all;
  position: relative;
}
.cid-u7pL6BqKXV .item-container {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: .5s all;
}
.cid-u7pL6BqKXV .item-container:hover .item-content {
  padding: 3rem 1.5rem 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-u7pL6BqKXV .item-container:hover .item-content {
    padding: 3rem 0.7rem 3rem 1.4rem;
  }
}
.cid-u7pL6BqKXV .item-container:hover .item-text-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-u7pL6BqKXV .item-container:hover .item-text-2 {
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-u7pL6BqKXV .item-container:hover .item-overlay {
  height: 100%;
}
.cid-u7pL6BqKXV .item-info-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.cid-u7pL6BqKXV .mbr-text {
  color: #000000;
}
.cid-u7pL6BqKXV .number-text {
  color: #c4c4c8;
  margin-left: auto;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-u7pL6BqKXV .number-text {
    padding-left: 0.5rem;
  }
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-uerTVKxJ1b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uerTVKxJ1b nav.navbar {
  position: fixed;
}
.cid-uerTVKxJ1b .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-uerTVKxJ1b .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uerTVKxJ1b .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uerTVKxJ1b .dropdown-item:hover,
.cid-uerTVKxJ1b .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uerTVKxJ1b .dropdown-item:hover span {
  color: white;
}
.cid-uerTVKxJ1b .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uerTVKxJ1b .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uerTVKxJ1b .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uerTVKxJ1b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uerTVKxJ1b .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uerTVKxJ1b .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uerTVKxJ1b .container {
    flex-wrap: nowrap;
  }
}
.cid-uerTVKxJ1b .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uerTVKxJ1b .dropdown-menu,
.cid-uerTVKxJ1b .navbar.opened {
  background: #000000 !important;
}
.cid-uerTVKxJ1b .nav-item:focus,
.cid-uerTVKxJ1b .nav-link:focus {
  outline: none;
}
.cid-uerTVKxJ1b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uerTVKxJ1b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uerTVKxJ1b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uerTVKxJ1b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uerTVKxJ1b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uerTVKxJ1b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uerTVKxJ1b .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uerTVKxJ1b .navbar.opened {
  transition: all 0.3s;
}
.cid-uerTVKxJ1b .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uerTVKxJ1b .navbar .navbar-logo img {
  width: auto;
}
.cid-uerTVKxJ1b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uerTVKxJ1b .navbar.collapsed {
  justify-content: center;
}
.cid-uerTVKxJ1b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uerTVKxJ1b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uerTVKxJ1b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uerTVKxJ1b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uerTVKxJ1b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uerTVKxJ1b .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-uerTVKxJ1b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uerTVKxJ1b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uerTVKxJ1b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uerTVKxJ1b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uerTVKxJ1b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uerTVKxJ1b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uerTVKxJ1b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uerTVKxJ1b .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-uerTVKxJ1b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uerTVKxJ1b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uerTVKxJ1b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uerTVKxJ1b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uerTVKxJ1b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uerTVKxJ1b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uerTVKxJ1b .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uerTVKxJ1b .navbar.navbar-short {
  min-height: 60px;
}
.cid-uerTVKxJ1b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uerTVKxJ1b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uerTVKxJ1b .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uerTVKxJ1b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uerTVKxJ1b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uerTVKxJ1b .dropdown-item.active,
.cid-uerTVKxJ1b .dropdown-item:active {
  background-color: transparent;
}
.cid-uerTVKxJ1b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uerTVKxJ1b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uerTVKxJ1b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uerTVKxJ1b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uerTVKxJ1b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uerTVKxJ1b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uerTVKxJ1b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uerTVKxJ1b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uerTVKxJ1b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uerTVKxJ1b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uerTVKxJ1b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uerTVKxJ1b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uerTVKxJ1b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uerTVKxJ1b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uerTVKxJ1b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uerTVKxJ1b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uerTVKxJ1b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uerTVKxJ1b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uerTVKxJ1b .navbar-dropdown {
  position: fixed;
}
.cid-uerTVKxJ1b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uerTVKxJ1b .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-uerTVKxJ1b .navbar {
    height: 70px;
  }
  .cid-uerTVKxJ1b .navbar.opened {
    height: auto;
  }
  .cid-uerTVKxJ1b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uerTVM0jAa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tiggo7-hero-car.webp");
}
.cid-uerTVM0jAa .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-uerTVM0jAa .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-uerTVM0jAa .card-btn svg {
  transition: all 0.4s;
}
.cid-uerTVM0jAa .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-uerTVM0jAa .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-uerTVM0jAa .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-uerTVM0jAa .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-uerTVM0jAa .column {
  display: flex;
  flex-direction: column;
}
.cid-uerTVM0jAa .mbr-card-title,
.cid-uerTVM0jAa .mbr-text {
  color: #fafafa;
}
.cid-uerTVM0jAa .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-uerTVM0jAa .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-uerTVM0jAa .mbr-text DIV {
  text-align: center;
}
.cid-uerTVM0jAa .mbr-card-title {
  text-align: center;
}
.cid-uerTVMAbvW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uerTVMAbvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVMAbvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTVMAbvW .col-title {
  margin-bottom: 32px;
}
.cid-uerTVMAbvW .mbr-section-title {
  color: #24262b;
}
.cid-uerTVMAbvW .mbr-section-subtitle {
  color: #24262b;
}
.cid-uerTVMAbvW .cars-row {
  row-gap: 32px;
}
.cid-uerTVMAbvW .card {
  border-radius: 0;
}
.cid-uerTVMAbvW .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uerTVMAbvW .text-wrap {
  flex-grow: 1;
}
.cid-uerTVMAbvW .card-title {
  color: #24262b;
}
.cid-uerTVMAbvW .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uerTVMAbvW .mbr-section-btn {
  margin-top: 12px;
}
.cid-uerTVNarT9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #22a5e5;
}
.cid-uerTVNarT9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVNarT9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTVNarT9 .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uerTVNarT9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uerTVNarT9 .container {
    padding: 0 26px;
  }
}
.cid-uerTVNarT9 .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uerTVNarT9 .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uerTVNarT9 .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uerTVNarT9 .mbr-section-title {
  color: #ffffff;
}
.cid-uerTVNarT9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uerTVNarT9 .mbr-text {
  color: #cacaca;
}
.cid-uerTVNzNYZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #22a5e5;
}
.cid-uerTVNzNYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVNzNYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTVNzNYZ h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-uerTVNzNYZ h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-uerTVNzNYZ .mbr-section-title {
  color: #ffffff;
}
.cid-uerTVNZXLk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f1f4e9;
}
.cid-uerTVNZXLk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVNZXLk .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-uerTVNZXLk .container {
    padding: 0 30px;
  }
}
.cid-uerTVNZXLk .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVNZXLk .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVNZXLk .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVNZXLk .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVNZXLk .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVNZXLk .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVNZXLk .title-wrapper {
    height: auto;
  }
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVNZXLk .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVNZXLk .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVNZXLk .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVNZXLk .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVNZXLk .mbr-section-title {
  color: #212529;
}
.cid-uerTVNZXLk .mbr-text {
  color: #212529;
}
.cid-uerTVOyQLD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b2b2b;
}
.cid-uerTVOyQLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVOyQLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTVOyQLD h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-uerTVOyQLD h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-uerTVOyQLD .mbr-section-title {
  color: #ffffff;
}
.cid-uerTVOWnhH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/tiggo7-mainvisual.webp");
}
.cid-uerTVOWnhH .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uerTVOWnhH .row {
  flex-direction: row-reverse;
}
.cid-uerTVOWnhH .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uerTVOWnhH .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uerTVOWnhH .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uerTVOWnhH .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #161616;
}
.cid-uerTVOWnhH .mbr-text,
.cid-uerTVOWnhH .mbr-section-btn {
  text-align: left;
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .cid-uerTVOWnhH .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uerTVOWnhH .mbr-section-title DIV {
  text-align: center;
}
.cid-uerTVPkVaZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uerTVPkVaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVPkVaZ .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-uerTVPkVaZ .container {
    padding: 0 30px;
  }
}
.cid-uerTVPkVaZ .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVPkVaZ .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVPkVaZ .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVPkVaZ .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVPkVaZ .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVPkVaZ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVPkVaZ .title-wrapper {
    height: auto;
  }
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVPkVaZ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVPkVaZ .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVPkVaZ .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVPkVaZ .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVPkVaZ .mbr-section-title {
  color: #212529;
}
.cid-uerTVPkVaZ .mbr-text {
  color: #212529;
}
.cid-uerTVQPICX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uerTVQPICX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVQPICX .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-uerTVQPICX .container {
    padding: 0 30px;
  }
}
.cid-uerTVQPICX .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVQPICX .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVQPICX .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVQPICX .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVQPICX .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVQPICX .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVQPICX .title-wrapper {
    height: auto;
  }
}
.cid-uerTVQPICX .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVQPICX .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVQPICX .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVQPICX .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVQPICX .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVQPICX .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVQPICX .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVQPICX .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVQPICX .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVQPICX .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVQPICX .mbr-section-title {
  color: #212529;
}
.cid-uerTVQPICX .mbr-text {
  color: #212529;
}
.cid-uesJGelsbr {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uesJGelsbr .item:focus,
.cid-uesJGelsbr span:focus {
  outline: none;
}
.cid-uesJGelsbr .item {
  cursor: pointer;
}
.cid-uesJGelsbr .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uesJGelsbr .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uesJGelsbr .grid-container-1,
.cid-uesJGelsbr .grid-container-2,
.cid-uesJGelsbr .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uesJGelsbr .grid-container-1,
  .cid-uesJGelsbr .grid-container-2,
  .cid-uesJGelsbr .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uesJGelsbr .mbr-section-title {
  color: #000000;
}
.cid-uesJGelsbr .mbr-text,
.cid-uesJGelsbr .mbr-section-btn {
  color: #000000;
}
.cid-uesJGelsbr .content-head {
  max-width: 800px;
}
.cid-uesJGelsbr .container,
.cid-uesJGelsbr .container-fluid {
  overflow: hidden;
}
.cid-uesJGelsbr .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uesJGelsbr .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uesJGelsbr .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uesJGelsbr .grid-item img {
    min-width: 35vw;
  }
}
.cid-uesJGelsbr .grid-container-1,
.cid-uesJGelsbr .grid-container-2,
.cid-uesJGelsbr .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uesJGelsbr .grid-container-1 {
  align-items: flex-end;
}
.cid-uesJGelsbr .grid-container-2 {
  align-items: flex-start;
}
.cid-uesNxroRfU {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uesNxroRfU .item:focus,
.cid-uesNxroRfU span:focus {
  outline: none;
}
.cid-uesNxroRfU .item {
  cursor: pointer;
}
.cid-uesNxroRfU .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uesNxroRfU .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uesNxroRfU .grid-container-1,
.cid-uesNxroRfU .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uesNxroRfU .grid-container-1,
  .cid-uesNxroRfU .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uesNxroRfU .mbr-section-title {
  color: #000000;
}
.cid-uesNxroRfU .mbr-text,
.cid-uesNxroRfU .mbr-section-btn {
  color: #000000;
}
.cid-uesNxroRfU .content-head {
  max-width: 800px;
}
.cid-uesNxroRfU .container,
.cid-uesNxroRfU .container-fluid {
  overflow: hidden;
}
.cid-uesNxroRfU .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uesNxroRfU .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uesNxroRfU .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uesNxroRfU .grid-item img {
    min-width: 35vw;
  }
}
.cid-uesNxroRfU .grid-container-1,
.cid-uesNxroRfU .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uesNxroRfU .grid-container-1 {
  align-items: flex-end;
}
.cid-uesNxroRfU .grid-container-2 {
  align-items: flex-start;
}
.cid-uerTVReYVb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uerTVReYVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVReYVb .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-uerTVReYVb .container {
    padding: 0 30px;
  }
}
.cid-uerTVReYVb .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVReYVb .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVReYVb .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVReYVb .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVReYVb .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVReYVb .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVReYVb .title-wrapper {
    height: auto;
  }
}
.cid-uerTVReYVb .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVReYVb .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVReYVb .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVReYVb .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVReYVb .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVReYVb .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVReYVb .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVReYVb .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVReYVb .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVReYVb .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVReYVb .mbr-section-title {
  color: #212529;
}
.cid-uerTVReYVb .mbr-text {
  color: #212529;
}
.cid-uerTVUkaXQ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uerTVUkaXQ .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uerTVUkaXQ .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-uerTVUkaXQ .mbr-section-title {
  color: #22a5e5;
  text-align: center;
}
.cid-uerTVUDlZp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #9b9ba5;
}
.cid-uerTVUDlZp .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uerTVUDlZp .mbr-text {
  color: #e8e8e8;
  text-align: center;
}
.cid-uerTVUDlZp .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-uerTVUWkCe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uerTVUWkCe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVUWkCe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTVUWkCe .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uerTVUWkCe .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uerTVUWkCe .container {
    padding: 0 26px;
  }
}
.cid-uerTVUWkCe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 690px;
  max-width: 690px;
}
@media (max-width: 768px) {
  .cid-uerTVUWkCe .embla__slide {
    min-width: 85%;
    max-width: 85%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uerTVUWkCe .embla__slide a {
  display: block;
  width: 100%;
}
.cid-uerTVUWkCe .embla__slide a:hover .card-wrap .item-wrapper .image-wrap::before {
  opacity: .65;
}
.cid-uerTVUWkCe .embla__slide a:hover .card-wrap .item-wrapper .image-wrap .content-wrap {
  opacity: 1;
  transform: translateX(0);
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #2b2b2b;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap::before {
    opacity: .65;
  }
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-title {
  margin-bottom: 0;
}
.cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .card-desc {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uerTVUWkCe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uerTVUWkCe .embla__button--next,
.cid-uerTVUWkCe .embla__button--prev {
  display: flex;
}
.cid-uerTVUWkCe .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uerTVUWkCe .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uerTVUWkCe .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-uerTVUWkCe .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-uerTVUWkCe .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-uerTVUWkCe .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-uerTVUWkCe .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-uerTVUWkCe .embla {
  position: relative;
  width: 100%;
}
.cid-uerTVUWkCe .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uerTVUWkCe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uerTVUWkCe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uerTVUWkCe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uerTVUWkCe .card-title {
  color: #ffffff;
}
.cid-uerTVUWkCe .card-desc {
  color: #cacaca;
}
.cid-uerTVVUqjo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uerTVVUqjo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVVUqjo .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-uerTVVUqjo .container {
    padding: 0 30px;
  }
}
.cid-uerTVVUqjo .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVVUqjo .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVVUqjo .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVVUqjo .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVVUqjo .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVVUqjo .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVVUqjo .title-wrapper {
    height: auto;
  }
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVVUqjo .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVVUqjo .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVVUqjo .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVVUqjo .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVVUqjo .mbr-section-title {
  color: #212529;
}
.cid-uerTVVUqjo .mbr-text {
  color: #212529;
}
.cid-uerTVZXpL0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uerTVZXpL0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTVZXpL0 .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-uerTVZXpL0 .container {
    padding: 0 30px;
  }
}
.cid-uerTVZXpL0 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uerTVZXpL0 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uerTVZXpL0 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uerTVZXpL0 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uerTVZXpL0 .image-wrapper img {
    height: 300px;
  }
}
.cid-uerTVZXpL0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uerTVZXpL0 .title-wrapper {
    height: auto;
  }
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uerTVZXpL0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uerTVZXpL0 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uerTVZXpL0 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uerTVZXpL0 .mbr-section-subtitle {
  color: #212529;
}
.cid-uerTVZXpL0 .mbr-section-title {
  color: #212529;
}
.cid-uerTVZXpL0 .mbr-text {
  color: #212529;
}
.cid-uerTW1wzVa {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-uerTW1wzVa .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uerTW1wzVa .mbr-text {
  color: #22a5e5;
  text-align: left;
}
.cid-uerTW1wzVa .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-uerTW1YY0l {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uerTW1YY0l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uerTW1YY0l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uerTW1YY0l .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uerTW1YY0l .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uerTW1YY0l .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uerTW1YY0l .mbr-section-title {
  color: #522348;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uerTW1YY0l .mbr-section-title {
    width: 100%;
  }
}
.cid-uerTW1YY0l .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uerTW1YY0l .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uerTW1YY0l .lists-col {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uerTW1YY0l .lists-col {
    width: 100%;
  }
}
.cid-uerTW1YY0l .item-text-1 {
  color: #22a5e5;
  position: relative;
  z-index: 1;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-uerTW1YY0l .item-text-2 {
  color: #22a5e5;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: .5s all;
}
.cid-uerTW1YY0l .item-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uerTW1YY0l .item-wrap {
    padding-right: 0.5rem;
  }
}
.cid-uerTW1YY0l .item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #f0f0f0;
  transition: .5s all;
}
.cid-uerTW1YY0l .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  transition: .5s all;
  position: relative;
}
.cid-uerTW1YY0l .item-container {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: .5s all;
}
.cid-uerTW1YY0l .item-container:hover .item-content {
  padding: 3rem 1.5rem 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uerTW1YY0l .item-container:hover .item-content {
    padding: 3rem 0.7rem 3rem 1.4rem;
  }
}
.cid-uerTW1YY0l .item-container:hover .item-text-1 {
  transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uerTW1YY0l .item-container:hover .item-text-2 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uerTW1YY0l .item-container:hover .item-overlay {
  height: 100%;
}
.cid-uerTW1YY0l .item-info-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.cid-uerTW1YY0l .mbr-text {
  color: #000000;
}
.cid-uerTW1YY0l .number-text {
  color: #c4c4c8;
  margin-left: auto;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-uerTW1YY0l .number-text {
    padding-left: 0.5rem;
  }
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-uNBXOQFZOX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uNBXOQFZOX nav.navbar {
  position: fixed;
}
.cid-uNBXOQFZOX .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-uNBXOQFZOX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNBXOQFZOX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNBXOQFZOX .dropdown-item:hover,
.cid-uNBXOQFZOX .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uNBXOQFZOX .dropdown-item:hover span {
  color: white;
}
.cid-uNBXOQFZOX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNBXOQFZOX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNBXOQFZOX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNBXOQFZOX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNBXOQFZOX .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uNBXOQFZOX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNBXOQFZOX .container {
    flex-wrap: nowrap;
  }
}
.cid-uNBXOQFZOX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNBXOQFZOX .dropdown-menu,
.cid-uNBXOQFZOX .navbar.opened {
  background: #000000 !important;
}
.cid-uNBXOQFZOX .nav-item:focus,
.cid-uNBXOQFZOX .nav-link:focus {
  outline: none;
}
.cid-uNBXOQFZOX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNBXOQFZOX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNBXOQFZOX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNBXOQFZOX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNBXOQFZOX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNBXOQFZOX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNBXOQFZOX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uNBXOQFZOX .navbar.opened {
  transition: all 0.3s;
}
.cid-uNBXOQFZOX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNBXOQFZOX .navbar .navbar-logo img {
  width: auto;
}
.cid-uNBXOQFZOX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNBXOQFZOX .navbar.collapsed {
  justify-content: center;
}
.cid-uNBXOQFZOX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNBXOQFZOX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNBXOQFZOX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNBXOQFZOX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNBXOQFZOX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNBXOQFZOX .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-uNBXOQFZOX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNBXOQFZOX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNBXOQFZOX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNBXOQFZOX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNBXOQFZOX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNBXOQFZOX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNBXOQFZOX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNBXOQFZOX .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-uNBXOQFZOX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNBXOQFZOX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNBXOQFZOX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNBXOQFZOX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNBXOQFZOX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNBXOQFZOX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNBXOQFZOX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNBXOQFZOX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNBXOQFZOX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNBXOQFZOX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNBXOQFZOX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNBXOQFZOX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNBXOQFZOX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNBXOQFZOX .dropdown-item.active,
.cid-uNBXOQFZOX .dropdown-item:active {
  background-color: transparent;
}
.cid-uNBXOQFZOX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNBXOQFZOX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNBXOQFZOX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNBXOQFZOX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uNBXOQFZOX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNBXOQFZOX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNBXOQFZOX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNBXOQFZOX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNBXOQFZOX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNBXOQFZOX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uNBXOQFZOX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNBXOQFZOX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNBXOQFZOX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNBXOQFZOX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNBXOQFZOX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNBXOQFZOX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNBXOQFZOX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNBXOQFZOX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNBXOQFZOX .navbar-dropdown {
  position: fixed;
}
.cid-uNBXOQFZOX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNBXOQFZOX .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-uNBXOQFZOX .navbar {
    height: 70px;
  }
  .cid-uNBXOQFZOX .navbar.opened {
    height: auto;
  }
  .cid-uNBXOQFZOX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUvNGYnGx6 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uUvNGYnGx6 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uUvNGYnGx6 .row {
  flex-direction: row-reverse;
}
.cid-uUvNGYnGx6 .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uUvNGYnGx6 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uUvNGYnGx6 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uUvNGYnGx6 .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #980000;
}
.cid-uUvNGYnGx6 .mbr-text,
.cid-uUvNGYnGx6 .mbr-section-btn {
  text-align: center;
  color: #ca0100;
}
@media (max-width: 767px) {
  .cid-uUvNGYnGx6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uUvNGYnGx6 .mbr-section-title DIV {
  text-align: center;
}
.cid-uNBXOThM6e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNBXOThM6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOThM6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXOThM6e .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-uNBXOThM6e .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-uNBXOThM6e .card:first-child {
    border: none;
  }
  .cid-uNBXOThM6e .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-uNBXOThM6e .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXOThM6e .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-uNBXOThM6e .card-wrapper .mbr-text,
.cid-uNBXOThM6e .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uNBXOThM6e .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uNBXOThM6e .mbr-text {
  color: #161616;
  text-align: left;
}
.cid-uNBXOThM6e .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uNBXOU8G6q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #980000;
}
.cid-uNBXOU8G6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOU8G6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXOU8G6q h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-uNBXOU8G6q h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-uNBXOU8G6q .mbr-section-title {
  color: #ffffff;
}
.cid-uNBXOUDlD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f1f4e9;
}
.cid-uNBXOUDlD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOUDlD2 .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-uNBXOUDlD2 .container {
    padding: 0 30px;
  }
}
.cid-uNBXOUDlD2 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXOUDlD2 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXOUDlD2 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXOUDlD2 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXOUDlD2 .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXOUDlD2 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXOUDlD2 .title-wrapper {
    height: auto;
  }
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXOUDlD2 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXOUDlD2 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXOUDlD2 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXOUDlD2 .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXOUDlD2 .mbr-section-title {
  color: #212529;
}
.cid-uNBXOUDlD2 .mbr-text {
  color: #212529;
}
.cid-uNBXOVs93r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b2b2b;
}
.cid-uNBXOVs93r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOVs93r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXOVs93r h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-uNBXOVs93r h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-uNBXOVs93r .mbr-section-title {
  color: #ffffff;
}
.cid-uNBXP5K7dh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-uNBXP5K7dh .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uNBXP5K7dh .row {
  flex-direction: row-reverse;
}
.cid-uNBXP5K7dh .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uNBXP5K7dh .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uNBXP5K7dh .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uNBXP5K7dh .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-uNBXP5K7dh .mbr-text,
.cid-uNBXP5K7dh .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uNBXP5K7dh .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uNBXP5K7dh .mbr-section-title DIV {
  text-align: center;
}
.cid-uNBXOWY3Fo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNBXOWY3Fo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOWY3Fo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXOWY3Fo .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-uNBXOWY3Fo .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-uNBXOWY3Fo .card:first-child {
    border: none;
  }
  .cid-uNBXOWY3Fo .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-uNBXOWY3Fo .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXOWY3Fo .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-uNBXOWY3Fo .card-wrapper .mbr-text,
.cid-uNBXOWY3Fo .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uNBXOWY3Fo .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uNBXOWY3Fo .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-uNBXOWY3Fo .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uNBXOYi6tK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-uNBXOYi6tK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOYi6tK .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-uNBXOYi6tK .container {
    padding: 0 30px;
  }
}
.cid-uNBXOYi6tK .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXOYi6tK .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXOYi6tK .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXOYi6tK .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXOYi6tK .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXOYi6tK .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXOYi6tK .title-wrapper {
    height: auto;
  }
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXOYi6tK .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXOYi6tK .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXOYi6tK .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXOYi6tK .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXOYi6tK .mbr-section-title {
  color: #212529;
}
.cid-uNBXOYi6tK .mbr-text {
  color: #212529;
}
.cid-uNBXOYRRrR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-uNBXOYRRrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXOYRRrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXOYRRrR .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uNBXOYRRrR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uNBXOYRRrR .container {
    padding: 0 26px;
  }
}
.cid-uNBXOYRRrR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-uNBXOYRRrR .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uNBXOYRRrR .embla__slide a {
  display: block;
  width: 100%;
}
.cid-uNBXOYRRrR .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNBXOYRRrR .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uNBXOYRRrR .embla__button--next,
.cid-uNBXOYRRrR .embla__button--prev {
  display: flex;
}
.cid-uNBXOYRRrR .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNBXOYRRrR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNBXOYRRrR .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-uNBXOYRRrR .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-uNBXOYRRrR .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-uNBXOYRRrR .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-uNBXOYRRrR .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-uNBXOYRRrR .embla {
  position: relative;
  width: 100%;
}
.cid-uNBXOYRRrR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNBXOYRRrR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNBXOYRRrR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNBXOYRRrR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNBXP02Plo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #730000;
}
.cid-uNBXP02Plo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP02Plo .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-uNBXP02Plo .container {
    padding: 0 30px;
  }
}
.cid-uNBXP02Plo .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXP02Plo .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXP02Plo .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXP02Plo .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXP02Plo .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXP02Plo .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXP02Plo .title-wrapper {
    height: auto;
  }
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXP02Plo .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXP02Plo .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXP02Plo .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXP02Plo .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXP02Plo .mbr-section-title {
  color: #212529;
}
.cid-uNBXP02Plo .mbr-text {
  color: #212529;
}
.cid-uNBXP10FEa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-uNBXP10FEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP10FEa .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-uNBXP10FEa .container {
    padding: 0 30px;
  }
}
.cid-uNBXP10FEa .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXP10FEa .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXP10FEa .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXP10FEa .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXP10FEa .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXP10FEa .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXP10FEa .title-wrapper {
    height: auto;
  }
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXP10FEa .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXP10FEa .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXP10FEa .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXP10FEa .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXP10FEa .mbr-section-title {
  color: #212529;
}
.cid-uNBXP10FEa .mbr-text {
  color: #212529;
}
.cid-uNBXP1Gutf {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/exterior-crop-footer.webp");
}
.cid-uNBXP1Gutf .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-uNBXP1Gutf .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-uNBXP1Gutf .card-btn svg {
  transition: all 0.4s;
}
.cid-uNBXP1Gutf .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-uNBXP1Gutf .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-uNBXP1Gutf .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-uNBXP1Gutf .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-uNBXP1Gutf .column {
  display: flex;
  flex-direction: column;
}
.cid-uNBXP1Gutf .mbr-card-title,
.cid-uNBXP1Gutf .mbr-text {
  color: #fafafa;
}
.cid-uNBXP1Gutf .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-uNBXP1Gutf .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-uNBXP1Gutf .mbr-text DIV {
  text-align: center;
}
.cid-uNBXP1Gutf .mbr-card-title {
  text-align: right;
}
.cid-uNBXP2aD3h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNBXP2aD3h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP2aD3h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXP2aD3h .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-uNBXP2aD3h .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-uNBXP2aD3h .card:first-child {
    border: none;
  }
  .cid-uNBXP2aD3h .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-uNBXP2aD3h .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXP2aD3h .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-uNBXP2aD3h .card-wrapper .mbr-text,
.cid-uNBXP2aD3h .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uNBXP2aD3h .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uNBXP2aD3h .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-uNBXP2aD3h .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uNBXP2z36D {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-uNBXP2z36D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP2z36D .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-uNBXP2z36D .container {
    padding: 0 30px;
  }
}
.cid-uNBXP2z36D .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXP2z36D .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXP2z36D .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXP2z36D .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXP2z36D .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXP2z36D .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXP2z36D .title-wrapper {
    height: auto;
  }
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXP2z36D .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXP2z36D .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXP2z36D .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXP2z36D .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXP2z36D .mbr-section-title {
  color: #212529;
}
.cid-uNBXP2z36D .mbr-text {
  color: #212529;
}
.cid-uNBXP32f2Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #e8e8e8;
}
.cid-uNBXP32f2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP32f2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXP32f2Q .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uNBXP32f2Q .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uNBXP32f2Q .container {
    padding: 0 26px;
  }
}
.cid-uNBXP32f2Q .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-uNBXP32f2Q .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uNBXP32f2Q .embla__slide a {
  display: block;
  width: 100%;
}
.cid-uNBXP32f2Q .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNBXP32f2Q .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uNBXP32f2Q .embla__button--next,
.cid-uNBXP32f2Q .embla__button--prev {
  display: flex;
}
.cid-uNBXP32f2Q .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNBXP32f2Q .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNBXP32f2Q .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-uNBXP32f2Q .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-uNBXP32f2Q .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-uNBXP32f2Q .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-uNBXP32f2Q .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-uNBXP32f2Q .embla {
  position: relative;
  width: 100%;
}
.cid-uNBXP32f2Q .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNBXP32f2Q .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNBXP32f2Q .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNBXP32f2Q .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNBXP4oCtl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b1b1b;
}
.cid-uNBXP4oCtl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP4oCtl .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-uNBXP4oCtl .container {
    padding: 0 30px;
  }
}
.cid-uNBXP4oCtl .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXP4oCtl .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXP4oCtl .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXP4oCtl .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXP4oCtl .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXP4oCtl .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXP4oCtl .title-wrapper {
    height: auto;
  }
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXP4oCtl .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXP4oCtl .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXP4oCtl .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXP4oCtl .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXP4oCtl .mbr-section-title {
  color: #212529;
}
.cid-uNBXP4oCtl .mbr-text {
  color: #212529;
}
.cid-uNBXP4QCSQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/20231023-153454.webp");
}
.cid-uNBXP4QCSQ .card-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  padding-top: 0.5rem;
}
.cid-uNBXP4QCSQ .card-btn .rotate {
  transform: rotate(225deg);
  margin-top: 0.2rem;
  margin-left: 0;
}
.cid-uNBXP4QCSQ .card-btn svg {
  transition: all 0.4s;
}
.cid-uNBXP4QCSQ .card-btn:hover > svg {
  transform: rotate(315deg);
}
@media (max-width: 991px) {
  .cid-uNBXP4QCSQ .card-btn {
    right: 0;
    top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .cid-uNBXP4QCSQ .card-btn {
    width: 8rem;
    height: 8rem;
    right: 0;
    top: 1.5rem;
  }
  .cid-uNBXP4QCSQ .card-btn p {
    margin-bottom: 0.5rem;
  }
}
.cid-uNBXP4QCSQ .column {
  display: flex;
  flex-direction: column;
}
.cid-uNBXP4QCSQ .mbr-card-title,
.cid-uNBXP4QCSQ .mbr-text {
  color: #fafafa;
}
.cid-uNBXP4QCSQ .icon-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-uNBXP4QCSQ .icon-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cid-uNBXP4QCSQ .mbr-text DIV {
  text-align: left;
}
.cid-uNBXP4QCSQ .mbr-card-title {
  text-align: left;
}
.cid-uNBXP5jqea {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNBXP5jqea .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP5jqea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXP5jqea .row {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-uNBXP5jqea .card {
    padding: 0;
    border-left: 1px solid #97b9ad;
    border-radius: 0 !important;
  }
  .cid-uNBXP5jqea .card:first-child {
    border: none;
  }
  .cid-uNBXP5jqea .card:first-child .card-wrapper {
    padding: 80px 101px 80px 10px;
  }
  .cid-uNBXP5jqea .card:last-child .card-wrapper {
    padding: 80px 10px 80px 100px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXP5jqea .card-wrapper {
    padding: 13px 12px;
    margin-bottom: 10px;
  }
}
.cid-uNBXP5jqea .card-wrapper .mbr-text,
.cid-uNBXP5jqea .card-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uNBXP5jqea .card-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uNBXP5jqea .mbr-text {
  color: #161616;
  text-align: right;
}
.cid-uNBXP5jqea .mbr-text_2 {
  color: #161616;
  text-align: left;
}
.cid-uNBXP9SUj2 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNBXP9SUj2 .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uNBXP9SUj2 .mbr-text {
  color: #7b7b8b;
  text-align: center;
}
.cid-uNBXP9SUj2 .mbr-section-title {
  color: #97b9ad;
  text-align: center;
}
.cid-uU4v8kVq9T {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-uU4v8kVq9T .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uU4v8kVq9T .row {
  flex-direction: row-reverse;
}
.cid-uU4v8kVq9T .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uU4v8kVq9T .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uU4v8kVq9T .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uU4v8kVq9T .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-uU4v8kVq9T .mbr-text,
.cid-uU4v8kVq9T .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uU4v8kVq9T .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uU4v8kVq9T .mbr-section-title DIV {
  text-align: center;
}
.cid-uNBXP6JHSX {
  background-color: #7b7b8b;
}
.cid-uNBXP6JHSX .mbr-section-head {
  position: absolute;
  transform: translate(5rem, 8rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-uNBXP6JHSX .mbr-section-head {
    transform: translate(-1rem, 8rem) rotate(-90deg);
  }
}
.cid-uNBXP6JHSX .wrap {
  padding: 0 1rem;
}
.cid-uNBXP6JHSX .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-uNBXP6JHSX img,
.cid-uNBXP6JHSX .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-uNBXP6JHSX img,
  .cid-uNBXP6JHSX .item-img {
    height: 420px;
  }
}
.cid-uNBXP6JHSX .col-10,
.cid-uNBXP6JHSX .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-uNBXP6JHSX .col-10 {
  background-color: #ffffff;
}
.cid-uNBXP6JHSX .item:focus,
.cid-uNBXP6JHSX span:focus {
  outline: none;
}
.cid-uNBXP6JHSX .item-wrapper {
  position: relative;
}
.cid-uNBXP6JHSX .embla {
  position: relative;
}
.cid-uNBXP6JHSX .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uNBXP6JHSX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-uNBXP6JHSX .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXP6JHSX .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-uNBXP6JHSX .embla__button--next,
.cid-uNBXP6JHSX .embla__button--prev {
  display: flex;
}
.cid-uNBXP6JHSX .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-uNBXP6JHSX .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #980000;
  border: 1px solid #980000;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNBXP6JHSX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNBXP6JHSX .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNBXP6JHSX .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNBXP6JHSX .embla__button {
    top: auto;
  }
}
.cid-uNBXP6JHSX .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNBXP6JHSX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-uNBXP6JHSX .mbr-section-title {
    font-size: 64px;
  }
}
.cid-uNBXP6JHSX .mbr-subtitle {
  color: #1b1b1b;
}
.cid-uNBXP6JHSX .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uNBXP6JHSX .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uNBXP6JHSX .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uNBXP6JHSX .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uUvUz9AjoI {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #7b7b8b;
}
.cid-uUvUz9AjoI .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uUvUz9AjoI .row {
  flex-direction: row-reverse;
}
.cid-uUvUz9AjoI .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uUvUz9AjoI .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uUvUz9AjoI .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uUvUz9AjoI .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-uUvUz9AjoI .mbr-text,
.cid-uUvUz9AjoI .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uUvUz9AjoI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uUvUz9AjoI .mbr-section-title DIV {
  text-align: center;
}
.cid-uNBXP8dOsH {
  background-color: #b6ffe7;
}
.cid-uNBXP8dOsH .mbr-section-head {
  position: absolute;
  transform: translate(5rem, 5rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-uNBXP8dOsH .mbr-section-head {
    transform: translate(-1rem, 5rem) rotate(-90deg);
  }
}
.cid-uNBXP8dOsH .wrap {
  padding: 0 1rem;
}
.cid-uNBXP8dOsH .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-uNBXP8dOsH img,
.cid-uNBXP8dOsH .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-uNBXP8dOsH img,
  .cid-uNBXP8dOsH .item-img {
    height: 420px;
  }
}
.cid-uNBXP8dOsH .col-10,
.cid-uNBXP8dOsH .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-uNBXP8dOsH .col-10 {
  background-color: #ffffff;
}
.cid-uNBXP8dOsH .item:focus,
.cid-uNBXP8dOsH span:focus {
  outline: none;
}
.cid-uNBXP8dOsH .item-wrapper {
  position: relative;
}
.cid-uNBXP8dOsH .embla {
  position: relative;
}
.cid-uNBXP8dOsH .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uNBXP8dOsH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-uNBXP8dOsH .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-uNBXP8dOsH .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-uNBXP8dOsH .embla__button--next,
.cid-uNBXP8dOsH .embla__button--prev {
  display: flex;
}
.cid-uNBXP8dOsH .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-uNBXP8dOsH .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #9b9ba5;
  border: 1px solid #9b9ba5;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNBXP8dOsH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNBXP8dOsH .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNBXP8dOsH .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNBXP8dOsH .embla__button {
    top: auto;
  }
}
.cid-uNBXP8dOsH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNBXP8dOsH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-uNBXP8dOsH .mbr-section-title {
    font-size: 64px;
  }
}
.cid-uNBXP8dOsH .mbr-subtitle {
  color: #c40707;
}
.cid-uNBXP8dOsH .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uNBXP8dOsH .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uNBXP8dOsH .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uNBXP8dOsH .mbr-section-subtitle {
  color: #1b1b1b;
}
.cid-uNBXP9pmby {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #b6ffe7;
}
.cid-uNBXP9pmby .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXP9pmby .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-uNBXP9pmby .container {
    padding: 0 30px;
  }
}
.cid-uNBXP9pmby .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXP9pmby .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXP9pmby .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXP9pmby .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXP9pmby .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXP9pmby .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXP9pmby .title-wrapper {
    height: auto;
  }
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXP9pmby .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXP9pmby .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXP9pmby .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXP9pmby .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXP9pmby .mbr-section-title {
  color: #212529;
}
.cid-uNBXP9pmby .mbr-text {
  color: #212529;
}
.cid-uNBXPaefZL {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/omoda-e5-safety.webp");
}
.cid-uNBXPaefZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPaefZL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXPaefZL .mbr-section-title,
.cid-uNBXPaefZL .mbr-text,
.cid-uNBXPaefZL .card-title,
.cid-uNBXPaefZL .num {
  color: #fafafa;
}
.cid-uNBXPaefZL .title .num {
  width: 100%;
  display: block;
}
.cid-uNBXPaefZL .title .card-title {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uNBXPaefZL .content-column {
    margin-bottom: 2rem;
  }
  .cid-uNBXPaefZL .p-center {
    padding: 30px 0;
  }
}
.cid-uNBXPaefZL .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uNBXPaefZL .rotate {
    top: 30px;
  }
}
.cid-uNBXPaefZL .hide {
  display: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .cid-uNBXPaefZL .tablet-padding {
    padding: 50px 0 0 0;
  }
}
.cid-uNBXPaRn0a {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #97b9ad;
}
.cid-uNBXPaRn0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPaRn0a .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-uNBXPaRn0a .container {
    padding: 0 30px;
  }
}
.cid-uNBXPaRn0a .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXPaRn0a .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXPaRn0a .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXPaRn0a .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXPaRn0a .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXPaRn0a .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXPaRn0a .title-wrapper {
    height: auto;
  }
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXPaRn0a .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXPaRn0a .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXPaRn0a .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXPaRn0a .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXPaRn0a .mbr-section-title {
  color: #212529;
}
.cid-uNBXPaRn0a .mbr-text {
  color: #212529;
}
.cid-uNBXPbqhpV {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNBXPbqhpV .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uNBXPbqhpV .mbr-text {
  color: #2b2b2b;
  text-align: center;
}
.cid-uNBXPbqhpV .mbr-section-title {
  color: #97b9ad;
  text-align: center;
}
.cid-uNBXPbKw4G {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uNBXPbKw4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPbKw4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXPbKw4G .row {
  justify-content: center;
}
.cid-uNBXPbKw4G .video-wrapper iframe {
  width: 100%;
}
.cid-uNBXPbKw4G .title-wrapper {
  margin-bottom: 32px;
}
.cid-uNBXPbKw4G .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNBXPbKw4G .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uNBXPbKw4G .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #97b9ad;
  z-index: -1;
}
.cid-uNBXPbKw4G .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-uNBXPbKw4G .video-block {
    margin-bottom: 24px;
  }
}
.cid-uNBXPbKw4G .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-uNBXPbKw4G .mbr-section-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uNBXPc7gkr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #97b9ad;
}
.cid-uNBXPc7gkr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPc7gkr .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-uNBXPc7gkr .container {
    padding: 0 30px;
  }
}
.cid-uNBXPc7gkr .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uNBXPc7gkr .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNBXPc7gkr .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uNBXPc7gkr .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uNBXPc7gkr .image-wrapper img {
    height: 300px;
  }
}
.cid-uNBXPc7gkr .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNBXPc7gkr .title-wrapper {
    height: auto;
  }
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uNBXPc7gkr .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNBXPc7gkr .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uNBXPc7gkr .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uNBXPc7gkr .mbr-section-subtitle {
  color: #212529;
}
.cid-uNBXPc7gkr .mbr-section-title {
  color: #212529;
}
.cid-uNBXPc7gkr .mbr-text {
  color: #212529;
}
.cid-uNBXPcy98q {
  background-image: url("../../../assets/images/omoda-e5-spec.webp");
}
.cid-uNBXPcy98q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPcy98q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXPcy98q .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uNBXPcy98q .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .container {
    padding: 0 16px;
  }
}
.cid-uNBXPcy98q .desc-wrapper {
  margin-bottom: 16px;
}
.cid-uNBXPcy98q .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uNBXPcy98q .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ffd751, #f27120);
}
.cid-uNBXPcy98q .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uNBXPcy98q .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-uNBXPcy98q .title-wrapper .title-wrap img {
  height: 110px;
  width: 60px;
  border-radius: 0 !important;
  object-fit: cover;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .title-wrapper .title-wrap img {
    margin: 0 0 16px 0;
    display: inline-flex;
  }
}
.cid-uNBXPcy98q .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNBXPcy98q .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 116px;
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .items-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 16px;
  }
}
.cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap {
  display: flex;
  padding: 18px 0 14px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap .item-title {
  width: 50%;
  padding-right: 16px;
}
.cid-uNBXPcy98q .items-wrapper .item .item-wrapper .card-box .list-wrapper .item-wrap .item-desc {
  width: 50%;
}
.cid-uNBXPcy98q .mbr-desc {
  color: #1c1c1c;
}
.cid-uNBXPcy98q .mbr-section-title {
  color: #1c1c1c;
}
.cid-uNBXPcy98q .card-title {
  color: #ffffff;
}
.cid-uNBXPcy98q .item-title {
  color: #1c1c1c;
}
.cid-uNBXPcy98q .item-desc {
  color: #fafafa;
}
.cid-uNBXPcy98q .mbr-section-title,
.cid-uNBXPcy98q .title-wrapper {
  color: #fafafa;
}
.cid-uNBXPdddwT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-uNBXPdddwT .mbr-section-subtitle {
  color: #2b2b2b;
  text-align: center;
}
.cid-uNBXPdddwT .mbr-text {
  color: #97b9ad;
  text-align: left;
}
.cid-uNBXPdddwT .mbr-section-title {
  color: #730000;
  text-align: center;
}
.cid-uNBXPdBjBf {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uNBXPdBjBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXPdBjBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXPdBjBf .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-uNBXPdBjBf .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uNBXPdBjBf .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uNBXPdBjBf .mbr-section-title {
  color: #730000;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uNBXPdBjBf .mbr-section-title {
    width: 100%;
  }
}
.cid-uNBXPdBjBf .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uNBXPdBjBf .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uNBXPdBjBf .lists-col {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-uNBXPdBjBf .lists-col {
    width: 100%;
  }
}
.cid-uNBXPdBjBf .item-text-1 {
  color: #727272;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transition: .5s all;
  transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uNBXPdBjBf .item-text-2 {
  color: #ee2524;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform-style: preserve-3d;
  transition: .5s all;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uNBXPdBjBf .item-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uNBXPdBjBf .item-wrap {
    padding-right: 0.5rem;
  }
}
.cid-uNBXPdBjBf .item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #f0f0f0;
  transition: .5s all;
}
.cid-uNBXPdBjBf .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  transition: .5s all;
  position: relative;
}
.cid-uNBXPdBjBf .item-container {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: .5s all;
}
.cid-uNBXPdBjBf .item-container:hover .item-content {
  padding: 3rem 1.5rem 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uNBXPdBjBf .item-container:hover .item-content {
    padding: 3rem 0.7rem 3rem 1.4rem;
  }
}
.cid-uNBXPdBjBf .item-container:hover .item-text-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uNBXPdBjBf .item-container:hover .item-text-2 {
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uNBXPdBjBf .item-container:hover .item-overlay {
  height: 100%;
}
.cid-uNBXPdBjBf .item-info-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.cid-uNBXPdBjBf .mbr-text {
  color: #000000;
}
.cid-uNBXPdBjBf .number-text {
  color: #c4c4c8;
  margin-left: auto;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-uNBXPdBjBf .number-text {
    padding-left: 0.5rem;
  }
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-uRHEDsJXeU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uRHEDsJXeU nav.navbar {
  position: fixed;
}
.cid-uRHEDsJXeU .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-uRHEDsJXeU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRHEDsJXeU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRHEDsJXeU .dropdown-item:hover,
.cid-uRHEDsJXeU .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uRHEDsJXeU .dropdown-item:hover span {
  color: white;
}
.cid-uRHEDsJXeU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRHEDsJXeU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRHEDsJXeU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRHEDsJXeU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRHEDsJXeU .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uRHEDsJXeU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uRHEDsJXeU .container {
    flex-wrap: nowrap;
  }
}
.cid-uRHEDsJXeU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRHEDsJXeU .dropdown-menu,
.cid-uRHEDsJXeU .navbar.opened {
  background: #000000 !important;
}
.cid-uRHEDsJXeU .nav-item:focus,
.cid-uRHEDsJXeU .nav-link:focus {
  outline: none;
}
.cid-uRHEDsJXeU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRHEDsJXeU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRHEDsJXeU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRHEDsJXeU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRHEDsJXeU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRHEDsJXeU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRHEDsJXeU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uRHEDsJXeU .navbar.opened {
  transition: all 0.3s;
}
.cid-uRHEDsJXeU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRHEDsJXeU .navbar .navbar-logo img {
  width: auto;
}
.cid-uRHEDsJXeU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRHEDsJXeU .navbar.collapsed {
  justify-content: center;
}
.cid-uRHEDsJXeU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRHEDsJXeU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRHEDsJXeU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRHEDsJXeU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRHEDsJXeU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRHEDsJXeU .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-uRHEDsJXeU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRHEDsJXeU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRHEDsJXeU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRHEDsJXeU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRHEDsJXeU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRHEDsJXeU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRHEDsJXeU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRHEDsJXeU .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-uRHEDsJXeU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRHEDsJXeU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRHEDsJXeU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRHEDsJXeU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRHEDsJXeU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRHEDsJXeU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uRHEDsJXeU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uRHEDsJXeU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRHEDsJXeU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRHEDsJXeU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRHEDsJXeU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRHEDsJXeU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRHEDsJXeU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRHEDsJXeU .dropdown-item.active,
.cid-uRHEDsJXeU .dropdown-item:active {
  background-color: transparent;
}
.cid-uRHEDsJXeU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRHEDsJXeU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRHEDsJXeU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRHEDsJXeU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uRHEDsJXeU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRHEDsJXeU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRHEDsJXeU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRHEDsJXeU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRHEDsJXeU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRHEDsJXeU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uRHEDsJXeU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRHEDsJXeU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRHEDsJXeU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRHEDsJXeU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRHEDsJXeU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRHEDsJXeU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRHEDsJXeU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRHEDsJXeU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRHEDsJXeU .navbar-dropdown {
  position: fixed;
}
.cid-uRHEDsJXeU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRHEDsJXeU .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-uRHEDsJXeU .navbar {
    height: 70px;
  }
  .cid-uRHEDsJXeU .navbar.opened {
    height: auto;
  }
  .cid-uRHEDsJXeU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRHEDt41w2 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-uRHEDt41w2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDt41w2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDt41w2 .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-uRHEDt41w2 .container {
    padding: 0 50px !important;
  }
}
.cid-uRHEDt41w2 .row {
  align-items: stretch;
}
.cid-uRHEDt41w2 .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uRHEDt41w2 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .text-wrapper {
    padding-top: 30px;
  }
}
.cid-uRHEDt41w2 .card-title {
  color: #2b2b2b;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .card-title {
    text-align: center;
  }
}
.cid-uRHEDt41w2 .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .mbr-text {
    text-align: center;
  }
}
.cid-uRHEDt41w2 .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-uRHEDt41w2 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uRHEDt41w2 .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-uRHEDt41w2 .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-uRHEDt41w2 .image-wrapper {
    padding-right: 0;
  }
}
.cid-uRHEDt41w2 .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #9fdbf8;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-uRHEDt41w2 .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-uRHEDt41w2 .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-uRHEDt41w2 .mbr-text,
.cid-uRHEDt41w2 .mbr-section-btn {
  text-align: right;
}
.cid-uRHEDto1gt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-uRHEDto1gt .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uRHEDto1gt .row {
  flex-direction: row-reverse;
}
.cid-uRHEDto1gt .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uRHEDto1gt .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uRHEDto1gt .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uRHEDto1gt .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uRHEDto1gt .mbr-text,
.cid-uRHEDto1gt .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRHEDto1gt .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRHEDtKWR5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-uRHEDtKWR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDtKWR5 .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-uRHEDtKWR5 .container {
    padding: 0 30px;
  }
}
.cid-uRHEDtKWR5 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uRHEDtKWR5 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRHEDtKWR5 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uRHEDtKWR5 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uRHEDtKWR5 .image-wrapper img {
    height: 300px;
  }
}
.cid-uRHEDtKWR5 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHEDtKWR5 .title-wrapper {
    height: auto;
  }
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRHEDtKWR5 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uRHEDtKWR5 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uRHEDtKWR5 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uRHEDtKWR5 .mbr-section-subtitle {
  color: #212529;
}
.cid-uRHEDtKWR5 .mbr-section-title {
  color: #212529;
}
.cid-uRHEDtKWR5 .mbr-text {
  color: #212529;
}
.cid-uRHEDu5JR1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/root1628505001671876-1200x360.webp");
}
.cid-uRHEDu5JR1 .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-uRHEDu5JR1 .mbr-section-title,
.cid-uRHEDu5JR1 .mbr-section-subtitle {
  color: #232323;
}
.cid-uRHEDu5JR1 .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-uRHEDu5JR1 .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-uRHEDu5JR1 .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-uRHEDu5JR1 .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRHEDu5JR1 .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-uRHEDu5JR1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDu5JR1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDu5JR1 .mbr-section-title {
  color: #e8e8e8;
}
.cid-uRHEDupmfh {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/root1628505127746100-1200x360.webp");
}
.cid-uRHEDupmfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDupmfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDupmfh .container {
  max-width: 1140px;
}
.cid-uRHEDupmfh .row {
  justify-content: center;
}
.cid-uRHEDupmfh .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uRHEDupmfh .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-uRHEDupmfh .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-uRHEDupmfh .toggle-panel {
  width: 100%;
}
.cid-uRHEDupmfh .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-uRHEDupmfh .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uRHEDupmfh .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uRHEDupmfh .panel-title {
    align-items: flex-start;
  }
}
.cid-uRHEDupmfh .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uRHEDupmfh .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uRHEDupmfh .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uRHEDupmfh .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uRHEDupmfh .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uRHEDupmfh .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uRHEDupmfh .panel-body {
    width: 100%;
  }
}
.cid-uRHEDupmfh .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uRHEDupmfh .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-uRHEDuTd1H {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-uRHEDuTd1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDuTd1H .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-uRHEDuTd1H .container {
    padding: 0 30px;
  }
}
.cid-uRHEDuTd1H .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uRHEDuTd1H .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRHEDuTd1H .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uRHEDuTd1H .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uRHEDuTd1H .image-wrapper img {
    height: 300px;
  }
}
.cid-uRHEDuTd1H .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHEDuTd1H .title-wrapper {
    height: auto;
  }
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRHEDuTd1H .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uRHEDuTd1H .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uRHEDuTd1H .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uRHEDuTd1H .mbr-section-subtitle {
  color: #212529;
}
.cid-uRHEDuTd1H .mbr-section-title {
  color: #212529;
}
.cid-uRHEDuTd1H .mbr-text {
  color: #212529;
}
.cid-uRHEDvbA3w {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/root1628505127746100-1200x360.webp");
}
.cid-uRHEDvbA3w .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-uRHEDvbA3w .mbr-section-title,
.cid-uRHEDvbA3w .mbr-section-subtitle {
  color: #232323;
}
.cid-uRHEDvbA3w .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-uRHEDvbA3w .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-uRHEDvbA3w .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-uRHEDvbA3w .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRHEDvbA3w .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-uRHEDvbA3w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDvbA3w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDvbA3w .mbr-section-title {
  color: #e8e8e8;
}
.cid-uRHEDvv41c {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/energy-car3-1200x360.webp");
}
.cid-uRHEDvv41c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDvv41c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDvv41c .container {
  max-width: 1140px;
}
.cid-uRHEDvv41c .row {
  justify-content: center;
}
.cid-uRHEDvv41c .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uRHEDvv41c .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-uRHEDvv41c .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-uRHEDvv41c .toggle-panel {
  width: 100%;
}
.cid-uRHEDvv41c .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-uRHEDvv41c .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uRHEDvv41c .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uRHEDvv41c .panel-title {
    align-items: flex-start;
  }
}
.cid-uRHEDvv41c .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uRHEDvv41c .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uRHEDvv41c .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uRHEDvv41c .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uRHEDvv41c .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uRHEDvv41c .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uRHEDvv41c .panel-body {
    width: 100%;
  }
}
.cid-uRHEDvv41c .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uRHEDvv41c .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-uRHEDw2lol {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2b2b2b;
}
.cid-uRHEDw2lol .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDw2lol .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-uRHEDw2lol .container {
    padding: 0 30px;
  }
}
.cid-uRHEDw2lol .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uRHEDw2lol .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRHEDw2lol .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uRHEDw2lol .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uRHEDw2lol .image-wrapper img {
    height: 300px;
  }
}
.cid-uRHEDw2lol .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHEDw2lol .title-wrapper {
    height: auto;
  }
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRHEDw2lol .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uRHEDw2lol .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uRHEDw2lol .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uRHEDw2lol .mbr-section-subtitle {
  color: #212529;
}
.cid-uRHEDw2lol .mbr-section-title {
  color: #212529;
}
.cid-uRHEDw2lol .mbr-text {
  color: #212529;
}
.cid-uRHEDwoefZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/energy-car3-1200x360.webp");
}
.cid-uRHEDwoefZ .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-uRHEDwoefZ .mbr-section-title,
.cid-uRHEDwoefZ .mbr-section-subtitle {
  color: #232323;
}
.cid-uRHEDwoefZ .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-uRHEDwoefZ .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-uRHEDwoefZ .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-uRHEDwoefZ .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRHEDwoefZ .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-uRHEDwoefZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDwoefZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDwoefZ .mbr-section-title {
  color: #e8e8e8;
}
.cid-uRHEDwH1bH {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/r-2000x663.webp");
}
.cid-uRHEDwH1bH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDwH1bH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHEDwH1bH .container {
  max-width: 1140px;
}
.cid-uRHEDwH1bH .row {
  justify-content: center;
}
.cid-uRHEDwH1bH .title-container {
  padding: 0;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uRHEDwH1bH .mbr-section-title {
  color: #1d191f;
  margin-bottom: 0 !important;
}
.cid-uRHEDwH1bH .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.cid-uRHEDwH1bH .toggle-panel {
  width: 100%;
}
.cid-uRHEDwH1bH .card {
  border-radius: 0 !important;
  border-bottom: 1px solid #730000;
}
.cid-uRHEDwH1bH .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uRHEDwH1bH .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uRHEDwH1bH .panel-title {
    align-items: flex-start;
  }
}
.cid-uRHEDwH1bH .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 12px !important;
  color: #9fdbf8;
  background-color: #2b2b2b;
  border: 1px solid #9fdbf8;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-uRHEDwH1bH .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-uRHEDwH1bH .mbr-iconfont {
    margin-top: 10px;
  }
}
.cid-uRHEDwH1bH .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-uRHEDwH1bH .card-header {
  border-bottom: none;
  padding: 20px 0;
}
.cid-uRHEDwH1bH .panel-body {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  .cid-uRHEDwH1bH .panel-body {
    width: 100%;
  }
}
.cid-uRHEDwH1bH .panel-title-edit {
  color: #1D191F;
  text-align: left;
}
.cid-uRHEDwH1bH .panel-text {
  color: #1D191F;
  margin-bottom: 0;
}
.cid-uRHEDxekEZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uRHEDxekEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHEDxekEZ .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-uRHEDxekEZ .container {
    padding: 0 30px;
  }
}
.cid-uRHEDxekEZ .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uRHEDxekEZ .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRHEDxekEZ .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uRHEDxekEZ .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uRHEDxekEZ .image-wrapper img {
    height: 300px;
  }
}
.cid-uRHEDxekEZ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHEDxekEZ .title-wrapper {
    height: auto;
  }
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRHEDxekEZ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uRHEDxekEZ .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uRHEDxekEZ .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uRHEDxekEZ .mbr-section-subtitle {
  color: #212529;
}
.cid-uRHEDxekEZ .mbr-section-title {
  color: #212529;
}
.cid-uRHEDxekEZ .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
.cid-uSeVLFYcLf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uSeVLFYcLf nav.navbar {
  position: fixed;
}
.cid-uSeVLFYcLf .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-uSeVLFYcLf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSeVLFYcLf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSeVLFYcLf .dropdown-item:hover,
.cid-uSeVLFYcLf .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uSeVLFYcLf .dropdown-item:hover span {
  color: white;
}
.cid-uSeVLFYcLf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSeVLFYcLf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSeVLFYcLf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSeVLFYcLf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSeVLFYcLf .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uSeVLFYcLf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSeVLFYcLf .container {
    flex-wrap: nowrap;
  }
}
.cid-uSeVLFYcLf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSeVLFYcLf .dropdown-menu,
.cid-uSeVLFYcLf .navbar.opened {
  background: #000000 !important;
}
.cid-uSeVLFYcLf .nav-item:focus,
.cid-uSeVLFYcLf .nav-link:focus {
  outline: none;
}
.cid-uSeVLFYcLf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSeVLFYcLf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSeVLFYcLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSeVLFYcLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSeVLFYcLf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSeVLFYcLf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSeVLFYcLf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uSeVLFYcLf .navbar.opened {
  transition: all 0.3s;
}
.cid-uSeVLFYcLf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSeVLFYcLf .navbar .navbar-logo img {
  width: auto;
}
.cid-uSeVLFYcLf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSeVLFYcLf .navbar.collapsed {
  justify-content: center;
}
.cid-uSeVLFYcLf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSeVLFYcLf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSeVLFYcLf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSeVLFYcLf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSeVLFYcLf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSeVLFYcLf .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-uSeVLFYcLf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSeVLFYcLf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSeVLFYcLf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSeVLFYcLf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSeVLFYcLf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSeVLFYcLf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSeVLFYcLf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSeVLFYcLf .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-uSeVLFYcLf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSeVLFYcLf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSeVLFYcLf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSeVLFYcLf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSeVLFYcLf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSeVLFYcLf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSeVLFYcLf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSeVLFYcLf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSeVLFYcLf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSeVLFYcLf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSeVLFYcLf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSeVLFYcLf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSeVLFYcLf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSeVLFYcLf .dropdown-item.active,
.cid-uSeVLFYcLf .dropdown-item:active {
  background-color: transparent;
}
.cid-uSeVLFYcLf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSeVLFYcLf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSeVLFYcLf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSeVLFYcLf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSeVLFYcLf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSeVLFYcLf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSeVLFYcLf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSeVLFYcLf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSeVLFYcLf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSeVLFYcLf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uSeVLFYcLf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSeVLFYcLf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSeVLFYcLf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSeVLFYcLf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSeVLFYcLf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSeVLFYcLf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSeVLFYcLf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSeVLFYcLf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSeVLFYcLf .navbar-dropdown {
  position: fixed;
}
.cid-uSeVLFYcLf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSeVLFYcLf .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-uSeVLFYcLf .navbar {
    height: 70px;
  }
  .cid-uSeVLFYcLf .navbar.opened {
    height: auto;
  }
  .cid-uSeVLFYcLf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSeVLGcIJj {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSeVLGcIJj .item:focus,
.cid-uSeVLGcIJj span:focus {
  outline: none;
}
.cid-uSeVLGcIJj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSeVLGcIJj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSeVLGcIJj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSeVLGcIJj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSeVLGcIJj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSeVLGcIJj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSeVLGcIJj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSeVLGcIJj .mbr-section-title {
  color: #232323;
}
.cid-uSeVLGcIJj .mbr-text,
.cid-uSeVLGcIJj .mbr-section-btn {
  text-align: center;
}
.cid-uSeVLGcIJj .item-title {
  text-align: center;
}
.cid-uSeVLGcIJj .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uSeVLGwqGc {
  padding-top: 180px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-uSeVLGwqGc h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uSeVLGwqGc span {
  background-image: url("../../../assets/images/copy-of-omoda-left-3-quarter-rear.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uSeVLGwqGc .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSeVLGHiVY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSeVLGHiVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSeVLGHiVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSeVLGHiVY .mbr-section-title {
  text-align: center;
}
.cid-uSeVLGSkTg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSeVLGSkTg .item:focus,
.cid-uSeVLGSkTg span:focus {
  outline: none;
}
.cid-uSeVLGSkTg .item {
  cursor: pointer;
}
.cid-uSeVLGSkTg .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uSeVLGSkTg .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLGSkTg .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uSeVLGSkTg .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.cid-uSeVLGSkTg .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #262626;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLGSkTg .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 25s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLGSkTg .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 12s;
}
.cid-uSeVLGSkTg .mbr-section-title,
.cid-uSeVLGSkTg .mbr-section-subtitle {
  color: #000000;
}
.cid-uSeVLH3KB9 {
  background-image: url("../../../assets/images/tx.webp");
}
.cid-uSeVLH3KB9 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uSeVLH3KB9 .row {
  flex-direction: row-reverse;
}
.cid-uSeVLH3KB9 .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uSeVLH3KB9 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uSeVLH3KB9 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uSeVLH3KB9 .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uSeVLH3KB9 .mbr-text,
.cid-uSeVLH3KB9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSeVLH3KB9 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSeVLHhSdY {
  background-image: url("../../../assets/images/tiggo7pro-1.webp");
}
.cid-uSeVLHhSdY .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uSeVLHhSdY .row {
  flex-direction: row-reverse;
}
.cid-uSeVLHhSdY .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uSeVLHhSdY .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uSeVLHhSdY .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uSeVLHhSdY .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uSeVLHhSdY .mbr-text,
.cid-uSeVLHhSdY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSeVLHhSdY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSeVLHtAIg {
  background-image: url("../../../assets/images/tiggo8pro.webp");
}
.cid-uSeVLHtAIg .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uSeVLHtAIg .row {
  flex-direction: row-reverse;
}
.cid-uSeVLHtAIg .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uSeVLHtAIg .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uSeVLHtAIg .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uSeVLHtAIg .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uSeVLHtAIg .mbr-text,
.cid-uSeVLHtAIg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSeVLHtAIg .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSeVLHGzET {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uSeVLHGzET .mbr-text {
  color: #000000;
}
.cid-uSeVLHGzET .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSeVLHGzET .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uSeVLHQuv2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSeVLHQuv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSeVLHQuv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSeVLHQuv2 .mbr-section-title {
  text-align: center;
}
.cid-uSeVLHQuv2 .mbr-section-subtitle {
  text-align: center;
}
.cid-uSeVLI2xux {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSeVLI2xux .item:focus,
.cid-uSeVLI2xux span:focus {
  outline: none;
}
.cid-uSeVLI2xux .item {
  cursor: pointer;
}
.cid-uSeVLI2xux .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uSeVLI2xux .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLI2xux .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uSeVLI2xux .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 27s;
}
.cid-uSeVLI2xux .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #232323;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLI2xux .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 21s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uSeVLI2xux .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 18s;
}
.cid-uSeVLI2xux .mbr-section-title,
.cid-uSeVLI2xux .mbr-section-subtitle {
  color: #000000;
}
.cid-uSeVLId8km {
  background-image: url("../../../assets/images/omoda5-1.webp");
}
.cid-uSeVLId8km .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uSeVLId8km .row {
  flex-direction: row-reverse;
}
.cid-uSeVLId8km .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uSeVLId8km .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uSeVLId8km .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uSeVLId8km .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uSeVLId8km .mbr-text,
.cid-uSeVLId8km .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSeVLId8km .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSeVLIs57w {
  background-image: url("../../../assets/images/omodae5.webp");
}
.cid-uSeVLIs57w .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uSeVLIs57w .row {
  flex-direction: row-reverse;
}
.cid-uSeVLIs57w .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uSeVLIs57w .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uSeVLIs57w .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uSeVLIs57w .mbr-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.cid-uSeVLIs57w .mbr-text,
.cid-uSeVLIs57w .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSeVLIs57w .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSeVLIFifx {
  padding-top: 225px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-uSeVLIFifx h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uSeVLIFifx span {
  background-image: url("../../../assets/images/register-cross-bottom.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uSeVLIFifx .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSeVLIQyjy {
  background-color: #ffffff;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uSeVLIQyjy .carousel {
  height: 800px;
}
.cid-uSeVLIQyjy .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSeVLIQyjy .carousel-item,
.cid-uSeVLIQyjy .carousel-inner {
  height: 100%;
}
.cid-uSeVLIQyjy img,
.cid-uSeVLIQyjy .item-wrapper {
  border-radius: 0 !important;
}
.cid-uSeVLIQyjy .carousel-caption {
  bottom: 40px;
}
.cid-uSeVLIQyjy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uSeVLIQyjy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uSeVLIQyjy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uSeVLIQyjy .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uSeVLIQyjy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uSeVLIQyjy .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uSeVLIQyjy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uSeVLIQyjy .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSeVLIQyjy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSeVLIQyjy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSeVLIQyjy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSeVLIQyjy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uSeVLIQyjy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSeVLIQyjy .carousel-indicators li.active,
.cid-uSeVLIQyjy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSeVLIQyjy .carousel-indicators li::after,
.cid-uSeVLIQyjy .carousel-indicators li::before {
  content: none;
}
.cid-uSeVLIQyjy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSeVLIQyjy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSeVLIQyjy .mbr-section-subtitle,
  .cid-uSeVLIQyjy .mbr-section-text,
  .cid-uSeVLIQyjy .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSeVLJaSh6 {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uSeVLJaSh6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uSeVLJaSh6 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uSeVLJaSh6 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uSeVLJaSh6 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uSeVLJaSh6 .content-head {
  max-width: 800px;
}
.cid-uSeVLJaSh6 LABEL {
  color: #161616;
}
.cid-uSeVLJaSh6 .mbr-section-title {
  color: #161616;
}
.cid-uSeVLJsog8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #730000;
}
.cid-uSeVLJsog8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSeVLJsog8 .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-uSeVLJsog8 .container {
    padding: 0 30px;
  }
}
.cid-uSeVLJsog8 .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uSeVLJsog8 .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSeVLJsog8 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uSeVLJsog8 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uSeVLJsog8 .image-wrapper img {
    height: 300px;
  }
}
.cid-uSeVLJsog8 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uSeVLJsog8 .title-wrapper {
    height: auto;
  }
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uSeVLJsog8 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uSeVLJsog8 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uSeVLJsog8 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uSeVLJsog8 .mbr-section-subtitle {
  color: #212529;
}
.cid-uSeVLJsog8 .mbr-section-title {
  color: #212529;
}
.cid-uSeVLJsog8 .mbr-text {
  color: #212529;
}
.cid-uSR0Z5oXhq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161616;
}
.cid-uSR0Z5oXhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSR0Z5oXhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSR0Z5oXhq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .footer-col {
    flex-direction: column;
  }
}
.cid-uSR0Z5oXhq .row {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSR0Z5oXhq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uSR0Z5oXhq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSR0Z5oXhq .soc-item {
  margin: 8px;
}
.cid-uSR0Z5oXhq .soc-item a:hover .mbr-iconfont,
.cid-uSR0Z5oXhq .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uSR0Z5oXhq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #edefeb;
  color: #980000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uSR0Z5oXhq .row {
    text-align: center;
  }
  .cid-uSR0Z5oXhq .social-row {
    justify-content: center;
  }
}
.cid-uSR0Z5oXhq .list {
  list-style: none;
  padding-left: 0;
  color: #502274;
}
@media (max-width: 991px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSR0Z5oXhq .list {
    margin-bottom: 0rem;
  }
}
.cid-uSR0Z5oXhq .mbr-text {
  color: #bbbbbb;
}
.cid-uSR0Z5oXhq .mbr-section-subtitle {
  color: #000000;
}
.cid-uSR0Z5oXhq .list,
.cid-uSR0Z5oXhq .item-wrap {
  color: #232323;
}
.cid-uSR0Z5oXhq .copyright {
  color: #000000;
}
