.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #cd2653 !important;
}
.bg-success {
  background-color: #507b6a !important;
}
.bg-info {
  background-color: #164f8b !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #cd2653 !important;
  border-color: #cd2653 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #841835 !important;
  border-color: #841835 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #841835 !important;
  border-color: #841835 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8f4d !important;
  border-color: #ff8f4d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #f55b00 !important;
  border-color: #f55b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f55b00 !important;
  border-color: #f55b00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #164f8b !important;
  border-color: #164f8b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0a2440 !important;
  border-color: #0a2440 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a2440 !important;
  border-color: #0a2440 !important;
}
.btn-success,
.btn-success:active {
  background-color: #507b6a !important;
  border-color: #507b6a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2e463d !important;
  border-color: #2e463d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2e463d !important;
  border-color: #2e463d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #cd2653;
  color: #cd2653;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #841835 !important;
  background-color: transparent!important;
  border-color: #841835 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #cd2653 !important;
  border-color: #cd2653 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff8f4d;
  color: #ff8f4d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #f55b00 !important;
  background-color: transparent!important;
  border-color: #f55b00 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8f4d !important;
  border-color: #ff8f4d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #164f8b;
  color: #164f8b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a2440 !important;
  background-color: transparent!important;
  border-color: #0a2440 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #164f8b !important;
  border-color: #164f8b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #507b6a;
  color: #507b6a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2e463d !important;
  background-color: transparent!important;
  border-color: #2e463d !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #507b6a !important;
  border-color: #507b6a !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: #cd2653 !important;
}
.text-secondary {
  color: #ff8f4d !important;
}
.text-success {
  color: #507b6a !important;
}
.text-info {
  color: #164f8b !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: #771630 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e65500 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #283d35 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #081d33 !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: #cd2653;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #164f8b;
}
.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: #cd2653;
  border-color: #cd2653;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #cd2653;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5cad6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #92b8a9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #408ee1;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', 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: #cd2653 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #cd2653;
}
/* 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: #cd2653;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #cd2653;
}
.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: #cd2653;
  border-bottom-color: #cd2653;
}
.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: #cd2653 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff8f4d !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='%23cd2653' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-vnwTjZwuae {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vnwTjZwuae nav.navbar {
  position: fixed;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vnwTjZwuae .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vnwTjZwuae .dropdown-item:hover,
.cid-vnwTjZwuae .dropdown-item:focus {
  background: #cd2653 !important;
  color: white !important;
}
.cid-vnwTjZwuae .dropdown-item:hover span {
  color: white;
}
.cid-vnwTjZwuae .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vnwTjZwuae .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vnwTjZwuae .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vnwTjZwuae .nav-link {
  position: relative;
}
.cid-vnwTjZwuae .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown-menu,
.cid-vnwTjZwuae .navbar.opened {
  background: #ffffff !important;
}
.cid-vnwTjZwuae .nav-item:focus,
.cid-vnwTjZwuae .nav-link:focus {
  outline: none;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vnwTjZwuae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vnwTjZwuae .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.opened {
  transition: all 0.3s;
}
.cid-vnwTjZwuae .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vnwTjZwuae .navbar .navbar-logo img {
  width: auto;
}
.cid-vnwTjZwuae .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vnwTjZwuae .navbar.collapsed {
  justify-content: center;
}
.cid-vnwTjZwuae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vnwTjZwuae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vnwTjZwuae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vnwTjZwuae .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vnwTjZwuae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vnwTjZwuae .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-vnwTjZwuae .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vnwTjZwuae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vnwTjZwuae .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vnwTjZwuae .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vnwTjZwuae .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vnwTjZwuae .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vnwTjZwuae .navbar.navbar-short {
  min-height: 60px;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vnwTjZwuae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vnwTjZwuae .dropdown-item.active,
.cid-vnwTjZwuae .dropdown-item:active {
  background-color: transparent;
}
.cid-vnwTjZwuae .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vnwTjZwuae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vnwTjZwuae ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vnwTjZwuae .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vnwTjZwuae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vnwTjZwuae a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar {
    height: 70px;
  }
  .cid-vnwTjZwuae .navbar.opened {
    height: auto;
  }
  .cid-vnwTjZwuae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trKTdrIchT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-trKTdrIchT .mbr-section-title {
  color: #ffffff;
}
.cid-trKTpMrSRV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-trKTpMrSRV .mbr-section-title {
  color: #e43f3f;
}
.cid-sKvgoPx0tt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKvgoPx0tt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sKvgoPx0tt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sKvgoPx0tt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sKvgoPx0tt .mbr-section-title {
  color: #232323;
}
.cid-sKvgoPx0tt .mbr-text,
.cid-sKvgoPx0tt .mbr-section-btn {
  color: #000000;
}
.cid-tf2kGt3MiG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-tf2kGt3MiG .mbr-section-subtitle {
  color: #767676;
}
.cid-tf2kGt3MiG .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf2kGt3MiG .mbr-text {
  color: #767676;
}
.cid-tf2kGt3MiG .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-tf2kGt3MiG .mbr-author-name {
  color: #232323;
}
.cid-tf2kGt3MiG .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tf2kGt3MiG .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 0.1rem 0.1rem 0 0.1rem;
}
.cid-tf2kGt3MiG .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tf2kGt3MiG .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tf2kGt3MiG .mbr-testimonial .card-footer {
  padding-bottom: 0.1rem;
  border-top: 0;
  padding-top: 0.1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tf2kGt3MiG .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tf2kGt3MiG H2 {
  color: #232323;
}
.cid-tf2kGt3MiG .JCB1 {
  border: 0px solid #2e2e2e;
  padding: 10px;
}
.cid-tf2kGt3MiG .JCB {
  border: 2px solid #7a7a7a;
  padding: 10px;
  border-radius: 15px;
}
.cid-tf2kGt3MiG .JCB_Title {
  border: 0px solid #2e2e2e;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-tf2kGt3MiG .StarBox {
  background-color: fff;
  width: 270px;
  border: 0px solid green;
  padding: 1px;
  margin-left: auto;
  margin-right: auto;
}
.cid-tf2kGt3MiG .JCB_User {
  border: 2px solid #7a7a7a;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.5);
}
.cid-tf2kGt3MiG P {
  text-align: center;
  color: #ffffff;
}
.cid-sKy1rbqsFk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sKy1rbqsFk .mbr-section-title {
  color: #ffffff;
}
.cid-vnx7bPOV57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vnx7bPOV57 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-vnx7bPOV57 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-vnx7bPOV57 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-vnx6HgeI8J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vnx6HgeI8J img,
.cid-vnx6HgeI8J .item-img {
  width: 100%;
}
.cid-vnx6HgeI8J .item:focus,
.cid-vnx6HgeI8J span:focus {
  outline: none;
}
.cid-vnx6HgeI8J .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vnx6HgeI8J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vnx6HgeI8J .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vnx6HgeI8J .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vnx6HgeI8J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vnx6HgeI8J .mbr-section-title {
  color: #232323;
}
.cid-vnx6HgeI8J .mbr-text,
.cid-vnx6HgeI8J .mbr-section-btn {
  text-align: left;
}
.cid-vnx6HgeI8J .item-title {
  text-align: left;
}
.cid-vnx6HgeI8J .item-subtitle {
  text-align: left;
}
.cid-sKy3mBGCCf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sKy3mBGCCf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sKy3mBGCCf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sKy3mBGCCf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sKy3mBGCCf .mbr-text,
.cid-sKy3mBGCCf .mbr-section-btn {
  text-align: left;
}
.cid-sKy3mBGCCf .mbr-section-title {
  color: #000000;
}
.cid-sKy6Ur4nH7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sKy6Ur4nH7 .mbr-section-title {
  color: #ffffff;
}
.cid-vnxaDBJ5UG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vnxaDBJ5UG .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-vnxaDBJ5UG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-vnxaDBJ5UG .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-vnCQl3QFM9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKy7YKiKVs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sKy7YKiKVs .mbr-section-subtitle {
  color: #ffe300;
}
.cid-sKy7YKiKVs .mbr-section-title {
  color: #ffffff;
}
.cid-tX5fynqKCN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tX5fynqKCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5fynqKCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tX5fynqKCN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tX5fynqKCN .row {
  flex-direction: row-reverse;
}
.cid-tX5fynqKCN img {
  width: 100%;
}
.cid-vnCM1E3SMV * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cid-vnCM1E3SMV .ai-price-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  padding: 80px 20px;
  color: #ffffff;
}
.cid-vnCM1E3SMV .ai-container {
  max-width: 1280px;
  margin: 0 auto;
}
.cid-vnCM1E3SMV .ai-section-header {
  text-align: center;
  margin-bottom: 45px;
}
.cid-vnCM1E3SMV .ai-offer-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cid-vnCM1E3SMV .ai-offer-badge i {
  margin-right: 6px;
}
.cid-vnCM1E3SMV .ai-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #ffffff;
  line-height: 1.15;
}
.cid-vnCM1E3SMV .ai-section-title span {
  color: #ff6b35;
}
.cid-vnCM1E3SMV .ai-section-subtitle {
  font-size: 1.05rem;
  color: #8892a8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
.cid-vnCM1E3SMV .ai-section-subtitle strong {
  color: #ffffff;
}
.cid-vnCM1E3SMV .ai-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 25px 0 35px 0;
  flex-wrap: wrap;
}
.cid-vnCM1E3SMV .ai-countdown-item {
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 12px;
  padding: 10px 24px;
  text-align: center;
  min-width: 80px;
}
.cid-vnCM1E3SMV .ai-countdown-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}
.cid-vnCM1E3SMV .ai-countdown-label {
  font-size: 0.7rem;
  color: #8892a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.cid-vnCM1E3SMV .ai-countdown-separator {
  font-size: 2rem;
  color: #ff6b35;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.cid-vnCM1E3SMV .ai-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px 0;
}
.cid-vnCM1E3SMV .ai-toggle-group {
  background: #121724;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid #1f2638;
}
.cid-vnCM1E3SMV .ai-toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8892a8;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.cid-vnCM1E3SMV .ai-toggle-btn--active {
  background: #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}
.cid-vnCM1E3SMV .ai-toggle-btn:not(.ai-toggle-btn--active):hover {
  color: #ffffff;
}
.cid-vnCM1E3SMV .ai-toggle-badge {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
}
.cid-vnCM1E3SMV .ai-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.cid-vnCM1E3SMV .ai-price-card {
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 16px;
  padding: 28px 20px 24px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cid-vnCM1E3SMV .ai-price-card:hover {
  border-color: #ff6b35;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.06);
}
.cid-vnCM1E3SMV .ai-price-card--featured {
  border-color: #ff6b35;
  background: #141b2a;
}
.cid-vnCM1E3SMV .ai-price-card--featured .ai-card-badge {
  display: inline-block;
}
.cid-vnCM1E3SMV .ai-card-badge {
  display: none;
  background: #ff6b35;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.cid-vnCM1E3SMV .ai-card-badge i {
  margin-right: 4px;
}
.cid-vnCM1E3SMV .ai-card-header {
  text-align: center;
  margin-bottom: 14px;
}
.cid-vnCM1E3SMV .ai-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.cid-vnCM1E3SMV .ai-card-sub {
  font-size: 0.78rem;
  color: #8892a8;
  margin: 0;
}
.cid-vnCM1E3SMV .ai-price {
  text-align: center;
  margin-bottom: 4px;
}
.cid-vnCM1E3SMV .ai-price .ai-currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  vertical-align: top;
}
.cid-vnCM1E3SMV .ai-price .ai-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.cid-vnCM1E3SMV .ai-price .ai-period {
  font-size: 0.8rem;
  font-weight: 400;
  color: #8892a8;
}
.cid-vnCM1E3SMV .ai-old-price {
  text-align: center;
  font-size: 0.8rem;
  color: #5f6b84;
  margin-bottom: 2px;
}
.cid-vnCM1E3SMV .ai-old-price .ai-strike {
  text-decoration: line-through;
  color: #5f6b84;
}
.cid-vnCM1E3SMV .ai-old-price .ai-save-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.cid-vnCM1E3SMV .ai-price-note {
  text-align: center;
  font-size: 0.7rem;
  color: #5f6b84;
  margin: 0 0 16px 0;
}
.cid-vnCM1E3SMV .ai-welcome-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}
.cid-vnCM1E3SMV .ai-welcome-badge i {
  margin-right: 4px;
}
.cid-vnCM1E3SMV .ai-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex: 1;
}
.cid-vnCM1E3SMV .ai-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #c8d0dc;
  padding: 4px 0;
  line-height: 1.4;
}
.cid-vnCM1E3SMV .ai-features-list li i {
  color: #ff6b35;
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.cid-vnCM1E3SMV .ai-features-list li .ai-feature-highlight {
  color: #ff6b35;
  font-weight: 600;
}
.cid-vnCM1E3SMV .ai-features-list li strong {
  color: #ffffff;
}
.cid-vnCM1E3SMV .ai-features-more {
  color: #8892a8;
  font-size: 0.75rem;
  font-weight: 500;
}
.cid-vnCM1E3SMV .ai-features-more i {
  color: #ff6b35;
  margin-right: 4px;
}
.cid-vnCM1E3SMV .ai-free-gens {
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 14px 0;
}
.cid-vnCM1E3SMV .ai-free-gens-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.cid-vnCM1E3SMV .ai-free-gens-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vnCM1E3SMV .ai-free-gens-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #c8d0dc;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.cid-vnCM1E3SMV .ai-free-gens-list li:last-child {
  border-bottom: none;
}
.cid-vnCM1E3SMV .ai-free-gens-list li span {
  color: #ff6b35;
  font-weight: 600;
}
.cid-vnCM1E3SMV .ai-btn {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: 100%;
  margin-top: auto;
}
.cid-vnCM1E3SMV .ai-btn-primary {
  background: #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}
.cid-vnCM1E3SMV .ai-btn-primary:hover {
  background: #e55a2a;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  transform: translateY(-2px);
}
.cid-vnCM1E3SMV .ai-btn-secondary {
  background: transparent;
  color: #8892a8;
  border: 1px solid #2a3040;
}
.cid-vnCM1E3SMV .ai-btn-secondary:hover {
  background: #1f2638;
  color: #ffffff;
  border-color: #ff6b35;
}
.cid-vnCM1E3SMV .ai-btn i {
  margin-right: 6px;
}
.cid-vnCM1E3SMV .ai-btn .fa-arrow-right {
  margin-left: 6px;
  margin-right: 0;
  transition: transform 0.3s ease;
}
.cid-vnCM1E3SMV .ai-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}
.cid-vnCM1E3SMV .ai-btn-starter {
  background: transparent;
  color: #ff6b35;
  border: 1px solid #ff6b35;
}
.cid-vnCM1E3SMV .ai-btn-starter:hover {
  background: #ff6b35;
  color: #ffffff;
}
@media (max-width: 1100px) {
  .cid-vnCM1E3SMV .ai-price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .cid-vnCM1E3SMV .ai-price-section {
    padding: 60px 16px;
  }
  .cid-vnCM1E3SMV .ai-section-title {
    font-size: 2rem;
  }
  .cid-vnCM1E3SMV .ai-section-subtitle {
    font-size: 0.95rem;
  }
  .cid-vnCM1E3SMV .ai-price-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vnCM1E3SMV .ai-toggle-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  .cid-vnCM1E3SMV .ai-countdown {
    gap: 10px;
  }
  .cid-vnCM1E3SMV .ai-countdown-item {
    min-width: 60px;
    padding: 8px 14px;
  }
  .cid-vnCM1E3SMV .ai-countdown-number {
    font-size: 1.5rem;
  }
  .cid-vnCM1E3SMV .ai-countdown-separator {
    font-size: 1.5rem;
  }
  .cid-vnCM1E3SMV .ai-price-card {
    padding: 24px 18px 20px;
  }
  .cid-vnCM1E3SMV .ai-price .ai-amount {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .cid-vnCM1E3SMV .ai-section-title {
    font-size: 1.6rem;
  }
  .cid-vnCM1E3SMV .ai-toggle-group {
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    border: none;
    gap: 8px;
    padding: 0;
  }
  .cid-vnCM1E3SMV .ai-toggle-btn {
    background: #121724;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.75rem;
    border: 1px solid #1f2638;
  }
  .cid-vnCM1E3SMV .ai-toggle-btn--active {
    background: #ff6b35;
    border-color: #ff6b35;
  }
  .cid-vnCM1E3SMV .ai-countdown-item {
    min-width: 50px;
    padding: 6px 10px;
  }
  .cid-vnCM1E3SMV .ai-countdown-number {
    font-size: 1.2rem;
  }
  .cid-vnCM1E3SMV .ai-price-card {
    padding: 20px 14px 16px;
  }
  .cid-vnCM1E3SMV .ai-features-list li {
    font-size: 0.72rem;
  }
  .cid-vnCM1E3SMV .ai-btn {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}
.cid-tX5fzgefdJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tX5fzgefdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5fzgefdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tX5fzgefdJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tX5fzgefdJ .row {
  flex-direction: row-reverse;
}
.cid-tX5fzgefdJ img {
  width: 100%;
}
.cid-tf2awcQaFz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tf2awcQaFz .JCB {
  border: 3px solid #2e2e2e;
  padding: 10px;
  border-radius: 15px;
  background-color: #fdb831;
}
.cid-tf2awcQaFz .WarningBox {
  float: left;
  margin: 5px 70px;
  width: 70px;
  border: 0px solid #2e2e2e;
  padding-top: 2px;
  margin-top: 1px;
}
.cid-tf2awcQaFz .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-vnCUomYSk9 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cid-vnCUomYSk9 .flow-features-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  padding: 80px 20px 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-vnCUomYSk9 .flow-features-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cid-vnCUomYSk9 .flow-features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3), transparent);
  opacity: 0.6;
}
.cid-vnCUomYSk9 .flow-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cid-vnCUomYSk9 .flow-section-header {
  text-align: center;
  margin-bottom: 55px;
}
.cid-vnCUomYSk9 .flow-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.cid-vnCUomYSk9 .flow-badge i {
  margin-right: 6px;
}
.cid-vnCUomYSk9 .flow-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.15;
}
.cid-vnCUomYSk9 .flow-section-title .highlight {
  background: linear-gradient(135deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-vnCUomYSk9 .flow-section-subtitle {
  font-size: 1.05rem;
  color: #8892a8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.cid-vnCUomYSk9 .flow-section-subtitle strong {
  color: #ffffff;
}
.cid-vnCUomYSk9 .flow-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cid-vnCUomYSk9 .flow-feature-card {
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 16px;
  padding: 32px 24px 28px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cid-vnCUomYSk9 .flow-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cid-vnCUomYSk9 .flow-feature-card:hover::before {
  opacity: 1;
}
.cid-vnCUomYSk9 .flow-feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.cid-vnCUomYSk9 .flow-feature-card--gradient {
  background: linear-gradient(145deg, #121724, #161d2e);
  border-color: rgba(99, 102, 241, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-card--gradient .flow-feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
  color: #a78bfa;
}
.cid-vnCUomYSk9 .flow-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: #818cf8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cid-vnCUomYSk9 .flow-feature-card:hover .flow-feature-icon {
  background: rgba(99, 102, 241, 0.22);
  transform: scale(1.05);
}
.cid-vnCUomYSk9 .flow-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.cid-vnCUomYSk9 .flow-feature-desc {
  font-size: 0.9rem;
  color: #8892a8;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}
.cid-vnCUomYSk9 .flow-feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.cid-vnCUomYSk9 .flow-feature-tag--purple {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-tag--pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-tag--blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-tag--green {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-tag--orange {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-tag--teal {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.15);
}
.cid-vnCUomYSk9 .flow-feature-details {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.cid-vnCUomYSk9 .flow-feature-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: #c8d0dc;
  padding: 4px 0;
  line-height: 1.4;
}
.cid-vnCUomYSk9 .flow-feature-details li i {
  color: #818cf8;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.cid-vnCUomYSk9 .flow-cta-wrap {
  text-align: center;
  margin-top: 45px;
}
.cid-vnCUomYSk9 .flow-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  font-family: inherit;
  cursor: pointer;
}
.cid-vnCUomYSk9 .flow-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
}
.cid-vnCUomYSk9 .flow-cta-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.cid-vnCUomYSk9 .flow-cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .cid-vnCUomYSk9 .flow-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vnCUomYSk9 .flow-features-section {
    padding: 60px 16px 70px;
  }
  .cid-vnCUomYSk9 .flow-section-title {
    font-size: 2rem;
  }
  .cid-vnCUomYSk9 .flow-section-subtitle {
    font-size: 0.95rem;
  }
  .cid-vnCUomYSk9 .flow-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vnCUomYSk9 .flow-feature-card {
    padding: 26px 20px 22px;
  }
  .cid-vnCUomYSk9 .flow-feature-title {
    font-size: 1.05rem;
  }
  .cid-vnCUomYSk9 .flow-cta-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .cid-vnCUomYSk9 .flow-section-title {
    font-size: 1.6rem;
  }
  .cid-vnCUomYSk9 .flow-feature-card {
    padding: 22px 16px 18px;
  }
  .cid-vnCUomYSk9 .flow-feature-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .cid-vnCUomYSk9 .flow-feature-desc {
    font-size: 0.82rem;
  }
  .cid-vnCUomYSk9 .flow-feature-details li {
    font-size: 0.75rem;
  }
}
.cid-vnCVGz2OO0 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cid-vnCVGz2OO0 .flow-benefits-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  padding: 80px 20px 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-vnCVGz2OO0 .flow-benefits-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cid-vnCVGz2OO0 .flow-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cid-vnCVGz2OO0 .flow-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.cid-vnCVGz2OO0 .flow-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.cid-vnCVGz2OO0 .flow-badge i {
  margin-right: 6px;
}
.cid-vnCVGz2OO0 .flow-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.15;
}
.cid-vnCVGz2OO0 .flow-section-title .highlight {
  background: linear-gradient(135deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-vnCVGz2OO0 .flow-section-subtitle {
  font-size: 1.05rem;
  color: #8892a8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.cid-vnCVGz2OO0 .flow-section-subtitle strong {
  color: #ffffff;
}
.cid-vnCVGz2OO0 .flow-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cid-vnCVGz2OO0 .flow-benefit-card {
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 16px;
  padding: 32px 24px 28px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cid-vnCVGz2OO0 .flow-benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
  pointer-events: none;
}
.cid-vnCVGz2OO0 .flow-benefit-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.cid-vnCVGz2OO0 .flow-benefit-card--featured {
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(145deg, #121724, #161d2e);
}
.cid-vnCVGz2OO0 .flow-benefit-card--featured .flow-benefit-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.15));
}
.cid-vnCVGz2OO0 .flow-benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: #818cf8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cid-vnCVGz2OO0 .flow-benefit-card:hover .flow-benefit-icon {
  background: rgba(99, 102, 241, 0.22);
  transform: scale(1.05);
}
.cid-vnCVGz2OO0 .flow-benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.cid-vnCVGz2OO0 .flow-benefit-desc {
  font-size: 0.9rem;
  color: #8892a8;
  line-height: 1.7;
  margin: 0 0 16px 0;
  flex: 1;
}
.cid-vnCVGz2OO0 .flow-benefit-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vnCVGz2OO0 .flow-benefit-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #c8d0dc;
  padding: 4px 0;
  line-height: 1.5;
}
.cid-vnCVGz2OO0 .flow-benefit-points li i {
  color: #34d399;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.cid-vnCVGz2OO0 .flow-benefit-points li strong {
  color: #ffffff;
}
.cid-vnCVGz2OO0 .flow-stat-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #818cf8;
  margin-bottom: 14px;
  align-self: flex-start;
}
.cid-vnCVGz2OO0 .flow-stat-badge i {
  margin-right: 4px;
}
.cid-vnCVGz2OO0 .flow-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 16px;
  margin-top: 10px;
}
.cid-vnCVGz2OO0 .flow-stat-item {
  text-align: center;
}
.cid-vnCVGz2OO0 .flow-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.cid-vnCVGz2OO0 .flow-stat-label {
  font-size: 0.8rem;
  color: #8892a8;
  margin-top: 4px;
}
.cid-vnCVGz2OO0 .flow-stat-divider {
  width: 1px;
  height: 40px;
  background: #1f2638;
}
.cid-vnCVGz2OO0 .flow-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.cid-vnCVGz2OO0 .flow-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
  font-family: inherit;
  cursor: pointer;
}
.cid-vnCVGz2OO0 .flow-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(99, 102, 241, 0.45);
}
.cid-vnCVGz2OO0 .flow-cta-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.cid-vnCVGz2OO0 .flow-cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .cid-vnCVGz2OO0 .flow-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cid-vnCVGz2OO0 .flow-stats-bar {
    gap: 30px;
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .cid-vnCVGz2OO0 .flow-benefits-section {
    padding: 60px 16px 70px;
  }
  .cid-vnCVGz2OO0 .flow-section-title {
    font-size: 2rem;
  }
  .cid-vnCVGz2OO0 .flow-section-subtitle {
    font-size: 0.95rem;
  }
  .cid-vnCVGz2OO0 .flow-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vnCVGz2OO0 .flow-benefit-card {
    padding: 26px 20px 22px;
  }
  .cid-vnCVGz2OO0 .flow-benefit-title {
    font-size: 1.05rem;
  }
  .cid-vnCVGz2OO0 .flow-stats-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
  .cid-vnCVGz2OO0 .flow-stat-divider {
    width: 60px;
    height: 1px;
  }
  .cid-vnCVGz2OO0 .flow-stat-number {
    font-size: 1.8rem;
  }
  .cid-vnCVGz2OO0 .flow-cta-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .cid-vnCVGz2OO0 .flow-section-title {
    font-size: 1.6rem;
  }
  .cid-vnCVGz2OO0 .flow-benefit-card {
    padding: 22px 16px 18px;
  }
  .cid-vnCVGz2OO0 .flow-benefit-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .cid-vnCVGz2OO0 .flow-benefit-desc {
    font-size: 0.82rem;
  }
  .cid-vnCVGz2OO0 .flow-benefit-points li {
    font-size: 0.75rem;
  }
  .cid-vnCVGz2OO0 .flow-stat-number {
    font-size: 1.5rem;
  }
}
.cid-vnCWglrhvd * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cid-vnCWglrhvd .flow-usecases-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  padding: 80px 20px 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-vnCWglrhvd .flow-usecases-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cid-vnCWglrhvd .flow-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cid-vnCWglrhvd .flow-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.cid-vnCWglrhvd .flow-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.cid-vnCWglrhvd .flow-badge i {
  margin-right: 6px;
}
.cid-vnCWglrhvd .flow-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.15;
}
.cid-vnCWglrhvd .flow-section-title .highlight {
  background: linear-gradient(135deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-vnCWglrhvd .flow-section-subtitle {
  font-size: 1.05rem;
  color: #8892a8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.cid-vnCWglrhvd .flow-section-subtitle strong {
  color: #ffffff;
}
.cid-vnCWglrhvd .flow-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cid-vnCWglrhvd .flow-usecase-card {
  background: #121724;
  border: 1px solid #1f2638;
  border-radius: 16px;
  padding: 32px 24px 28px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cid-vnCWglrhvd .flow-usecase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40px, 40px);
  pointer-events: none;
}
.cid-vnCWglrhvd .flow-usecase-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.cid-vnCWglrhvd .flow-usecase-card--featured {
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(145deg, #121724, #161d2e);
}
.cid-vnCWglrhvd .flow-usecase-card--featured .flow-usecase-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.15));
}
.cid-vnCWglrhvd .flow-usecase-card--featured .flow-usecase-badge {
  display: inline-block;
}
.cid-vnCWglrhvd .flow-usecase-badge {
  display: none;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 20px;
  position: absolute;
  top: -8px;
  right: 16px;
  white-space: nowrap;
}
.cid-vnCWglrhvd .flow-usecase-badge i {
  margin-right: 4px;
  font-size: 0.5rem;
}
.cid-vnCWglrhvd .flow-usecase-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: #818cf8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cid-vnCWglrhvd .flow-usecase-card:hover .flow-usecase-icon {
  background: rgba(99, 102, 241, 0.22);
  transform: scale(1.05);
}
.cid-vnCWglrhvd .flow-usecase-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.cid-vnCWglrhvd .flow-usecase-desc {
  font-size: 0.9rem;
  color: #8892a8;
  line-height: 1.7;
  margin: 0 0 16px 0;
  flex: 1;
}
.cid-vnCWglrhvd .flow-usecase-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vnCWglrhvd .flow-usecase-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #c8d0dc;
  padding: 4px 0;
  line-height: 1.5;
}
.cid-vnCWglrhvd .flow-usecase-points li i {
  color: #818cf8;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.cid-vnCWglrhvd .flow-usecase-points li strong {
  color: #ffffff;
}
.cid-vnCWglrhvd .flow-cta-wrap {
  text-align: center;
  margin-top: 10px;
}
.cid-vnCWglrhvd .flow-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
  font-family: inherit;
  cursor: pointer;
}
.cid-vnCWglrhvd .flow-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(99, 102, 241, 0.45);
}
.cid-vnCWglrhvd .flow-cta-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.cid-vnCWglrhvd .flow-cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .cid-vnCWglrhvd .flow-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vnCWglrhvd .flow-usecases-section {
    padding: 60px 16px 70px;
  }
  .cid-vnCWglrhvd .flow-section-title {
    font-size: 2rem;
  }
  .cid-vnCWglrhvd .flow-section-subtitle {
    font-size: 0.95rem;
  }
  .cid-vnCWglrhvd .flow-usecases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vnCWglrhvd .flow-usecase-card {
    padding: 26px 20px 22px;
  }
  .cid-vnCWglrhvd .flow-usecase-title {
    font-size: 1.05rem;
  }
  .cid-vnCWglrhvd .flow-cta-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .cid-vnCWglrhvd .flow-section-title {
    font-size: 1.6rem;
  }
  .cid-vnCWglrhvd .flow-usecase-card {
    padding: 22px 16px 18px;
  }
  .cid-vnCWglrhvd .flow-usecase-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .cid-vnCWglrhvd .flow-usecase-desc {
    font-size: 0.82rem;
  }
  .cid-vnCWglrhvd .flow-usecase-points li {
    font-size: 0.75rem;
  }
}
.cid-sKyuKxG5d4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sKyuKxG5d4 .mbr-section-title {
  color: #fafafa;
}
.cid-sKyvwxml3Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKyvwxml3Z .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #cd2653;
  margin-left: 1rem;
}
.cid-sKyvwxml3Z .panel-group {
  border: none;
}
.cid-sKyvwxml3Z .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sKyvwxml3Z .panel-body,
.cid-sKyvwxml3Z .card-header {
  padding: 1rem 0;
}
.cid-sKyvwxml3Z .panel-title-edit {
  color: #232323;
}
.cid-sKyvwxml3Z .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vnCYqFaKzl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vnCYqFaKzl .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #cd2653;
  margin-left: 1rem;
}
.cid-vnCYqFaKzl .panel-group {
  border: none;
}
.cid-vnCYqFaKzl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vnCYqFaKzl .panel-body,
.cid-vnCYqFaKzl .card-header {
  padding: 1rem 0;
}
.cid-vnCYqFaKzl .panel-title-edit {
  color: #232323;
}
.cid-vnCYqFaKzl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vnCZZKkzUM * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cid-vnCZZKkzUM .flow-cta-final-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  padding: 80px 20px 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-vnCZZKkzUM .flow-cta-final-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cid-vnCZZKkzUM .flow-cta-final-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cid-vnCZZKkzUM .flow-cta-final-section .flow-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), rgba(236, 72, 153, 0.4), transparent);
  opacity: 0.6;
  z-index: 0;
}
.cid-vnCZZKkzUM .flow-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cid-vnCZZKkzUM .flow-cta-content {
  text-align: center;
}
.cid-vnCZZKkzUM .flow-cta-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: pulse-badge 2s infinite;
}
.cid-vnCZZKkzUM .flow-cta-badge i {
  margin-right: 6px;
}
@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.cid-vnCZZKkzUM .flow-cta-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: #ffffff;
}
.cid-vnCZZKkzUM .flow-cta-title .highlight {
  background: linear-gradient(135deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-vnCZZKkzUM .flow-cta-subtitle {
  font-size: 1.15rem;
  color: #8892a8;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.cid-vnCZZKkzUM .flow-cta-subtitle strong {
  color: #ffffff;
}
.cid-vnCZZKkzUM .flow-cta-values {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.cid-vnCZZKkzUM .flow-cta-value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #121724;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #1f2638;
  transition: all 0.3s ease;
}
.cid-vnCZZKkzUM .flow-cta-value:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}
.cid-vnCZZKkzUM .flow-cta-value i {
  color: #818cf8;
  font-size: 1rem;
}
.cid-vnCZZKkzUM .flow-cta-value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c8d0dc;
}
.cid-vnCZZKkzUM .flow-cta-value strong {
  color: #ffffff;
}
.cid-vnCZZKkzUM .flow-cta-btn-wrap {
  margin-bottom: 28px;
}
.cid-vnCZZKkzUM .flow-cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-vnCZZKkzUM .flow-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}
.cid-vnCZZKkzUM .flow-cta-btn:hover::before {
  left: 100%;
}
.cid-vnCZZKkzUM .flow-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(99, 102, 241, 0.5);
}
.cid-vnCZZKkzUM .flow-cta-btn:active {
  transform: translateY(0) scale(0.98);
}
.cid-vnCZZKkzUM .flow-cta-btn i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.cid-vnCZZKkzUM .flow-cta-btn:hover i {
  transform: translateX(6px);
}
.cid-vnCZZKkzUM .flow-cta-subtext {
  font-size: 0.8rem;
  color: #5f6b84;
  margin-bottom: 30px;
}
.cid-vnCZZKkzUM .flow-cta-subtext i {
  color: #34d399;
  margin-right: 4px;
}
.cid-vnCZZKkzUM .flow-cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid #1f2638;
}
.cid-vnCZZKkzUM .flow-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8892a8;
  font-size: 0.82rem;
}
.cid-vnCZZKkzUM .flow-cta-trust-item i {
  color: #818cf8;
  font-size: 0.9rem;
}
.cid-vnCZZKkzUM .flow-cta-trust-item strong {
  color: #ffffff;
}
.cid-vnCZZKkzUM .flow-cta-trust-divider {
  color: #2a3040;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .cid-vnCZZKkzUM .flow-cta-final-section {
    padding: 60px 16px 70px;
  }
  .cid-vnCZZKkzUM .flow-cta-title {
    font-size: 2.2rem;
  }
  .cid-vnCZZKkzUM .flow-cta-subtitle {
    font-size: 1rem;
  }
  .cid-vnCZZKkzUM .flow-cta-values {
    gap: 12px;
  }
  .cid-vnCZZKkzUM .flow-cta-value {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .cid-vnCZZKkzUM .flow-cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
    width: 100%;
    max-width: 360px;
  }
  .cid-vnCZZKkzUM .flow-cta-trust {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .cid-vnCZZKkzUM .flow-cta-trust-divider {
    display: none;
  }
}
@media (max-width: 480px) {
  .cid-vnCZZKkzUM .flow-cta-title {
    font-size: 1.7rem;
  }
  .cid-vnCZZKkzUM .flow-cta-subtitle {
    font-size: 0.9rem;
  }
  .cid-vnCZZKkzUM .flow-cta-value {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  .cid-vnCZZKkzUM .flow-cta-value i {
    font-size: 0.8rem;
  }
  .cid-vnCZZKkzUM .flow-cta-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  .cid-vnCZZKkzUM .flow-cta-trust-item {
    font-size: 0.7rem;
  }
}
.cid-toHIoiSXyB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-toHIoiSXyB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toHIoiSXyB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toHIoiSXyB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toHIoiSXyB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toHIoiSXyB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toHIoiSXyB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toHIoiSXyB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toHIoiSXyB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toHIoiSXyB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toHIoiSXyB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toHIoiSXyB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toHIoiSXyB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toHIoiSXyB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toHIoiSXyB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toHIoiSXyB P {
  color: #000;
}
.cid-toHIoiSXyB .media-container-row .mbr-text {
  color: #000;
}
.cid-toHIoiSXyB .mbr-author-name {
  color: #000;
}
.cid-toHIoiSXyB .JCB {
  border: 1px solid #000;
  padding: 10px;
  border-radius: 15px;
}
.cid-toHIoiSXyB a:link {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}
.cid-toHIoiSXyB a:visited {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}
.cid-toHIoiSXyB a:hover {
  color: #000;
  background-color: transparent;
  text-decoration: underline;
}
.cid-toHIoiSXyB a:active {
  color: #000;
  background-color: transparent;
  text-decoration: underline;
}
.cid-vnwTjZwuae {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vnwTjZwuae nav.navbar {
  position: fixed;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vnwTjZwuae .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vnwTjZwuae .dropdown-item:hover,
.cid-vnwTjZwuae .dropdown-item:focus {
  background: #cd2653 !important;
  color: white !important;
}
.cid-vnwTjZwuae .dropdown-item:hover span {
  color: white;
}
.cid-vnwTjZwuae .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vnwTjZwuae .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vnwTjZwuae .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vnwTjZwuae .nav-link {
  position: relative;
}
.cid-vnwTjZwuae .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown-menu,
.cid-vnwTjZwuae .navbar.opened {
  background: #ffffff !important;
}
.cid-vnwTjZwuae .nav-item:focus,
.cid-vnwTjZwuae .nav-link:focus {
  outline: none;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vnwTjZwuae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vnwTjZwuae .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.opened {
  transition: all 0.3s;
}
.cid-vnwTjZwuae .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vnwTjZwuae .navbar .navbar-logo img {
  width: auto;
}
.cid-vnwTjZwuae .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vnwTjZwuae .navbar.collapsed {
  justify-content: center;
}
.cid-vnwTjZwuae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vnwTjZwuae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vnwTjZwuae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vnwTjZwuae .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vnwTjZwuae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vnwTjZwuae .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-vnwTjZwuae .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vnwTjZwuae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vnwTjZwuae .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vnwTjZwuae .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vnwTjZwuae .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vnwTjZwuae .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vnwTjZwuae .navbar.navbar-short {
  min-height: 60px;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vnwTjZwuae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vnwTjZwuae .dropdown-item.active,
.cid-vnwTjZwuae .dropdown-item:active {
  background-color: transparent;
}
.cid-vnwTjZwuae .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vnwTjZwuae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vnwTjZwuae ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vnwTjZwuae .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vnwTjZwuae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vnwTjZwuae a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar {
    height: 70px;
  }
  .cid-vnwTjZwuae .navbar.opened {
    height: auto;
  }
  .cid-vnwTjZwuae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBdio7aKX4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBdio7aKX4 .mbr-section-title {
  text-align: center;
}
.cid-vnwTjZwuae {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vnwTjZwuae nav.navbar {
  position: fixed;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vnwTjZwuae .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vnwTjZwuae .dropdown-item:hover,
.cid-vnwTjZwuae .dropdown-item:focus {
  background: #cd2653 !important;
  color: white !important;
}
.cid-vnwTjZwuae .dropdown-item:hover span {
  color: white;
}
.cid-vnwTjZwuae .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vnwTjZwuae .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vnwTjZwuae .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vnwTjZwuae .nav-link {
  position: relative;
}
.cid-vnwTjZwuae .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown-menu,
.cid-vnwTjZwuae .navbar.opened {
  background: #ffffff !important;
}
.cid-vnwTjZwuae .nav-item:focus,
.cid-vnwTjZwuae .nav-link:focus {
  outline: none;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vnwTjZwuae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vnwTjZwuae .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.opened {
  transition: all 0.3s;
}
.cid-vnwTjZwuae .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vnwTjZwuae .navbar .navbar-logo img {
  width: auto;
}
.cid-vnwTjZwuae .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vnwTjZwuae .navbar.collapsed {
  justify-content: center;
}
.cid-vnwTjZwuae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vnwTjZwuae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vnwTjZwuae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vnwTjZwuae .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vnwTjZwuae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vnwTjZwuae .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-vnwTjZwuae .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vnwTjZwuae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vnwTjZwuae .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vnwTjZwuae .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vnwTjZwuae .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vnwTjZwuae .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vnwTjZwuae .navbar.navbar-short {
  min-height: 60px;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vnwTjZwuae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vnwTjZwuae .dropdown-item.active,
.cid-vnwTjZwuae .dropdown-item:active {
  background-color: transparent;
}
.cid-vnwTjZwuae .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vnwTjZwuae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vnwTjZwuae ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vnwTjZwuae .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vnwTjZwuae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vnwTjZwuae a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar {
    height: 70px;
  }
  .cid-vnwTjZwuae .navbar.opened {
    height: auto;
  }
  .cid-vnwTjZwuae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBdkRoT5j6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBdkRoT5j6 .mbr-section-title {
  text-align: center;
}
.cid-vnwTjZwuae {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vnwTjZwuae nav.navbar {
  position: fixed;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vnwTjZwuae .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vnwTjZwuae .dropdown-item:hover,
.cid-vnwTjZwuae .dropdown-item:focus {
  background: #cd2653 !important;
  color: white !important;
}
.cid-vnwTjZwuae .dropdown-item:hover span {
  color: white;
}
.cid-vnwTjZwuae .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vnwTjZwuae .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vnwTjZwuae .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vnwTjZwuae .nav-link {
  position: relative;
}
.cid-vnwTjZwuae .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vnwTjZwuae .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown-menu,
.cid-vnwTjZwuae .navbar.opened {
  background: #ffffff !important;
}
.cid-vnwTjZwuae .nav-item:focus,
.cid-vnwTjZwuae .nav-link:focus {
  outline: none;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vnwTjZwuae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vnwTjZwuae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vnwTjZwuae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vnwTjZwuae .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.opened {
  transition: all 0.3s;
}
.cid-vnwTjZwuae .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vnwTjZwuae .navbar .navbar-logo img {
  width: auto;
}
.cid-vnwTjZwuae .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vnwTjZwuae .navbar.collapsed {
  justify-content: center;
}
.cid-vnwTjZwuae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vnwTjZwuae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vnwTjZwuae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vnwTjZwuae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vnwTjZwuae .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vnwTjZwuae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vnwTjZwuae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vnwTjZwuae .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-vnwTjZwuae .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vnwTjZwuae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vnwTjZwuae .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vnwTjZwuae .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vnwTjZwuae .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vnwTjZwuae .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vnwTjZwuae .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vnwTjZwuae .navbar.navbar-short {
  min-height: 60px;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vnwTjZwuae .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vnwTjZwuae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vnwTjZwuae .dropdown-item.active,
.cid-vnwTjZwuae .dropdown-item:active {
  background-color: transparent;
}
.cid-vnwTjZwuae .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vnwTjZwuae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vnwTjZwuae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vnwTjZwuae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vnwTjZwuae ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vnwTjZwuae .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vnwTjZwuae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vnwTjZwuae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vnwTjZwuae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vnwTjZwuae .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vnwTjZwuae a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vnwTjZwuae .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-vnwTjZwuae .navbar {
    height: 70px;
  }
  .cid-vnwTjZwuae .navbar.opened {
    height: auto;
  }
  .cid-vnwTjZwuae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBdkEq6OFT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBdkEq6OFT .mbr-section-title {
  text-align: center;
}
