.btn {
  border-width: 2px;
}
body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Figtree', sans-serif;
  font-size: 4.2rem;
  line-height: 0.85;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Figtree', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem !important;
    font-size: calc( 3.24rem + (4.2 - 3.24) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 0.55 * (3.24rem + (4.2 - 3.24) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #c71406 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c71406 !important;
  border-color: #c71406 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #730c03 !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #730c03 !important;
  border-color: #730c03 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ae42c8 !important;
  border-color: #ae42c8 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #78288b !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #78288b !important;
  border-color: #78288b !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #148cca !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #2a747e !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #2e2500 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffd10a !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #2e2500 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff5f0f !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #616161 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #cfcfcf !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #616161 !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #000000 !important;
  background-color: #272523  !important;
  border-color: #272523  !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
  color: #c71406 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #c71406;
  color: #c71406;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #730c03 !important;
  background-color: transparent!important;
  border-color: #730c03 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c71406 !important;
  border-color: #c71406 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ae42c8;
  color: #ae42c8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #78288b !important;
  background-color: transparent!important;
  border-color: #78288b !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ae42c8 !important;
  border-color: #ae42c8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #c71406 !important;
}
.text-secondary {
  color: #ae42c8 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #640a03 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #6e257f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c71406;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c71406;
  border-color: #c71406;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c71406;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fa5f53;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #c71406 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #c71406;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c71406;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c71406;
}
.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: #c71406;
  border-bottom-color: #c71406;
}
.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: #c71406 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ae42c8 !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='%23c71406' %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-tZ92Fl38mp {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-tZ92Fl38mp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ92Fl38mp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ92Fl38mp .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZ92Fl38mp .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ92Fl38mp .container {
    padding: 0 24px;
  }
}
.cid-tZ92Fl38mp .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-tZ92Fl38mp .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZ92Fl38mp .content-wrapper .mbr-section-btn .btn:hover,
.cid-tZ92Fl38mp .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZ92Fl38mp .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tZ92Fl38mp .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-tZ92Fl38mp .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-tZ92Fl38mp .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-tZ92Fl38mp .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-tZ92Fl38mp .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-tZ92Fl38mp .mbr-section-title {
  color: #141414;
}
.cid-tZ92Fl38mp .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-tZ92Fl38mp .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-tZ92Fl38mp .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZ92Fl38mp .mbr-section-title,
.cid-tZ92Fl38mp .mbr-section-btn {
  text-align: center;
}
.cid-tZ97b8ZUHg {
  background-image: url("../../../assets/images/car-wheels5-1200x799.jpg");
}
.cid-tZ97b8ZUHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ97b8ZUHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ97b8ZUHg .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZ97b8ZUHg .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZ97b8ZUHg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZ97b8ZUHg .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZ97b8ZUHg .container {
    padding: 0 16px;
  }
}
.cid-tZ97b8ZUHg .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-tZ97b8ZUHg .row {
    height: 350px;
  }
}
.cid-tZ8DRUELdK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZ8DRUELdK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ8DRUELdK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ8DRUELdK .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .container {
    padding: 0 6px;
  }
}
.cid-tZ8DRUELdK .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-tZ8DRUELdK .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tZ8DRUELdK .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-tZ8DRUELdK .row {
    padding: 0 30px;
  }
}
.cid-tZ8DRUELdK .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tZ8DRUELdK .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-tZ8DRUELdK .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
  padding-right: 0;
  padding-left: 22px;
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .content-wrapper .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-tZ8DRUELdK .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-tZ8DRUELdK .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-tZ8DRUELdK .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-tZ8DRUELdK .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-tZ8DRUELdK .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-tZ8DRUELdK .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tZ8DRUELdK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZ8DRUELdK .list {
  color: #131313;
}
.cid-tZ8DRUELdK .list,
.cid-tZ8DRUELdK .item-wrap {
  color: #000000;
}
.cid-tZ5I8sxNlF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-tZ5I8sxNlF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ5I8sxNlF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ5I8sxNlF .mbr-text,
.cid-tZ5I8sxNlF .mbr-section-btn {
  text-align: center;
}
.cid-tZ5I8sxNlF .mbr-section-title {
  text-align: center;
  color: #ae42c8;
}
.cid-tZ8EwFZi5j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZ8EwFZi5j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ8EwFZi5j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ8EwFZi5j .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZ8EwFZi5j .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ8EwFZi5j .container {
    padding: 0 24px;
  }
}
.cid-tZ8EwFZi5j .row {
  justify-content: space-between;
}
.cid-tZ8EwFZi5j .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-tZ8EwFZi5j .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 48px;
  background-color: #fff0b0;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-tZ8EwFZi5j .items-wrapper {
    display: block;
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ8EwFZi5j .items-wrapper .item {
    margin-bottom: 48px;
  }
  .cid-tZ8EwFZi5j .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .card-number {
  margin-bottom: 16px;
  opacity: .4;
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 22px;
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    opacity: 1;
  }
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:hover,
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:focus {
  opacity: 1;
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:hover,
.cid-tZ8EwFZi5j .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZ8EwFZi5j .mbr-section-title {
  color: #141414;
}
.cid-tZ8EwFZi5j .card-number {
  color: #141414;
}
.cid-tZ8EwFZi5j .card-title {
  color: #141414;
}
.cid-tZ8EwFZi5j .card-text {
  color: #141414;
  text-align: center;
}
.cid-tZ8EwFZi5j .card-title,
.cid-tZ8EwFZi5j .mbr-section-btn {
  text-align: center;
}
.cid-tZ5FieBX4X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-tZ5FieBX4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ5FieBX4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ5JQmMHSc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-tZ5JQmMHSc .display-2 {
    font-size: 2.1rem;
  }
}
.cid-tZ5JQmMHSc .item-img {
  padding: 0.5rem;
}
.cid-tZ5JQmMHSc img,
.cid-tZ5JQmMHSc .item-img {
  width: 100%;
  border-radius: 3rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tZ5JQmMHSc .item:focus,
.cid-tZ5JQmMHSc span:focus {
  outline: none;
}
.cid-tZ5JQmMHSc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZ5JQmMHSc .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZ5JQmMHSc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZ5JQmMHSc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZ5JQmMHSc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZ5JQmMHSc .mbr-section-title {
  color: #ffffff;
}
.cid-tZ5JQmMHSc .item-title {
  color: #ae42c8;
}
.cid-tZ5JQmMHSc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZ5JQmMHSc .mbr-text,
.cid-tZ5JQmMHSc .mbr-section-btn {
  text-align: center;
}
.cid-tZ93j8Keev {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-tZ93j8Keev .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ93j8Keev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ93j8Keev a {
  font-weight: 900;
}
.cid-tZ93j8Keev .text-wrapper {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-tZ93j8Keev .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tZ93j8Keev .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-tZ93j8Keev .image-wrapper {
  padding: 0;
}
.cid-tZ93j8Keev .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tZ93j8Keev .image-wrapper img {
    border-radius: 0;
  }
}
.cid-tZ93j8Keev .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tZ93j8Keev .mbr-text,
.cid-tZ93j8Keev .mbr-section-btn {
  color: #353535;
}
.cid-tgVZ97rwq2 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tgVZ97rwq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgVZ97rwq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgVZ97rwq2 .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-tgVZ97rwq2 .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-tgVZ97rwq2 .row {
  flex-direction: row-reverse;
}
.cid-tgVZ97rwq2 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tgVZ97rwq2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tgVZ97rwq2 img {
  border-radius: 2rem;
}
.cid-tgVZ97rwq2 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tgVZ97rwq2 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tgVZ97rwq2 .mbr-text,
.cid-tgVZ97rwq2 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-tZ5LtEcPrD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-tZ5LtEcPrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ5LtEcPrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ5LtEcPrD .mbr-text,
.cid-tZ5LtEcPrD .mbr-section-btn {
  text-align: center;
}
.cid-tZ5LtEcPrD .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tZ93ARis7i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZ93ARis7i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ93ARis7i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ93ARis7i .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZ93ARis7i .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ93ARis7i .container {
    padding: 0 24px;
  }
}
.cid-tZ93ARis7i .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-tZ93ARis7i .content-wrapper {
    padding: 0;
  }
}
.cid-tZ93ARis7i .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZ93ARis7i .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #f9e594;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-tZ93ARis7i .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-tZ93ARis7i .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tZ93ARis7i .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-tZ93ARis7i .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZ93ARis7i .mbr-section-title {
  color: #141414;
}
.cid-tZ93ARis7i .mbr-desc {
  color: #141414;
}
.cid-tZ93ARis7i .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZ93ARis7i .mbr-section-title,
.cid-tZ93ARis7i .mbr-section-btn {
  text-align: center;
}
.cid-tgVZfDO9xX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-tgVZfDO9xX .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-tgVZfDO9xX .panel-group {
  border: none;
}
.cid-tgVZfDO9xX .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-tgVZfDO9xX .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-tgVZfDO9xX .card {
    padding: 1rem;
  }
}
.cid-tgVZfDO9xX .card-header {
  border: none;
}
.cid-tgVZfDO9xX p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-tgVZfDO9xX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tgVZfDO9xX .panel-body,
.cid-tgVZfDO9xX .card-header {
  padding: 0rem 0;
}
.cid-tgVZfDO9xX .panel-title-edit {
  color: #000000;
}
.cid-tgVZfDO9xX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tgVZfDO9xX .panel-text {
  color: #000000;
}
.cid-tgVZfDO9xX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgVZfDO9xX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgVZfDO9xX H3 {
  text-align: center;
}
.cid-uqAzzhFGtJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uqAzzhFGtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAzzhFGtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAzzhFGtJ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAzzhFGtJ .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAzzhFGtJ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAzzhFGtJ .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAzzhFGtJ .container {
    padding: 0 24px;
  }
}
.cid-uqAzzhFGtJ .image-wrapper img {
  border: 1px solid #edeceb;
  object-fit: cover;
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uqAzzhFGtJ .image-wrapper img {
    height: 400px;
  }
}
.cid-tZ93Qw8Cwy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZ93Qw8Cwy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ93Qw8Cwy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ93Qw8Cwy .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZ93Qw8Cwy .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZ93Qw8Cwy .container {
    padding: 0 16px;
  }
}
.cid-tZ93Qw8Cwy .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tZ93Qw8Cwy .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-tZ93Qw8Cwy .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tZ93Qw8Cwy .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tZ93Qw8Cwy .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-tZ93Qw8Cwy .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tZ93Qw8Cwy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZ93Qw8Cwy .mbr-section-subtitle {
  color: #000000;
}
.cid-tZ93Qw8Cwy .mbr-text {
  color: #000000;
}
.cid-tZ94alBi3k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-tZ94alBi3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ94alBi3k .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-tZ94alBi3k .container {
    padding: 0 15px;
  }
}
.cid-tZ94alBi3k .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tZ94alBi3k .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZ94alBi3k .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tZ94alBi3k .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tZ94alBi3k .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tZ94alBi3k .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tZ94alBi3k .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZ94alBi3k .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tZ94alBi3k .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tZ94alBi3k .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tZ94alBi3k .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tZ94alBi3k .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tZ94alBi3k .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tZ94alBi3k .mbr-section-title {
  color: #ffffff;
}
.cid-tZ94alBi3k .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tZ94alBi3k .mbr-text {
  color: #000000;
}
.cid-tZ94alBi3k .mbr-section-title,
.cid-tZ94alBi3k .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tgVZjiEkRC {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tgVZjiEkRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgVZjiEkRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgVZjiEkRC .google-map {
  height: 35rem;
  position: relative;
}
.cid-tgVZjiEkRC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tgVZjiEkRC .google-map [data-state-details] {
  color: #6b6763;
  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-tgVZjiEkRC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tgVZjiEkRC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tgVZjiEkRC .mbr-section-title {
  color: #000000;
}
.cid-tZ98378GG7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-tZ98378GG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ98378GG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ98378GG7 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZ98378GG7 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ98378GG7 .container {
    padding: 0 24px;
  }
}
.cid-tZ98378GG7 .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-tZ98378GG7 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZ98378GG7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZ98378GG7 .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-tZ98378GG7 .lists-wrapper {
    display: block;
  }
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tZ98378GG7 .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-tZ98378GG7 .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tZ98378GG7 .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-tZ98378GG7 .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-tZ98378GG7 .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-tZ98378GG7 .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-tZ98378GG7 .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-tZ98378GG7 .mbr-section-title {
  color: #141414;
}
.cid-tZ98378GG7 .mbr-text {
  color: #141414;
}
.cid-tZ98378GG7 .list {
  color: #141414;
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZ5My8oxgQ {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-tZ5My8oxgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ5My8oxgQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ5My8oxgQ .arrow {
  font-size: 3rem;
  color: #ae42c8;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-tZ5My8oxgQ .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-tZ5My8oxgQ .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tZ5My8oxgQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tZ5My8oxgQ img {
  border-radius: 2rem;
}
.cid-tZ5My8oxgQ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tZ5My8oxgQ .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tZ5My8oxgQ .mbr-text,
.cid-tZ5My8oxgQ .mbr-section-btn {
  color: #000000;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-tZ5MMXsu2S {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZ5MMXsu2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ5MMXsu2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ5MMXsu2S .google-map {
  height: 35rem;
  position: relative;
}
.cid-tZ5MMXsu2S .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tZ5MMXsu2S .google-map [data-state-details] {
  color: #6b6763;
  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-tZ5MMXsu2S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZ5MMXsu2S .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZ5MMXsu2S .mbr-section-title {
  color: #000000;
}
.cid-tZ98378GG7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-tZ98378GG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZ98378GG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZ98378GG7 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZ98378GG7 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZ98378GG7 .container {
    padding: 0 24px;
  }
}
.cid-tZ98378GG7 .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-tZ98378GG7 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-tZ98378GG7 .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZ98378GG7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZ98378GG7 .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-tZ98378GG7 .lists-wrapper {
    display: block;
  }
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-tZ98378GG7 .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tZ98378GG7 .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-tZ98378GG7 .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tZ98378GG7 .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-tZ98378GG7 .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-tZ98378GG7 .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-tZ98378GG7 .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-tZ98378GG7 .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-tZ98378GG7 .mbr-section-title {
  color: #141414;
}
.cid-tZ98378GG7 .mbr-text {
  color: #141414;
}
.cid-tZ98378GG7 .list {
  color: #141414;
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAufk3Jsx {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAufk3Jsx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAufk3Jsx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAufk3Jsx .arrow {
  font-size: 3rem;
  color: #ae42c8;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-uqAufk3Jsx .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-uqAufk3Jsx .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uqAufk3Jsx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqAufk3Jsx img {
  border-radius: 2rem;
}
.cid-uqAufk3Jsx .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAufk3Jsx .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-uqAufk3Jsx .mbr-text,
.cid-uqAufk3Jsx .mbr-section-btn {
  color: #000000;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-uqAufkwrdl {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqAufkwrdl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAufkwrdl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAufkwrdl .google-map {
  height: 35rem;
  position: relative;
}
.cid-uqAufkwrdl .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqAufkwrdl .google-map [data-state-details] {
  color: #6b6763;
  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-uqAufkwrdl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqAufkwrdl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqAufkwrdl .mbr-section-title {
  color: #000000;
}
.cid-uqAufkVfRE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-uqAufkVfRE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAufkVfRE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAufkVfRE .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAufkVfRE .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAufkVfRE .container {
    padding: 0 24px;
  }
}
.cid-uqAufkVfRE .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-uqAufkVfRE .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uqAufkVfRE .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-uqAufkVfRE .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAufkVfRE .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAufkVfRE .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-uqAufkVfRE .lists-wrapper {
    display: block;
  }
}
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uqAufkVfRE .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAufkVfRE .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-uqAufkVfRE .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAufkVfRE .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAufkVfRE .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAufkVfRE .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAufkVfRE .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAufkVfRE .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAufkVfRE .mbr-section-title {
  color: #141414;
}
.cid-uqAufkVfRE .mbr-text {
  color: #141414;
}
.cid-uqAufkVfRE .list {
  color: #141414;
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAuM78j7E {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqAuM78j7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuM78j7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuM78j7E .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAuM78j7E .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM78j7E .container {
    padding: 0 24px;
  }
}
.cid-uqAuM78j7E .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uqAuM78j7E .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqAuM78j7E .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqAuM78j7E .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uqAuM78j7E .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAuM78j7E .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uqAuM78j7E .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAuM78j7E .content-wrapper .mbr-section-btn .btn:hover,
.cid-uqAuM78j7E .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAuM78j7E .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAuM78j7E .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAuM78j7E .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAuM78j7E .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAuM78j7E .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAuM78j7E .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAuM78j7E .mbr-section-title {
  color: #141414;
}
.cid-uqAuM78j7E .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uqAuM78j7E .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uqAuM78j7E .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAuM78j7E .mbr-section-title,
.cid-uqAuM78j7E .mbr-section-btn {
  text-align: center;
}
.cid-uqAuM7UyMr {
  background-image: url("../../../assets/images/car-wheels5-1200x799.jpg");
}
.cid-uqAuM7UyMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuM7UyMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuM7UyMr .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAuM7UyMr .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAuM7UyMr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM7UyMr .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAuM7UyMr .container {
    padding: 0 16px;
  }
}
.cid-uqAuM7UyMr .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uqAuM7UyMr .row {
    height: 350px;
  }
}
.cid-uqAuM8igC3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAuM8igC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuM8igC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuM8igC3 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .container {
    padding: 0 6px;
  }
}
.cid-uqAuM8igC3 .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uqAuM8igC3 .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAuM8igC3 .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uqAuM8igC3 .row {
    padding: 0 30px;
  }
}
.cid-uqAuM8igC3 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uqAuM8igC3 .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uqAuM8igC3 .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
  padding-right: 0;
  padding-left: 22px;
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .content-wrapper .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uqAuM8igC3 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uqAuM8igC3 .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uqAuM8igC3 .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uqAuM8igC3 .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uqAuM8igC3 .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uqAuM8igC3 .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAuM8igC3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAuM8igC3 .list {
  color: #131313;
}
.cid-uqAuM8igC3 .list,
.cid-uqAuM8igC3 .item-wrap {
  color: #000000;
}
.cid-uqAuM8POWx {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAuM8POWx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuM8POWx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuM8POWx .mbr-text,
.cid-uqAuM8POWx .mbr-section-btn {
  text-align: center;
}
.cid-uqAuM8POWx .mbr-section-title {
  text-align: center;
  color: #ae42c8;
}
.cid-uqAuM9kG7g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAuM9kG7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuM9kG7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuM9kG7g .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAuM9kG7g .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM9kG7g .container {
    padding: 0 24px;
  }
}
.cid-uqAuM9kG7g .row {
  justify-content: space-between;
}
.cid-uqAuM9kG7g .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uqAuM9kG7g .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 48px;
  background-color: #fff0b0;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uqAuM9kG7g .items-wrapper {
    display: block;
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuM9kG7g .items-wrapper .item {
    margin-bottom: 48px;
  }
  .cid-uqAuM9kG7g .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .card-number {
  margin-bottom: 16px;
  opacity: .4;
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 22px;
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:hover,
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:focus {
  opacity: 1;
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:hover,
.cid-uqAuM9kG7g .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAuM9kG7g .mbr-section-title {
  color: #141414;
}
.cid-uqAuM9kG7g .card-number {
  color: #141414;
}
.cid-uqAuM9kG7g .card-title {
  color: #141414;
}
.cid-uqAuM9kG7g .card-text {
  color: #141414;
  text-align: center;
}
.cid-uqAuM9kG7g .card-title,
.cid-uqAuM9kG7g .mbr-section-btn {
  text-align: center;
}
.cid-uqAuMax2fM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAuMax2fM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMax2fM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMbidha {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uqAuMbidha .display-2 {
    font-size: 2.1rem;
  }
}
.cid-uqAuMbidha .item-img {
  padding: 0.5rem;
}
.cid-uqAuMbidha img,
.cid-uqAuMbidha .item-img {
  width: 100%;
  border-radius: 3rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uqAuMbidha .item:focus,
.cid-uqAuMbidha span:focus {
  outline: none;
}
.cid-uqAuMbidha .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqAuMbidha .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqAuMbidha .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqAuMbidha .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uqAuMbidha .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqAuMbidha .mbr-section-title {
  color: #ffffff;
}
.cid-uqAuMbidha .item-title {
  color: #ae42c8;
}
.cid-uqAuMbidha .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqAuMbidha .mbr-text,
.cid-uqAuMbidha .mbr-section-btn {
  text-align: center;
}
.cid-uqAuMcqagF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAuMcqagF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMcqagF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMcqagF a {
  font-weight: 900;
}
.cid-uqAuMcqagF .text-wrapper {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-uqAuMcqagF .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uqAuMcqagF .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uqAuMcqagF .image-wrapper {
  padding: 0;
}
.cid-uqAuMcqagF .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqAuMcqagF .image-wrapper img {
    border-radius: 0;
  }
}
.cid-uqAuMcqagF .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uqAuMcqagF .mbr-text,
.cid-uqAuMcqagF .mbr-section-btn {
  color: #353535;
}
.cid-uqAuMdcOO4 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAuMdcOO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMdcOO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMdcOO4 .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-uqAuMdcOO4 .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-uqAuMdcOO4 .row {
  flex-direction: row-reverse;
}
.cid-uqAuMdcOO4 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uqAuMdcOO4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqAuMdcOO4 img {
  border-radius: 2rem;
}
.cid-uqAuMdcOO4 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAuMdcOO4 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uqAuMdcOO4 .mbr-text,
.cid-uqAuMdcOO4 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-uqAuMdXNW1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAuMdXNW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMdXNW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMdXNW1 .mbr-text,
.cid-uqAuMdXNW1 .mbr-section-btn {
  text-align: center;
}
.cid-uqAuMdXNW1 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAuMeIQC4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAuMeIQC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMeIQC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMeIQC4 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAuMeIQC4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuMeIQC4 .container {
    padding: 0 24px;
  }
}
.cid-uqAuMeIQC4 .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-uqAuMeIQC4 .content-wrapper {
    padding: 0;
  }
}
.cid-uqAuMeIQC4 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #f9e594;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-uqAuMeIQC4 .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-uqAuMeIQC4 .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uqAuMeIQC4 .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-uqAuMeIQC4 .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAuMeIQC4 .mbr-section-title {
  color: #141414;
}
.cid-uqAuMeIQC4 .mbr-desc {
  color: #141414;
}
.cid-uqAuMeIQC4 .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAuMeIQC4 .mbr-section-title,
.cid-uqAuMeIQC4 .mbr-section-btn {
  text-align: center;
}
.cid-uqAuMfprvv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAuMfprvv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAuMfprvv .panel-group {
  border: none;
}
.cid-uqAuMfprvv .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAuMfprvv .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAuMfprvv .card {
    padding: 1rem;
  }
}
.cid-uqAuMfprvv .card-header {
  border: none;
}
.cid-uqAuMfprvv p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAuMfprvv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAuMfprvv .panel-body,
.cid-uqAuMfprvv .card-header {
  padding: 0rem 0;
}
.cid-uqAuMfprvv .panel-title-edit {
  color: #000000;
}
.cid-uqAuMfprvv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAuMfprvv .panel-text {
  color: #000000;
}
.cid-uqAuMfprvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMfprvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMfprvv H3 {
  text-align: center;
}
.cid-uqAzXd0b6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uqAzXd0b6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAzXd0b6c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAzXd0b6c .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAzXd0b6c .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAzXd0b6c .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAzXd0b6c .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAzXd0b6c .container {
    padding: 0 24px;
  }
}
.cid-uqAzXd0b6c .image-wrapper img {
  border: 1px solid #edeceb;
  object-fit: cover;
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uqAzXd0b6c .image-wrapper img {
    height: 400px;
  }
}
.cid-uqAuMgMlQ8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqAuMgMlQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMgMlQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMgMlQ8 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAuMgMlQ8 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAuMgMlQ8 .container {
    padding: 0 16px;
  }
}
.cid-uqAuMgMlQ8 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAuMgMlQ8 .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-uqAuMgMlQ8 .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uqAuMgMlQ8 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqAuMgMlQ8 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqAuMgMlQ8 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uqAuMgMlQ8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAuMgMlQ8 .mbr-section-subtitle {
  color: #000000;
}
.cid-uqAuMgMlQ8 .mbr-text {
  color: #000000;
}
.cid-uqAuMhAtBt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAuMhAtBt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMhAtBt .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-uqAuMhAtBt .container {
    padding: 0 15px;
  }
}
.cid-uqAuMhAtBt .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uqAuMhAtBt .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAuMhAtBt .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uqAuMhAtBt .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uqAuMhAtBt .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqAuMhAtBt .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAuMhAtBt .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAuMhAtBt .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uqAuMhAtBt .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uqAuMhAtBt .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uqAuMhAtBt .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uqAuMhAtBt .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAuMhAtBt .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uqAuMhAtBt .mbr-section-title {
  color: #ffffff;
}
.cid-uqAuMhAtBt .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uqAuMhAtBt .mbr-text {
  color: #000000;
}
.cid-uqAuMhAtBt .mbr-section-title,
.cid-uqAuMhAtBt .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uqAx8Q5Tow {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqAx8Q5Tow .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAx8Q5Tow .panel-group {
  border: none;
}
.cid-uqAx8Q5Tow .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAx8Q5Tow .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAx8Q5Tow .card {
    padding: 1rem;
  }
}
.cid-uqAx8Q5Tow .card-header {
  border: none;
}
.cid-uqAx8Q5Tow p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAx8Q5Tow .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAx8Q5Tow .panel-body,
.cid-uqAx8Q5Tow .card-header {
  padding: 0rem 0;
}
.cid-uqAx8Q5Tow .panel-title-edit {
  color: #000000;
}
.cid-uqAx8Q5Tow .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAx8Q5Tow .panel-text {
  color: #000000;
}
.cid-uqAx8Q5Tow .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAx8Q5Tow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAx8Q5Tow H3 {
  text-align: center;
}
.cid-uqAuMiisg3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uqAuMiisg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMiisg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMiisg3 .google-map {
  height: 35rem;
  position: relative;
}
.cid-uqAuMiisg3 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqAuMiisg3 .google-map [data-state-details] {
  color: #6b6763;
  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-uqAuMiisg3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqAuMiisg3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqAuMiisg3 .mbr-section-title {
  color: #000000;
}
.cid-uqAuMj85SK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-uqAuMj85SK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAuMj85SK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAuMj85SK .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAuMj85SK .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAuMj85SK .container {
    padding: 0 24px;
  }
}
.cid-uqAuMj85SK .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-uqAuMj85SK .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uqAuMj85SK .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-uqAuMj85SK .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAuMj85SK .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAuMj85SK .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-uqAuMj85SK .lists-wrapper {
    display: block;
  }
}
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uqAuMj85SK .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAuMj85SK .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-uqAuMj85SK .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAuMj85SK .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAuMj85SK .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAuMj85SK .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAuMj85SK .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAuMj85SK .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAuMj85SK .mbr-section-title {
  color: #141414;
}
.cid-uqAuMj85SK .mbr-text {
  color: #141414;
}
.cid-uqAuMj85SK .list {
  color: #141414;
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAA5qqR00 {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqAA5qqR00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5qqR00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5qqR00 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5qqR00 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5qqR00 .container {
    padding: 0 24px;
  }
}
.cid-uqAA5qqR00 .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uqAA5qqR00 .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAA5qqR00 .content-wrapper .mbr-section-btn .btn:hover,
.cid-uqAA5qqR00 .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAA5qqR00 .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAA5qqR00 .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAA5qqR00 .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAA5qqR00 .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAA5qqR00 .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAA5qqR00 .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAA5qqR00 .mbr-section-title {
  color: #141414;
}
.cid-uqAA5qqR00 .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uqAA5qqR00 .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uqAA5qqR00 .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAA5qqR00 .mbr-section-title,
.cid-uqAA5qqR00 .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5qX6Rj {
  background-image: url("../../../assets/images/car-wheels12-2000x1334.jpg");
}
.cid-uqAA5qX6Rj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5qX6Rj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5qX6Rj .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAA5qX6Rj .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5qX6Rj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5qX6Rj .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5qX6Rj .container {
    padding: 0 16px;
  }
}
.cid-uqAA5qX6Rj .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uqAA5qX6Rj .row {
    height: 350px;
  }
}
.cid-uqAA5rrC6I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAA5rrC6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5rrC6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5rrC6I .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .container {
    padding: 0 6px;
  }
}
.cid-uqAA5rrC6I .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uqAA5rrC6I .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAA5rrC6I .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5rrC6I .row {
    padding: 0 30px;
  }
}
.cid-uqAA5rrC6I .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uqAA5rrC6I .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uqAA5rrC6I .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
  padding-right: 0;
  padding-left: 22px;
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .content-wrapper .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uqAA5rrC6I .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uqAA5rrC6I .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uqAA5rrC6I .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uqAA5rrC6I .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uqAA5rrC6I .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uqAA5rrC6I .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAA5rrC6I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAA5rrC6I .list {
  color: #131313;
}
.cid-uqAA5rrC6I .list,
.cid-uqAA5rrC6I .item-wrap {
  color: #000000;
}
.cid-uqAA5s3tWz {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAA5s3tWz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5s3tWz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5s3tWz .mbr-text,
.cid-uqAA5s3tWz .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5s3tWz .mbr-section-title {
  text-align: center;
  color: #ae42c8;
}
.cid-uqAA5sDrbw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAA5sDrbw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5sDrbw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5sDrbw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5sDrbw .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5sDrbw .container {
    padding: 0 24px;
  }
}
.cid-uqAA5sDrbw .row {
  justify-content: space-between;
}
.cid-uqAA5sDrbw .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uqAA5sDrbw .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 48px;
  background-color: #fff0b0;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uqAA5sDrbw .items-wrapper {
    display: block;
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5sDrbw .items-wrapper .item {
    margin-bottom: 48px;
  }
  .cid-uqAA5sDrbw .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .card-number {
  margin-bottom: 16px;
  opacity: .4;
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 22px;
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:hover,
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:focus {
  opacity: 1;
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:hover,
.cid-uqAA5sDrbw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAA5sDrbw .mbr-section-title {
  color: #141414;
}
.cid-uqAA5sDrbw .card-number {
  color: #141414;
}
.cid-uqAA5sDrbw .card-title {
  color: #141414;
}
.cid-uqAA5sDrbw .card-text {
  color: #141414;
  text-align: center;
}
.cid-uqAA5sDrbw .card-title,
.cid-uqAA5sDrbw .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5tnCE0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAA5tnCE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5tnCE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5tYHUA {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uqAA5tYHUA .display-2 {
    font-size: 2.1rem;
  }
}
.cid-uqAA5tYHUA .item-img {
  padding: 0.5rem;
}
.cid-uqAA5tYHUA img,
.cid-uqAA5tYHUA .item-img {
  width: 100%;
  border-radius: 3rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uqAA5tYHUA .item:focus,
.cid-uqAA5tYHUA span:focus {
  outline: none;
}
.cid-uqAA5tYHUA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqAA5tYHUA .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqAA5tYHUA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqAA5tYHUA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uqAA5tYHUA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqAA5tYHUA .mbr-section-title {
  color: #ffffff;
}
.cid-uqAA5tYHUA .item-title {
  color: #ae42c8;
}
.cid-uqAA5tYHUA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqAA5tYHUA .mbr-text,
.cid-uqAA5tYHUA .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5v2Qp7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAA5v2Qp7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5v2Qp7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5v2Qp7 a {
  font-weight: 900;
}
.cid-uqAA5v2Qp7 .row {
  flex-direction: row-reverse;
}
.cid-uqAA5v2Qp7 .text-wrapper {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-uqAA5v2Qp7 .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uqAA5v2Qp7 .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uqAA5v2Qp7 .image-wrapper {
  padding: 0;
}
.cid-uqAA5v2Qp7 .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqAA5v2Qp7 .image-wrapper img {
    border-radius: 0;
  }
}
.cid-uqAA5v2Qp7 .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uqAA5v2Qp7 .mbr-text,
.cid-uqAA5v2Qp7 .mbr-section-btn {
  color: #353535;
}
.cid-uqAA5vDZ13 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAA5vDZ13 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5vDZ13 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5vDZ13 .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-uqAA5vDZ13 .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-uqAA5vDZ13 .row {
  flex-direction: row-reverse;
}
.cid-uqAA5vDZ13 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uqAA5vDZ13 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqAA5vDZ13 img {
  border-radius: 2rem;
}
.cid-uqAA5vDZ13 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAA5vDZ13 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uqAA5vDZ13 .mbr-text,
.cid-uqAA5vDZ13 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-uqAA5wqkBm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAA5wqkBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5wqkBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5wqkBm .mbr-text,
.cid-uqAA5wqkBm .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5wqkBm .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAA5x8NeP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAA5x8NeP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5x8NeP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5x8NeP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5x8NeP .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5x8NeP .container {
    padding: 0 24px;
  }
}
.cid-uqAA5x8NeP .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-uqAA5x8NeP .content-wrapper {
    padding: 0;
  }
}
.cid-uqAA5x8NeP .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #f9e594;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-uqAA5x8NeP .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-uqAA5x8NeP .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5x8NeP .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-uqAA5x8NeP .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAA5x8NeP .mbr-section-title {
  color: #141414;
}
.cid-uqAA5x8NeP .mbr-desc {
  color: #141414;
}
.cid-uqAA5x8NeP .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAA5x8NeP .mbr-section-title,
.cid-uqAA5x8NeP .mbr-section-btn {
  text-align: center;
}
.cid-uqAA5xXnDe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAA5xXnDe .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAA5xXnDe .panel-group {
  border: none;
}
.cid-uqAA5xXnDe .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAA5xXnDe .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAA5xXnDe .card {
    padding: 1rem;
  }
}
.cid-uqAA5xXnDe .card-header {
  border: none;
}
.cid-uqAA5xXnDe p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAA5xXnDe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAA5xXnDe .panel-body,
.cid-uqAA5xXnDe .card-header {
  padding: 0rem 0;
}
.cid-uqAA5xXnDe .panel-title-edit {
  color: #000000;
}
.cid-uqAA5xXnDe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAA5xXnDe .panel-text {
  color: #000000;
}
.cid-uqAA5xXnDe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5xXnDe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5xXnDe H3 {
  text-align: center;
}
.cid-uqAA5yUpJY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uqAA5yUpJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5yUpJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5yUpJY .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5yUpJY .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5yUpJY .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5yUpJY .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5yUpJY .container {
    padding: 0 24px;
  }
}
.cid-uqAA5yUpJY .image-wrapper img {
  border: 1px solid #edeceb;
  object-fit: cover;
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uqAA5yUpJY .image-wrapper img {
    height: 400px;
  }
}
.cid-uqAA5zC73J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqAA5zC73J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5zC73J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5zC73J .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5zC73J .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAA5zC73J .container {
    padding: 0 16px;
  }
}
.cid-uqAA5zC73J .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAA5zC73J .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-uqAA5zC73J .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uqAA5zC73J .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqAA5zC73J .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqAA5zC73J .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uqAA5zC73J .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAA5zC73J .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uqAA5zC73J .mbr-text {
  color: #000000;
}
.cid-uqAA5AkGEI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAA5AkGEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5AkGEI .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-uqAA5AkGEI .container {
    padding: 0 15px;
  }
}
.cid-uqAA5AkGEI .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uqAA5AkGEI .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5AkGEI .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uqAA5AkGEI .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uqAA5AkGEI .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqAA5AkGEI .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAA5AkGEI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAA5AkGEI .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uqAA5AkGEI .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uqAA5AkGEI .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uqAA5AkGEI .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uqAA5AkGEI .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAA5AkGEI .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uqAA5AkGEI .mbr-section-title {
  color: #ffffff;
}
.cid-uqAA5AkGEI .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uqAA5AkGEI .mbr-text {
  color: #000000;
}
.cid-uqAA5AkGEI .mbr-section-title,
.cid-uqAA5AkGEI .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uqAA5B2yGc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqAA5B2yGc .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAA5B2yGc .panel-group {
  border: none;
}
.cid-uqAA5B2yGc .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAA5B2yGc .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAA5B2yGc .card {
    padding: 1rem;
  }
}
.cid-uqAA5B2yGc .card-header {
  border: none;
}
.cid-uqAA5B2yGc p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAA5B2yGc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAA5B2yGc .panel-body,
.cid-uqAA5B2yGc .card-header {
  padding: 0rem 0;
}
.cid-uqAA5B2yGc .panel-title-edit {
  color: #000000;
}
.cid-uqAA5B2yGc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAA5B2yGc .panel-text {
  color: #000000;
}
.cid-uqAA5B2yGc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5B2yGc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5B2yGc H3 {
  text-align: center;
}
.cid-uqAA5BRxoY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uqAA5BRxoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5BRxoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5BRxoY .google-map {
  height: 35rem;
  position: relative;
}
.cid-uqAA5BRxoY .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqAA5BRxoY .google-map [data-state-details] {
  color: #6b6763;
  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-uqAA5BRxoY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqAA5BRxoY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqAA5BRxoY .mbr-section-title {
  color: #000000;
}
.cid-uqAA5DqDTl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-uqAA5DqDTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAA5DqDTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAA5DqDTl .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAA5DqDTl .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAA5DqDTl .container {
    padding: 0 24px;
  }
}
.cid-uqAA5DqDTl .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-uqAA5DqDTl .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-uqAA5DqDTl .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAA5DqDTl .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAA5DqDTl .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-uqAA5DqDTl .lists-wrapper {
    display: block;
  }
}
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uqAA5DqDTl .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAA5DqDTl .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-uqAA5DqDTl .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAA5DqDTl .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAA5DqDTl .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAA5DqDTl .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAA5DqDTl .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAA5DqDTl .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAA5DqDTl .mbr-section-title {
  color: #141414;
}
.cid-uqAA5DqDTl .mbr-text {
  color: #141414;
}
.cid-uqAA5DqDTl .list {
  color: #141414;
}
.cid-uqAFoppnGz {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uqAFoppnGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoppnGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoppnGz .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAFoppnGz .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoppnGz .container {
    padding: 0 24px;
  }
}
.cid-uqAFoppnGz .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uqAFoppnGz .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uqAFoppnGz .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqAFoppnGz .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uqAFoppnGz .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAFoppnGz .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uqAFoppnGz .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAFoppnGz .content-wrapper .mbr-section-btn .btn:hover,
.cid-uqAFoppnGz .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAFoppnGz .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAFoppnGz .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAFoppnGz .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAFoppnGz .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAFoppnGz .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAFoppnGz .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAFoppnGz .mbr-section-title {
  color: #141414;
}
.cid-uqAFoppnGz .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uqAFoppnGz .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uqAFoppnGz .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAFoppnGz .mbr-section-title,
.cid-uqAFoppnGz .mbr-section-btn {
  text-align: center;
}
.cid-uqAFoqimy3 {
  background-image: url("../../../assets/images/car-wheels17-1600x1067.jpg");
}
.cid-uqAFoqimy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoqimy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoqimy3 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAFoqimy3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoqimy3 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoqimy3 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoqimy3 .container {
    padding: 0 16px;
  }
}
.cid-uqAFoqimy3 .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uqAFoqimy3 .row {
    height: 350px;
  }
}
.cid-uqAFoqIiYC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAFoqIiYC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoqIiYC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoqIiYC .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .container {
    padding: 0 6px;
  }
}
.cid-uqAFoqIiYC .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uqAFoqIiYC .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAFoqIiYC .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoqIiYC .row {
    padding: 0 30px;
  }
}
.cid-uqAFoqIiYC .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uqAFoqIiYC .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uqAFoqIiYC .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
  padding-right: 0;
  padding-left: 22px;
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .content-wrapper .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uqAFoqIiYC .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uqAFoqIiYC .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uqAFoqIiYC .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uqAFoqIiYC .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uqAFoqIiYC .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uqAFoqIiYC .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAFoqIiYC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAFoqIiYC .list {
  color: #131313;
}
.cid-uqAFoqIiYC .list,
.cid-uqAFoqIiYC .item-wrap {
  color: #000000;
}
.cid-uqAFor9BF5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAFor9BF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFor9BF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFor9BF5 .mbr-text,
.cid-uqAFor9BF5 .mbr-section-btn {
  text-align: center;
}
.cid-uqAFor9BF5 .mbr-section-title {
  text-align: center;
  color: #ae42c8;
}
.cid-uqAForIfG8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAForIfG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAForIfG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAForIfG8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAForIfG8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAForIfG8 .container {
    padding: 0 24px;
  }
}
.cid-uqAForIfG8 .row {
  justify-content: space-between;
}
.cid-uqAForIfG8 .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uqAForIfG8 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 48px;
  background-color: #fff0b0;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uqAForIfG8 .items-wrapper {
    display: block;
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAForIfG8 .items-wrapper .item {
    margin-bottom: 48px;
  }
  .cid-uqAForIfG8 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .card-number {
  margin-bottom: 16px;
  opacity: .4;
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 22px;
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:hover,
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn:focus {
  opacity: 1;
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:hover,
.cid-uqAForIfG8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAForIfG8 .mbr-section-title {
  color: #141414;
}
.cid-uqAForIfG8 .card-number {
  color: #141414;
}
.cid-uqAForIfG8 .card-title {
  color: #141414;
}
.cid-uqAForIfG8 .card-text {
  color: #141414;
  text-align: center;
}
.cid-uqAForIfG8 .card-title,
.cid-uqAForIfG8 .mbr-section-btn {
  text-align: center;
}
.cid-uqAFosvY8w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAFosvY8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFosvY8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFot390y {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uqAFot390y .display-2 {
    font-size: 2.1rem;
  }
}
.cid-uqAFot390y .item-img {
  padding: 0.5rem;
}
.cid-uqAFot390y img,
.cid-uqAFot390y .item-img {
  width: 100%;
  border-radius: 3rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uqAFot390y .item:focus,
.cid-uqAFot390y span:focus {
  outline: none;
}
.cid-uqAFot390y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqAFot390y .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqAFot390y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqAFot390y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uqAFot390y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqAFot390y .mbr-section-title {
  color: #ffffff;
}
.cid-uqAFot390y .item-title {
  color: #ae42c8;
}
.cid-uqAFot390y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqAFot390y .mbr-text,
.cid-uqAFot390y .mbr-section-btn {
  text-align: center;
}
.cid-uqAFotUdlM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAFotUdlM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFotUdlM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFotUdlM a {
  font-weight: 900;
}
.cid-uqAFotUdlM .row {
  flex-direction: row-reverse;
}
.cid-uqAFotUdlM .text-wrapper {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-uqAFotUdlM .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uqAFotUdlM .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uqAFotUdlM .image-wrapper {
  padding: 0;
}
.cid-uqAFotUdlM .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqAFotUdlM .image-wrapper img {
    border-radius: 0;
  }
}
.cid-uqAFotUdlM .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uqAFotUdlM .mbr-text,
.cid-uqAFotUdlM .mbr-section-btn {
  color: #353535;
}
.cid-uqAFouwIzn {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAFouwIzn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFouwIzn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFouwIzn .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-uqAFouwIzn .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-uqAFouwIzn .row {
  flex-direction: row-reverse;
}
.cid-uqAFouwIzn .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uqAFouwIzn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqAFouwIzn img {
  border-radius: 2rem;
}
.cid-uqAFouwIzn .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAFouwIzn .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uqAFouwIzn .mbr-text,
.cid-uqAFouwIzn .mbr-section-btn {
  color: #000000;
  text-align: center;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-uqAFovn8NW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-uqAFovn8NW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFovn8NW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFovn8NW .mbr-text,
.cid-uqAFovn8NW .mbr-section-btn {
  text-align: center;
}
.cid-uqAFovn8NW .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uqAFovn8NW .mbr-section-subtitle {
  text-align: right;
}
.cid-uqAFow6ir4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqAFow6ir4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFow6ir4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFow6ir4 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAFow6ir4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFow6ir4 .container {
    padding: 0 24px;
  }
}
.cid-uqAFow6ir4 .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-uqAFow6ir4 .content-wrapper {
    padding: 0;
  }
}
.cid-uqAFow6ir4 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #f9e594;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-uqAFow6ir4 .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-uqAFow6ir4 .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uqAFow6ir4 .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-uqAFow6ir4 .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAFow6ir4 .mbr-section-title {
  color: #141414;
}
.cid-uqAFow6ir4 .mbr-desc {
  color: #141414;
}
.cid-uqAFow6ir4 .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uqAFow6ir4 .mbr-section-title,
.cid-uqAFow6ir4 .mbr-section-btn {
  text-align: center;
}
.cid-uqAFowQnXq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-uqAFowQnXq .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAFowQnXq .panel-group {
  border: none;
}
.cid-uqAFowQnXq .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAFowQnXq .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAFowQnXq .card {
    padding: 1rem;
  }
}
.cid-uqAFowQnXq .card-header {
  border: none;
}
.cid-uqAFowQnXq p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAFowQnXq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAFowQnXq .panel-body,
.cid-uqAFowQnXq .card-header {
  padding: 0rem 0;
}
.cid-uqAFowQnXq .panel-title-edit {
  color: #000000;
}
.cid-uqAFowQnXq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAFowQnXq .panel-text {
  color: #000000;
}
.cid-uqAFowQnXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFowQnXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFowQnXq H3 {
  text-align: center;
}
.cid-uqAFoxLc22 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uqAFoxLc22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoxLc22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoxLc22 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAFoxLc22 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoxLc22 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoxLc22 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoxLc22 .container {
    padding: 0 24px;
  }
}
.cid-uqAFoxLc22 .image-wrapper img {
  border: 1px solid #edeceb;
  object-fit: cover;
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uqAFoxLc22 .image-wrapper img {
    height: 400px;
  }
}
.cid-uqAFoywtmF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqAFoywtmF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoywtmF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoywtmF .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoywtmF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uqAFoywtmF .container {
    padding: 0 16px;
  }
}
.cid-uqAFoywtmF .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAFoywtmF .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-uqAFoywtmF .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uqAFoywtmF .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqAFoywtmF .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uqAFoywtmF .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uqAFoywtmF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqAFoywtmF .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uqAFoywtmF .mbr-text {
  color: #000000;
}
.cid-uqAFozg8ec {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff0b0;
}
.cid-uqAFozg8ec .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFozg8ec .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-uqAFozg8ec .container {
    padding: 0 15px;
  }
}
.cid-uqAFozg8ec .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uqAFozg8ec .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqAFozg8ec .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uqAFozg8ec .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uqAFozg8ec .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uqAFozg8ec .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqAFozg8ec .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAFozg8ec .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uqAFozg8ec .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uqAFozg8ec .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uqAFozg8ec .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uqAFozg8ec .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uqAFozg8ec .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uqAFozg8ec .mbr-section-title {
  color: #ffffff;
}
.cid-uqAFozg8ec .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uqAFozg8ec .mbr-text {
  color: #000000;
}
.cid-uqAFozg8ec .mbr-section-title,
.cid-uqAFozg8ec .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uqAFoA2UAF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uqAFoA2UAF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-uqAFoA2UAF .panel-group {
  border: none;
}
.cid-uqAFoA2UAF .card {
  border-radius: 0;
  padding: 1rem 2rem;
}
.cid-uqAFoA2UAF .card:hover {
  background: #c71406;
}
@media (max-width: 767px) {
  .cid-uqAFoA2UAF .card {
    padding: 1rem;
  }
}
.cid-uqAFoA2UAF .card-header {
  border: none;
}
.cid-uqAFoA2UAF p {
  max-width: 600px;
  font-weight: 400;
  padding-top: 1rem;
}
.cid-uqAFoA2UAF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqAFoA2UAF .panel-body,
.cid-uqAFoA2UAF .card-header {
  padding: 0rem 0;
}
.cid-uqAFoA2UAF .panel-title-edit {
  color: #000000;
}
.cid-uqAFoA2UAF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqAFoA2UAF .panel-text {
  color: #000000;
}
.cid-uqAFoA2UAF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoA2UAF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoA2UAF H3 {
  text-align: center;
}
.cid-uqAFoAVokH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uqAFoAVokH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoAVokH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoAVokH .google-map {
  height: 35rem;
  position: relative;
}
.cid-uqAFoAVokH .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqAFoAVokH .google-map [data-state-details] {
  color: #6b6763;
  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-uqAFoAVokH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqAFoAVokH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqAFoAVokH .mbr-section-title {
  color: #000000;
}
.cid-uqAFoBFttB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-uqAFoBFttB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAFoBFttB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAFoBFttB .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqAFoBFttB .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqAFoBFttB .container {
    padding: 0 24px;
  }
}
.cid-uqAFoBFttB .row {
  justify-content: center;
  padding-bottom: 200px;
}
.cid-uqAFoBFttB .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uqAFoBFttB .title-wrapper .title-wrap {
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 16px;
}
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-title {
  margin-right: 70px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-title {
    margin-right: 20px;
  }
}
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-btn .btn {
  width: 80px;
  height: 30px;
}
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  font-size: 18px !important;
  margin: 0;
}
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-uqAFoBFttB .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uqAFoBFttB .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqAFoBFttB .lists-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-uqAFoBFttB .lists-wrapper {
    display: block;
  }
}
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
}
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #fb8fc9 -5%, #7f89e9 95%);
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list .item-wrap:hover::before,
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uqAFoBFttB .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqAFoBFttB .mbr-copy {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #141414;
}
.cid-uqAFoBFttB .decor-wrapper {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uqAFoBFttB .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uqAFoBFttB .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uqAFoBFttB .decor-wrapper .decor_2 {
  background-color: #fb8fc9;
}
.cid-uqAFoBFttB .decor-wrapper .decor_3 {
  background-color: #7f89e9;
}
.cid-uqAFoBFttB .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uqAFoBFttB .mbr-section-title {
  color: #141414;
}
.cid-uqAFoBFttB .mbr-text {
  color: #141414;
}
.cid-uqAFoBFttB .list {
  color: #141414;
}
.cid-uqHu7D8gko {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .container,
  .cid-uqHu7D8gko .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uqHu7D8gko .container .navbar-collapse,
  .cid-uqHu7D8gko .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko {
    flex-wrap: wrap;
  }
  .cid-uqHu7D8gko .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uqHu7D8gko .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uqHu7D8gko .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uqHu7D8gko .btn {
  padding: 0.8rem 2rem;
}
.cid-uqHu7D8gko .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uqHu7D8gko .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #ae42c8;
}
.cid-uqHu7D8gko .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uqHu7D8gko nav.navbar {
  position: fixed;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqHu7D8gko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqHu7D8gko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqHu7D8gko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqHu7D8gko .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqHu7D8gko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown-menu,
.cid-uqHu7D8gko .navbar.opened {
  background: #ffffff !important;
}
.cid-uqHu7D8gko .nav-item:focus,
.cid-uqHu7D8gko .nav-link:focus {
  outline: none;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqHu7D8gko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqHu7D8gko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqHu7D8gko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqHu7D8gko .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.opened {
  transition: all 0.3s;
}
.cid-uqHu7D8gko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqHu7D8gko .navbar .navbar-logo img {
  width: auto;
}
.cid-uqHu7D8gko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uqHu7D8gko .navbar.collapsed {
  justify-content: center;
}
.cid-uqHu7D8gko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqHu7D8gko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqHu7D8gko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqHu7D8gko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqHu7D8gko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqHu7D8gko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqHu7D8gko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqHu7D8gko .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-uqHu7D8gko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqHu7D8gko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqHu7D8gko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqHu7D8gko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqHu7D8gko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqHu7D8gko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqHu7D8gko .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqHu7D8gko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqHu7D8gko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqHu7D8gko .dropdown-item.active,
.cid-uqHu7D8gko .dropdown-item:active {
  background-color: transparent;
}
.cid-uqHu7D8gko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqHu7D8gko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqHu7D8gko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqHu7D8gko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqHu7D8gko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqHu7D8gko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqHu7D8gko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqHu7D8gko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqHu7D8gko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqHu7D8gko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqHu7D8gko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqHu7D8gko .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-uqHu7D8gko .navbar {
    height: 70px;
  }
  .cid-uqHu7D8gko .navbar.opened {
    height: auto;
  }
  .cid-uqHu7D8gko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
