.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.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: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((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.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))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffd109 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd109 !important;
  border-color: #ffd109 !important;
  color: #090700 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b19000 !important;
  border-color: #b19000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #090700 !important;
  background-color: #b19000 !important;
  border-color: #b19000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffd109;
  color: #ffd109;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b19000 !important;
  background-color: transparent!important;
  border-color: #b19000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #090700 !important;
  background-color: #ffd109 !important;
  border-color: #ffd109 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffd109 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a28400 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffd109;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff7d5;
}
.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: #ffffff !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: #ffffff;
}
/* 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: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #ff6666 !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='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uzadxIfqff .navbar-dropdown {
  position: relative !important;
}
.cid-uzadxIfqff .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-uzadxIfqff .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzadxIfqff .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzadxIfqff .dropdown-item:hover,
.cid-uzadxIfqff .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uzadxIfqff .dropdown-item:hover span {
  color: white;
}
.cid-uzadxIfqff .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzadxIfqff .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzadxIfqff .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzadxIfqff .nav-link {
  position: relative;
}
.cid-uzadxIfqff .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzadxIfqff .container {
    flex-wrap: nowrap;
  }
}
.cid-uzadxIfqff .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzadxIfqff .dropdown-menu,
.cid-uzadxIfqff .navbar.opened {
  background: #124976 !important;
}
.cid-uzadxIfqff .nav-item:focus,
.cid-uzadxIfqff .nav-link:focus {
  outline: none;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzadxIfqff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzadxIfqff .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: #124976;
}
.cid-uzadxIfqff .navbar.opened {
  transition: all 0.3s;
}
.cid-uzadxIfqff .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzadxIfqff .navbar .navbar-logo img {
  width: auto;
}
.cid-uzadxIfqff .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzadxIfqff .navbar.collapsed {
  justify-content: center;
}
.cid-uzadxIfqff .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzadxIfqff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzadxIfqff .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzadxIfqff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzadxIfqff .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-uzadxIfqff .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzadxIfqff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzadxIfqff .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzadxIfqff .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzadxIfqff .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzadxIfqff .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzadxIfqff .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzadxIfqff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzadxIfqff .dropdown-item.active,
.cid-uzadxIfqff .dropdown-item:active {
  background-color: transparent;
}
.cid-uzadxIfqff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #124976;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzadxIfqff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzadxIfqff ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzadxIfqff .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzadxIfqff button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #124976;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uzadxIfqff a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar {
    height: 70px;
  }
  .cid-uzadxIfqff .navbar.opened {
    height: auto;
  }
  .cid-uzadxIfqff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7DR3n7AX2 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7DR3n7AX2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7DR3n7AX2 .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-u7DR3n7AX2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u7DR3n7AX2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u7DR3n7AX2 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u7DR3n7AX2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u7DR3n7AX2 .mbr-section-title {
  color: #124976;
}
.cid-uzal9ZL3bA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #124976;
}
.cid-uzal9ZL3bA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzal9ZL3bA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzal9ZL3bA .mbr-section-title {
  color: #ffffff;
}
.cid-tGQY8oY0rM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGQY8oY0rM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGQY8oY0rM .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-tGQY8oY0rM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGQY8oY0rM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGQY8oY0rM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGQY8oY0rM .mbr-section-title {
  color: #c80808;
}
.cid-tGR0AWzU1C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGR0AWzU1C .mbr-section-subtitle {
  color: #124976;
}
.cid-tLmE5OPYKy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #124976;
}
.cid-tLmE5OPYKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLmE5OPYKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLmE5OPYKy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uzaiCVOSrc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uzaiCVOSrc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzaiCVOSrc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzaiCVOSrc .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uzaiCVOSrc .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uzaiCVOSrc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzaiCVOSrc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaiCVOSrc .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uzaiCVOSrc .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaiCVOSrc .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzaiCVOSrc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uzaiCVOSrc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzaiCVOSrc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzaiCVOSrc .card-title {
  color: #124976;
}
.cid-s48udlf8KU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: left;
  color: #124976;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: left;
}
.cid-uCSTBTsrJt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uCSTBTsrJt .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uCSTBTsrJt .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uCSTBTsrJt .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uCSTBTsrJt .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #124976;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGPZ676bHi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #124976;
}
.cid-tGPZ676bHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGPZ676bHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGPZ676bHi .mbr-section-title {
  color: #ffffff;
}
.cid-tGPZ676bHi .mbr-section-subtitle {
  color: #efc408;
}
.cid-tGPZjGI25Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGPZjGI25Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGPZjGI25Z .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-tGPZjGI25Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGPZjGI25Z .row {
  flex-direction: row-reverse;
}
.cid-tGPZjGI25Z img {
  width: 100%;
}
.cid-uCSUdJSnBm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCSUdJSnBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCSUdJSnBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCSUdJSnBm .mbr-text,
.cid-uCSUdJSnBm .mbr-section-btn {
  color: #232323;
}
.cid-uCSUdJSnBm .card-title,
.cid-uCSUdJSnBm .card-box {
  color: #e61212;
}
.cid-uCSUdJSnBm .mbr-text,
.cid-uCSUdJSnBm .link-wrap {
  color: #ffffff;
}
.cid-uCSUdJSnBm .card-box .mbr-text,
.cid-uCSUdJSnBm .mbr-section-btn {
  color: #000000;
}
.cid-tGPZvkUb8W {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGPZvkUb8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGPZvkUb8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGPZvkUb8W .card-wrapper {
  background: #124976;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tGPZvkUb8W .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tGPZvkUb8W .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGPZvkUb8W .card-wrapper {
    padding: 4rem;
  }
}
.cid-tGPZvkUb8W .mbr-text,
.cid-tGPZvkUb8W .mbr-section-btn {
  color: #ffffff;
}
.cid-tGPZvkUb8W .card-title,
.cid-tGPZvkUb8W .card-box {
  text-align: left;
}
.cid-u32JJstqmq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #124976;
}
.cid-u32JJstqmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u32JJstqmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u32JJstqmq .mbr-section-title {
  color: #ffffff;
}
.cid-uzaDVchCwJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzaDVchCwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzaDVchCwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzaDVchCwJ .mbr-section-subtitle {
  text-align: left;
}
.cid-uJm0MZZcF0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJm0MZZcF0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uJm0MZZcF0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uJm0MZZcF0 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #124976;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uJm0MZZcF0 .mbr-text {
  color: #000000;
}
.cid-tGQ5WULZtP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGQ5WULZtP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGQ5WULZtP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGQ5WULZtP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tGQ5WULZtP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tGQ5WULZtP .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ffffff;
}
.cid-tGQ5WULZtP .panel-body,
.cid-tGQ5WULZtP .card-header {
  padding: 1rem 0;
}
.cid-tGQ5WULZtP .panel-title-edit {
  color: #000000;
}
.cid-tGQ5WULZtP H3 {
  color: #124976;
}
.cid-uzaFD3I2RL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #124976;
}
.cid-uzaFD3I2RL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzaFD3I2RL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzaFD3I2RL .mbr-section-title {
  color: #ffffff;
}
.cid-tHdU3BYXqf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHdU3BYXqf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdU3BYXqf .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-tHdU3BYXqf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tHdU3BYXqf .row {
  flex-direction: row-reverse;
}
.cid-tHdU3BYXqf img {
  width: 100%;
}
.cid-uCSY0fbSCy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCSY0fbSCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCSY0fbSCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCSY0fbSCy .mbr-text,
.cid-uCSY0fbSCy .mbr-section-btn {
  color: #232323;
}
.cid-uCSY0fbSCy .card-title,
.cid-uCSY0fbSCy .card-box {
  color: #000000;
}
.cid-uCSY0fbSCy .mbr-text,
.cid-uCSY0fbSCy .link-wrap {
  color: #ffffff;
}
.cid-uCSY0fbSCy .card-box .mbr-text,
.cid-uCSY0fbSCy .mbr-section-btn {
  color: #e61212;
}
.cid-tHdU6Q4S7M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHdU6Q4S7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdU6Q4S7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHdU6Q4S7M .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tHdU6Q4S7M .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tHdU6Q4S7M .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ffffff;
}
.cid-tHdU6Q4S7M .panel-body,
.cid-tHdU6Q4S7M .card-header {
  padding: 1rem 0;
}
.cid-tHdU6Q4S7M .panel-title-edit {
  color: #000000;
}
.cid-u7aipjNP3g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #124976;
}
.cid-u7aipjNP3g .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-u7aipjNP3g .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-u7aipjNP3g .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #f6f9fc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-u7aipjNP3g .mbr-text {
  color: #ffffff;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: left;
}
.cid-tGQgcDNQcF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGQgcDNQcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGQgcDNQcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGQgcDNQcF .mbr-section-subtitle {
  text-align: left;
}
.cid-uzadxIfqff .navbar-dropdown {
  position: relative !important;
}
.cid-uzadxIfqff .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-uzadxIfqff .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzadxIfqff .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzadxIfqff .dropdown-item:hover,
.cid-uzadxIfqff .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uzadxIfqff .dropdown-item:hover span {
  color: white;
}
.cid-uzadxIfqff .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzadxIfqff .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzadxIfqff .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzadxIfqff .nav-link {
  position: relative;
}
.cid-uzadxIfqff .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzadxIfqff .container {
    flex-wrap: nowrap;
  }
}
.cid-uzadxIfqff .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzadxIfqff .dropdown-menu,
.cid-uzadxIfqff .navbar.opened {
  background: #124976 !important;
}
.cid-uzadxIfqff .nav-item:focus,
.cid-uzadxIfqff .nav-link:focus {
  outline: none;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzadxIfqff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzadxIfqff .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: #124976;
}
.cid-uzadxIfqff .navbar.opened {
  transition: all 0.3s;
}
.cid-uzadxIfqff .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzadxIfqff .navbar .navbar-logo img {
  width: auto;
}
.cid-uzadxIfqff .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzadxIfqff .navbar.collapsed {
  justify-content: center;
}
.cid-uzadxIfqff .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzadxIfqff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzadxIfqff .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzadxIfqff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzadxIfqff .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-uzadxIfqff .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzadxIfqff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzadxIfqff .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzadxIfqff .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzadxIfqff .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzadxIfqff .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzadxIfqff .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzadxIfqff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzadxIfqff .dropdown-item.active,
.cid-uzadxIfqff .dropdown-item:active {
  background-color: transparent;
}
.cid-uzadxIfqff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #124976;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzadxIfqff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzadxIfqff ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzadxIfqff .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzadxIfqff button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #124976;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uzadxIfqff a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar {
    height: 70px;
  }
  .cid-uzadxIfqff .navbar.opened {
    height: auto;
  }
  .cid-uzadxIfqff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGQhtbB6we {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGQhtbB6we .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGQhtbB6we .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGQhtbB6we .mbr-section-subtitle {
  text-align: left;
}
.cid-uzadxIfqff .navbar-dropdown {
  position: relative !important;
}
.cid-uzadxIfqff .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-uzadxIfqff .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzadxIfqff .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzadxIfqff .dropdown-item:hover,
.cid-uzadxIfqff .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uzadxIfqff .dropdown-item:hover span {
  color: white;
}
.cid-uzadxIfqff .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzadxIfqff .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzadxIfqff .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzadxIfqff .nav-link {
  position: relative;
}
.cid-uzadxIfqff .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzadxIfqff .container {
    flex-wrap: nowrap;
  }
}
.cid-uzadxIfqff .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzadxIfqff .dropdown-menu,
.cid-uzadxIfqff .navbar.opened {
  background: #124976 !important;
}
.cid-uzadxIfqff .nav-item:focus,
.cid-uzadxIfqff .nav-link:focus {
  outline: none;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzadxIfqff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzadxIfqff .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: #124976;
}
.cid-uzadxIfqff .navbar.opened {
  transition: all 0.3s;
}
.cid-uzadxIfqff .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzadxIfqff .navbar .navbar-logo img {
  width: auto;
}
.cid-uzadxIfqff .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzadxIfqff .navbar.collapsed {
  justify-content: center;
}
.cid-uzadxIfqff .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzadxIfqff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzadxIfqff .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzadxIfqff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzadxIfqff .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-uzadxIfqff .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzadxIfqff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzadxIfqff .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzadxIfqff .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzadxIfqff .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzadxIfqff .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzadxIfqff .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzadxIfqff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzadxIfqff .dropdown-item.active,
.cid-uzadxIfqff .dropdown-item:active {
  background-color: transparent;
}
.cid-uzadxIfqff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #124976;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzadxIfqff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzadxIfqff ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzadxIfqff .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzadxIfqff button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #124976;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uzadxIfqff a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar {
    height: 70px;
  }
  .cid-uzadxIfqff .navbar.opened {
    height: auto;
  }
  .cid-uzadxIfqff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGQhVevZjx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGQhVevZjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGQhVevZjx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGQhVevZjx .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tGQhVevZjx .mbr-section-subtitle {
  text-align: left;
}
.cid-uzadxIfqff .navbar-dropdown {
  position: relative !important;
}
.cid-uzadxIfqff .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-uzadxIfqff .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzadxIfqff .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzadxIfqff .dropdown-item:hover,
.cid-uzadxIfqff .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uzadxIfqff .dropdown-item:hover span {
  color: white;
}
.cid-uzadxIfqff .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzadxIfqff .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzadxIfqff .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzadxIfqff .nav-link {
  position: relative;
}
.cid-uzadxIfqff .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzadxIfqff .container {
    flex-wrap: nowrap;
  }
}
.cid-uzadxIfqff .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzadxIfqff .dropdown-menu,
.cid-uzadxIfqff .navbar.opened {
  background: #124976 !important;
}
.cid-uzadxIfqff .nav-item:focus,
.cid-uzadxIfqff .nav-link:focus {
  outline: none;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzadxIfqff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzadxIfqff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzadxIfqff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzadxIfqff .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: #124976;
}
.cid-uzadxIfqff .navbar.opened {
  transition: all 0.3s;
}
.cid-uzadxIfqff .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzadxIfqff .navbar .navbar-logo img {
  width: auto;
}
.cid-uzadxIfqff .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzadxIfqff .navbar.collapsed {
  justify-content: center;
}
.cid-uzadxIfqff .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzadxIfqff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzadxIfqff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzadxIfqff .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzadxIfqff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzadxIfqff .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-uzadxIfqff .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzadxIfqff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzadxIfqff .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzadxIfqff .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzadxIfqff .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzadxIfqff .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzadxIfqff .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzadxIfqff .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzadxIfqff .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzadxIfqff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzadxIfqff .dropdown-item.active,
.cid-uzadxIfqff .dropdown-item:active {
  background-color: transparent;
}
.cid-uzadxIfqff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzadxIfqff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #124976;
}
.cid-uzadxIfqff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzadxIfqff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzadxIfqff ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzadxIfqff .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzadxIfqff button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #124976;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzadxIfqff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzadxIfqff nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzadxIfqff .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uzadxIfqff a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzadxIfqff .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-uzadxIfqff .navbar {
    height: 70px;
  }
  .cid-uzadxIfqff .navbar.opened {
    height: auto;
  }
  .cid-uzadxIfqff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

/* ===== Genius Brain Signal — Modern UI Theme (slate + amber, matched to Genius Song) ===== */
:root {
  --brand-primary: #0f172a;
  --brand-primary-deep: #020617;
  --brand-primary-soft: #1e293b;
  --brand-accent: #e8b923;
  --brand-accent-hover: #d4a61a;
  --brand-accent-ink: #111827;
  --brand-heading: #0f172a;
  --brand-surface: #f8fafc;
  --brand-surface-2: #f1f5f9;
  --brand-ink: #1e293b;
  --brand-muted: #64748b;
  --brand-card: #ffffff;
  --brand-border: #e2e8f0;
  --brand-hero-accent: #0ea5e9;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

html,
body {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(14, 165, 233, 0.08), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(232, 185, 35, 0.07), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 55%, #eef2f7 100%) !important;
  color: var(--brand-ink);
  font-family: Jost, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* Body offset for fixed navbar */
body { padding-top: 72px; }

/* ---- Buttons ---- */
.btn {
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.2s ease, box-shadow 0.25s var(--ease) !important;
}
.btn-warning,
.btn-warning:active,
.btn-secondary,
.btn-secondary:active,
.btn-black-outline:hover {
  background: linear-gradient(180deg, #f0c73a 0%, var(--brand-accent) 100%) !important;
  border: 1px solid #c99710 !important;
  color: var(--brand-accent-ink) !important;
  box-shadow: 0 8px 20px rgba(232, 185, 35, 0.28);
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  background: linear-gradient(180deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%) !important;
  border-color: #b8880c !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(232, 185, 35, 0.35);
}
.btn-black-outline {
  border-radius: 999px !important;
  border: 2px solid var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  background: transparent !important;
  font-weight: 700 !important;
}
.btn-black-outline:hover {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-color: var(--brand-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

/* ---- Navbar — dark glass, fixed ---- */
.menu1 .navbar,
.cid-uzadxIfqff .navbar,
.menu1 .navbar-dropdown.navbar-short,
.cid-uzadxIfqff .navbar.navbar-short,
.menu1 .navbar.opened,
.cid-uzadxIfqff .navbar.opened {
  background: rgba(15, 23, 42, 0.92) !important;
  background-color: rgba(15, 23, 42, 0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 24px rgba(2, 6, 23, 0.18) !important;
  transition: background 0.25s ease;
}
.cid-uzadxIfqff nav.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.cid-uzadxIfqff .navbar-logo { display: none !important; }
.cid-uzadxIfqff .navbar-brand .navbar-caption,
.cid-uzadxIfqff .navbar-caption,
.cid-uzadxIfqff .navbar-caption.text-white,
.cid-uzadxIfqff .navbar-caption.text-primary {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  font-size: 1.35rem !important;
}
.cid-uzadxIfqff .nav-link,
.cid-uzadxIfqff .nav-link.text-white,
.cid-uzadxIfqff .nav-link.text-primary,
.cid-uzadxIfqff .nav-link.text-danger {
  color: #ffffff !important;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.cid-uzadxIfqff .nav-link:hover {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uzadxIfqff .nav-link .mbr-iconfont,
.cid-uzadxIfqff .nav-link .socicon {
  display: none !important;
}
.cid-uzadxIfqff .hamburger span,
.cid-uzadxIfqff .navbar .hamburger span {
  background-color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar.opened,
  .cid-uzadxIfqff .navbar.opened .navbar-collapse {
    background: rgba(15, 23, 42, 0.96) !important;
  }
  .cid-uzadxIfqff .navbar.opened {
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.22) !important;
  }
}

/* ---- Section title bars ---- */
.content4,
[class*="cid-"].content4 {
  background: linear-gradient(120deg, #0f172a 0%, #1e293b 48%, #0f172a 100%) !important;
  padding-top: 1.65rem !important;
  padding-bottom: 1.65rem !important;
  position: relative;
  overflow: hidden;
}
.content4::before,
[class*="cid-"].content4::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 180px at 20% 50%, rgba(14, 165, 233, 0.18), transparent 70%),
    radial-gradient(500px 160px at 80% 40%, rgba(232, 185, 35, 0.12), transparent 70%);
  pointer-events: none;
}
.content4 .mbr-section-title,
.content4 .mbr-section-title strong,
.content4 .mbr-section-subtitle,
.content4 .mbr-text,
[class*="cid-"].content4 .mbr-section-title,
[class*="cid-"].content4 .mbr-section-title strong {
  color: #ffffff !important;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

/* Hero — keep clean over page wash */
.header14,
.cid-u7DR3n7AX2 {
  background: transparent !important;
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
}
.header14 .mbr-section-title,
.cid-u7DR3n7AX2 .mbr-section-title,
.cid-u7DR3n7AX2 .mbr-section-title strong {
  color: var(--brand-primary) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}
.header14 .hero-headline,
.cid-u7DR3n7AX2 .hero-headline,
.cid-u7DR3n7AX2 .hero-headline strong,
.header14 .hero-headline strong {
  color: #dc2626 !important;
}
.header14 .mbr-text,
.cid-u7DR3n7AX2 .mbr-text {
  color: var(--brand-ink) !important;
  line-height: 1.65 !important;
}
.header14 .image-wrapper img,
.cid-u7DR3n7AX2 .image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  transition: transform 0.45s var(--ease);
}
.header14 .image-wrapper:hover img {
  transform: translateY(-4px) scale(1.01);
}
.cid-u7DR3n7AX2 .image-wrapper,
.cid-u7DR3n7AX2 .text-wrapper {
  animation: fadeUp 0.7s var(--ease) both;
}
.cid-u7DR3n7AX2 .text-wrapper { animation-delay: 0.08s; }
.cid-u7DR3n7AX2 .image-wrapper { animation-delay: 0.14s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Soft surfaces */
.header14,
.content5,
.content8,
.content9,
.content1,
.content15,
.content17,
.image1,
.image3,
.info3,
.team2 {
  background: transparent !important;
}
.content5 .mbr-text,
.content8 .mbr-text,
.content9 .mbr-text,
.image1 .mbr-text {
  color: var(--brand-ink) !important;
}
.content5 .mbr-section-subtitle,
.content5 .mbr-section-subtitle strong {
  color: var(--brand-heading) !important;
  letter-spacing: -0.02em;
}

/* Images */
.image1 .image-wrapper img,
.image3 .image-wrapper img,
.header14 .image-wrapper img,
[class*="cid-"] .image-wrapper img {
  border-radius: var(--radius-md);
}
.image3 .image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.4s var(--ease);
}
.image3 .image-wrapper:hover img {
  transform: scale(1.02);
}

/* Review / team cards */
.team2 .card-wrapper {
  background: var(--brand-card) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.25rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  margin-bottom: 1rem;
}
.team2 .card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.team2 .image-wrapper {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.team2 .image-wrapper img {
  border-radius: 12px !important;
  object-fit: cover;
}
.team2 .card-title,
.team2 .mbr-text {
  color: var(--brand-ink) !important;
}

/* Guarantee / info blocks */
.content15 .card-wrapper {
  background: var(--brand-card) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 1.5rem !important;
}
/* Mid-page CTAs — no card, plain button */
.info3 .card,
.info3 .card-wrapper,
.info3 .card-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.info3 .mbr-section-btn {
  text-align: center !important;
  margin: 0.5rem 0 !important;
}
.info3 .mbr-section-btn .btn {
  margin: 0 auto !important;
}
.content15 .card-title,
.content15 .card-title strong,
.content15 .mbr-text {
  color: var(--brand-ink) !important;
}
.content15 .mbr-white,
.content15 .card-title.mbr-white {
  color: var(--brand-heading) !important;
}

/* Feature lists */
.content9 .mbr-text,
.content8 .mbr-text li {
  color: var(--brand-ink) !important;
  line-height: 1.65 !important;
}

/* FAQ accordion */
.toggle-panel .card,
.accordionStyles .card,
.content17 .card {
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  background: var(--brand-card) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 0.85rem !important;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.toggle-panel .card:hover,
.content17 .card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}
.toggle-panel .card-header,
.accordionStyles .card-header,
.content17 .card-header {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  padding: 1rem 1.25rem !important;
}
.content17 .panel-body,
.toggle-panel .panel-body {
  padding: 1rem 1.25rem 1.25rem !important;
}
.content17 .panel-title-edit,
.content17 .panel-text,
.content17 .mbr-section-title,
.content17 .mbr-section-title strong {
  color: var(--brand-ink) !important;
}
.content17 .section-head .mbr-section-title,
.content17 .section-head .mbr-section-title strong {
  color: var(--brand-heading) !important;
}
.content17 .sign,
.content17 .mobi-mbri-arrow-down {
  color: var(--brand-primary) !important;
}

/* Legal content pages */
.legal-page .content5,
.content5.legal-content {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.content5 .mbr-section-subtitle strong {
  color: var(--brand-heading) !important;
}

/* ---- Footer ---- */
.footer3,
.cid-s48P1Icc8J {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.footer3 .mbr-text,
.cid-s48P1Icc8J .mbr-text {
  color: rgba(226, 232, 240, 0.85) !important;
  line-height: 1.6 !important;
}
.footer3 a,
.cid-s48P1Icc8J a,
.footer3 .text-primary {
  color: rgba(226, 232, 240, 0.95) !important;
  transition: color 0.2s ease;
}
.footer3 a:hover,
.cid-s48P1Icc8J a:hover {
  color: var(--brand-accent) !important;
}

/* Hide scroll-to-top + mobirise badge strip */
#scrollToTop,
.scrollToTop,
.mbr-arrow-up {
  display: none !important;
}

/* ---- Sticky CTA ---- */
.sticky-cta-bar { display: none; }
body.has-sticky-cta {
  padding-bottom: 100px !important;
  z-index: auto !important;
  isolation: auto !important;
}
body.has-sticky-cta .sticky-cta-bar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483647 !important;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.35) 100%) !important;
  transform: none !important;
}
.sticky-cta-btn {
  pointer-events: auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 60px;
  padding: 14px 22px !important;
  background: linear-gradient(180deg, #f0c73a 0%, var(--brand-accent) 100%) !important;
  color: var(--brand-accent-ink) !important;
  font-family: Jost, Arial, sans-serif !important;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid #c99710 !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
  transition: transform 0.25s var(--ease), background 0.2s ease;
  animation: stickyPulse 2.8s var(--ease) infinite;
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28); }
  50% { box-shadow: 0 12px 32px rgba(232, 185, 35, 0.4); }
}
.sticky-cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  animation: none;
}
.sticky-cta-label {
  display: block;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em;
  color: #111827 !important;
}
.sticky-cta-sub {
  display: block;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #334155 !important;
}
.sticky-cta-btn:hover,
.sticky-cta-btn:focus,
.sticky-cta-btn:active,
.sticky-cta-btn:visited {
  background: linear-gradient(180deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%) !important;
  color: #000 !important;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  body.has-sticky-cta .sticky-cta-bar {
    padding-left: 40px;
    padding-right: 40px;
  }
  .sticky-cta-label { font-size: 1.18rem !important; }
}

/* Typography lock */
body,
.mbr-fonts-style,
.mbr-section-title,
.mbr-section-subtitle,
.mbr-text,
.card-title,
.navbar-caption,
.btn,
.display-1,
.display-2,
.display-4,
.display-5,
.display-7,
.panel-title-edit,
.panel-text,
.sticky-cta-btn,
.sticky-cta-label,
.sticky-cta-sub {
  font-family: 'Jost', sans-serif !important;
}

/* Nav text-primary override only in menu */
.cid-uzadxIfqff .navbar-caption,
.cid-uzadxIfqff .nav-link.text-primary,
.cid-uzadxIfqff a.text-primary {
  color: #ffffff !important;
}

@media (max-width: 767px) {
  body { padding-top: 64px; }
  .content4 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }
  .cid-u7DR3n7AX2 .image-wrapper img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/* Legal pages — readable dark text on soft surface */
body.legal-page .content5 .mbr-section-title,
body.legal-page .content5 .mbr-section-title strong,
body.legal-page .content5 .mbr-section-subtitle,
body.legal-page .content5 .mbr-section-subtitle strong,
body.legal-page .legal-content .mbr-section-title,
body.legal-page .legal-content .mbr-section-title strong,
body.legal-page .legal-content .mbr-section-subtitle,
body.legal-page .legal-content .mbr-section-subtitle strong,
body.legal-page .legal-content .mbr-text,
body.legal-page .content5 .mbr-text {
  color: var(--brand-ink) !important;
}
body.legal-page .legal-content,
body.legal-page .content5.legal-content {
  background: transparent !important;
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
}
body.legal-page .legal-content .title,
body.legal-page .legal-content .mbr-section-title {
  text-align: left !important;
}
body.legal-page .legal-content .mbr-section-title {
  font-size: 2rem !important;
  margin-bottom: 1.25rem !important;
}

/* FAQ heading stays dark (not dark bar) */
.content17 .section-head .mbr-section-title,
.content17 .section-head .mbr-section-title strong {
  color: var(--brand-heading) !important;
}

/* Mid CTA info3 polish */
.info3 .mbr-text,
.info3 .mbr-text strong {
  color: var(--brand-heading) !important;
}

/* ===== Visibility + header consistency fixes ===== */

/* Body / intro copy under dark title bars — always dark ink on light */
.section-intro,
.section-intro.content5,
.content5.section-intro {
  background: transparent !important;
  padding-top: 1.75rem !important;
  padding-bottom: 1.5rem !important;
}
.section-intro .mbr-text,
.section-intro .mbr-text strong,
.section-intro p {
  color: var(--brand-ink) !important;
  text-align: left !important;
  line-height: 1.7 !important;
}

/* Quick links near footer — was white-on-light */
.quick-links,
.cid-u7aipjNP3g.quick-links,
.content8.cid-u7aipjNP3g {
  background: transparent !important;
  padding-top: 1.5rem !important;
  padding-bottom: 2rem !important;
}
.cid-u7aipjNP3g .mbr-text,
.cid-u7aipjNP3g .mbr-text a,
.quick-links .mbr-text,
.quick-links a {
  color: var(--brand-heading) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
}
.quick-links a:hover,
.cid-u7aipjNP3g .mbr-text a:hover {
  color: var(--brand-accent-hover) !important;
  text-decoration: underline !important;
}
/* Remove checkmark points */
.cid-u7aipjNP3g .counter-container ul,
.quick-links .counter-container ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 420px;
}
.cid-u7aipjNP3g .counter-container ul li,
.quick-links .counter-container ul li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0.65rem !important;
  position: static !important;
}
.cid-u7aipjNP3g .counter-container ul li:before,
.quick-links .counter-container ul li:before {
  content: none !important;
  display: none !important;
}

/* Benefits list — ensure dark readable text */
.cid-uJm0MZZcF0,
.cid-uJm0MZZcF0 .mbr-text,
.cid-uJm0MZZcF0 .mbr-text li,
.cid-uJm0MZZcF0 .mbr-text span,
.cid-uJm0MZZcF0 .mbr-text strong {
  color: var(--brand-ink) !important;
}
.cid-uJm0MZZcF0 .counter-container ul li:before {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

/* Feature numbered list */
.cid-uCSTBTsrJt .mbr-text,
.cid-uCSTBTsrJt .mbr-text li,
.cid-uCSTBTsrJt .mbr-text span,
.cid-uCSTBTsrJt .mbr-text strong {
  color: var(--brand-ink) !important;
}

/* Content body sections — never force white text outside dark bars */
.content5 .mbr-text,
.content5 .mbr-section-subtitle,
.content9 .mbr-text,
.content1 .mbr-text,
.content1 .mbr-section-subtitle {
  color: var(--brand-ink) !important;
}

/* FAQ: consistent dark title treatment */
.content17 .section-head {
  background: linear-gradient(120deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  overflow: hidden;
}
.content17 .section-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 180px at 20% 50%, rgba(14, 165, 233, 0.18), transparent 70%),
    radial-gradient(500px 160px at 80% 40%, rgba(232, 185, 35, 0.12), transparent 70%);
  pointer-events: none;
}
.content17 .section-head .mbr-section-title,
.content17 .section-head .mbr-section-title strong {
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

/* Guarantee card — readable dark text (was mbr-white) */
.content15 .card-title,
.content15 .card-title strong,
.content15 .card-title.mbr-white,
.content15 .mbr-text,
.content15 .mbr-white {
  color: var(--brand-heading) !important;
}

/* Title bars: consistent spacing */
.content4 .mbr-section-title {
  margin-bottom: 0 !important;
}
.content4 .title {
  margin: 0;
}

/* Override leftover white utility classes in light content */
.content5 a.text-primary,
.content5 a.text-danger,
.content8 a.text-primary,
.content8 a.text-danger,
.section-intro a.text-primary,
.quick-links a.text-primary,
.quick-links a.text-danger {
  color: var(--brand-heading) !important;
}

/* Image description under pricing */
.image3 .mbr-description,
.image3 .mbr-description strong {
  color: var(--brand-ink) !important;
}

/* ===== Consistent section spacing (final overrides) ===== */

/* Dark title bars — roomy, consistent */
section.content4,
.content4[class*="cid-"],
[class*="cid-"].content4 {
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
  margin-bottom: 0 !important;
}
.content4 .mbr-section-title,
.content4 .mbr-section-title.mb-4,
.content4 h2.mbr-section-title,
.content4 h5.mbr-section-title,
.content4 p.mbr-section-title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.25 !important;
  font-size: clamp(1.7rem, 3vw, 2.2rem) !important;
}
.content4 .mbr-section-subtitle {
  margin-top: 0.55rem !important;
  margin-bottom: 0 !important;
  line-height: 1.45 !important;
  opacity: 0.92;
}

/* Breathing room AFTER every title bar before next content */
section.content4 + section {
  padding-top: 1.25rem !important;
}

/* Image / article blocks under titles */
section.image1,
section.image2,
section.image3,
section.team2,
section.clients2,
section.content9,
section.content8:not(.quick-links),
section.content15,
section.info3,
section.content17 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* When image follows title bar, keep the +section rule and ensure image top pad */
section.content4 + section.image1,
section.content4 + section.image3,
section.content4 + section.team2,
section.content4 + section.clients2,
section.content4 + section.content9,
section.content4 + section.content5,
section.content4 + section.section-intro {
  padding-top: 1.35rem !important;
}

/* Intro/body under titles */
.section-intro,
section.content5.section-intro,
section.section-intro {
  padding-top: 1.15rem !important;
  padding-bottom: 1.15rem !important;
}
section.content4 + section.section-intro,
section.content4 + section.content5.section-intro {
  padding-top: 1.25rem !important;
}

/* Collapse stacked intro + list gaps (benefits / features / howto) */
section.section-intro + section.content8,
section.section-intro + section.content9,
section.content5.section-intro + section.content8,
section.content5.section-intro + section.content9,
section.content5.section-intro + section.numbered-list,
section.image3 + section.content5.section-intro,
section.image3 + section.numbered-list {
  padding-top: 0.35rem !important;
}
section.section-intro + section.content8,
section.content5.section-intro + section.content8,
section.content5.section-intro + section.content9 {
  padding-bottom: 1.5rem !important;
}
#benefits-content {
  padding-bottom: 0.35rem !important;
}
#content8-3h {
  padding-top: 0.35rem !important;
  padding-bottom: 1.75rem !important;
}
#features-content {
  padding-bottom: 0.35rem !important;
}
#content9-3b {
  padding-top: 0.35rem !important;
}
#how-to-use-content {
  padding-bottom: 0.35rem !important;
}
#content9-howto {
  padding-top: 0.35rem !important;
}

/* Hero spacing under fixed nav */
.header14,
.cid-u7DR3n7AX2 {
  padding-top: 2.75rem !important;
  padding-bottom: 3rem !important;
}

/* FAQ accordion block spacing */
.content17 .section-head {
  margin-bottom: 1.5rem !important;
  padding: 1.75rem 1.35rem !important;
}
.content17 .toggle-panel {
  padding-bottom: 1rem;
}

/* Guarantee card only (CTA info3 has no card) */
.content15 .card-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.info3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Quick links */
.quick-links {
  padding-top: 1.5rem !important;
  padding-bottom: 2rem !important;
}

/* Mobile: keep proportion, still airy */
@media (max-width: 767px) {
  section.content4,
  .content4[class*="cid-"],
  [class*="cid-"].content4 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .content4 .mbr-section-title,
  .content4 h2.mbr-section-title {
    font-size: 1.55rem !important;
  }
  section.content4 + section,
  section.content4 + section.image1,
  section.content4 + section.image3,
  section.content4 + section.team2,
  section.content4 + section.clients2,
  section.content4 + section.content9,
  section.content4 + section.content5,
  section.content4 + section.section-intro {
    padding-top: 1.1rem !important;
  }
  section.image1,
  section.image3,
  section.team2,
  section.clients2,
  section.content9 {
    padding-bottom: 1.35rem !important;
  }
}

/* ===== Hero: centered red headline + larger image ===== */
.cid-u7DR3n7AX2 .hero-headline,
.header14 .hero-headline,
.cid-u7DR3n7AX2 h1.mbr-section-title.hero-headline {
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
  color: #dc2626 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
}
.cid-u7DR3n7AX2 .hero-headline strong,
.header14 .hero-headline strong {
  color: #dc2626 !important;
  font-weight: 800 !important;
}

/* Bigger hero product image */
.cid-u7DR3n7AX2 .hero-main-row .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u7DR3n7AX2 .hero-main-row .image-wrapper img,
.cid-u7DR3n7AX2 .image-wrapper img {
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}
@media (min-width: 992px) {
  .cid-u7DR3n7AX2 .hero-main-row .image-wrapper img,
  .cid-u7DR3n7AX2 .image-wrapper img {
    max-width: 620px !important;
  }
}
@media (max-width: 767px) {
  .cid-u7DR3n7AX2 .hero-headline {
    font-size: 1.85rem !important;
    margin-bottom: 1.5rem !important;
  }
  .cid-u7DR3n7AX2 .hero-main-row .image-wrapper {
    margin-bottom: 1.5rem;
  }
  .cid-u7DR3n7AX2 .hero-main-row .image-wrapper img,
  .cid-u7DR3n7AX2 .image-wrapper img {
    max-width: 340px !important;
  }
}

/* ===== FAQ like The Genius Song + tighter offer spacing ===== */

/* Remove old nested FAQ title box */
.content17 .section-head {
  display: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.content17 .section-head::before {
  display: none !important;
}

/* Accordion row: question left, arrow right */
.content17 .panel-title,
.toggle-panel .panel-title,
.accordionStyles .panel-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem;
  width: 100%;
  text-decoration: none !important;
  color: var(--brand-ink) !important;
}
.content17 .panel-title-edit,
.content17 .panel-title-edit strong {
  color: var(--brand-ink) !important;
  font-weight: 700 !important;
  margin: 0 !important;
  flex: 1;
  text-align: left;
  line-height: 1.4 !important;
}
.content17 .sign,
.content17 .mbr-iconfont,
.content17 .mbri-arrow-down,
.content17 .mobi-mbri-arrow-down {
  color: var(--brand-accent) !important;
  font-size: 1.35rem !important;
  padding-left: 0.75rem;
  flex-shrink: 0;
}
.content17 .card-header {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border: none !important;
  padding: 1.05rem 1.25rem !important;
}
.content17 .card {
  border: 1px solid var(--brand-border) !important;
  border-radius: 14px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 0.85rem !important;
}
.content17 .card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}
.content17 .panel-body {
  padding: 0.25rem 1.25rem 1.2rem !important;
  background: #fff !important;
}
.content17 .panel-text {
  color: var(--brand-ink) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* FAQ section padding under dark title */
section.content4 + section.content17,
#faq-list {
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
  background: transparent !important;
}

/* Offer / pricing block — compact spacing */
.offer-block,
section.image3.offer-block,
#image3-1p.offer-block {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.offer-block .image-wrapper {
  margin-bottom: 1.25rem !important;
}
.offer-block .image-wrapper img {
  max-width: 420px;
  margin: 0 auto;
  display: block;
}
.offer-cta {
  padding-top: 0.25rem !important;
}
.offer-cta .mbr-text {
  color: var(--brand-heading) !important;
  margin-bottom: 0.35rem !important;
}
.offer-cta .display-5 {
  margin-bottom: 1rem !important;
}
.offer-cta .mbr-section-btn {
  margin-top: 0 !important;
}
.offer-cta .btn {
  margin: 0.25rem auto !important;
}

/* Don't let global image3 padding blow up offer */
section.content4 + section.offer-block {
  padding-top: 2rem !important;
}

/* Mid CTA info3 also compact */
section.info3 {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}
section.content4 + section.info3,
section.image3 + section.info3 {
  padding-top: 0.75rem !important;
}

/* ===== Mobile menu — one consistent navy (fix #124976 clash) ===== */
.cid-uzadxIfqff .navbar,
.cid-uzadxIfqff .navbar.opened,
.cid-uzadxIfqff .navbar.collapsed,
.cid-uzadxIfqff .navbar.collapsed.opened,
.cid-uzadxIfqff .dropdown-menu,
.menu1 .navbar,
.menu1 .navbar.opened {
  background: #0f172a !important;
  background-color: #0f172a !important;
}

@media (max-width: 991px) {
  .cid-uzadxIfqff .navbar,
  .cid-uzadxIfqff .navbar.opened,
  .cid-uzadxIfqff .navbar.opened .navbar-collapse,
  .cid-uzadxIfqff .navbar .navbar-collapse,
  .cid-uzadxIfqff .navbar.collapsed,
  .cid-uzadxIfqff .navbar.collapsed.opened,
  .cid-uzadxIfqff .navbar.collapsed .navbar-collapse,
  .cid-uzadxIfqff .navbar.opened .container,
  .cid-uzadxIfqff .navbar.opened .navbar-nav,
  .cid-uzadxIfqff .navbar.opened .navbar-buttons,
  .cid-uzadxIfqff .dropdown-menu {
    background: #0f172a !important;
    background-color: #0f172a !important;
  }
  .cid-uzadxIfqff .navbar.opened {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.28) !important;
  }
  .cid-uzadxIfqff .navbar.opened .navbar-collapse {
    border: none !important;
    box-shadow: none !important;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
  }
}

/* ===== Footer copyright + navbar logo ===== */
.footer3 .row-copirayt,
.cid-s48P1Icc8J .row-copirayt {
  width: 100%;
  text-align: center !important;
}
.footer3 .footer-copy,
.cid-s48P1Icc8J .footer-copy,
.footer3 .mbr-text.align-center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.footer3 .footer-brand-link,
.cid-s48P1Icc8J .footer-brand-link {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.footer3 .footer-brand-link:hover,
.cid-s48P1Icc8J .footer-brand-link:hover {
  color: var(--brand-accent) !important;
}

/* Show brand logo in navbar (internal home link) */
.cid-uzadxIfqff .navbar-logo {
  display: inline-flex !important;
  align-items: center;
  margin-right: 0.65rem;
}
.cid-uzadxIfqff .navbar-logo a {
  display: inline-flex;
  align-items: center;
}
.cid-uzadxIfqff .nav-brand-logo,
.cid-uzadxIfqff .navbar-logo img.nav-brand-logo {
  width: 42px !important;
  height: 42px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  display: block !important;
}
.cid-uzadxIfqff .navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem;
}
@media (max-width: 575px) {
  .cid-uzadxIfqff .nav-brand-logo,
  .cid-uzadxIfqff .navbar-logo img.nav-brand-logo {
    width: 36px !important;
    height: 36px !important;
  }
  .cid-uzadxIfqff .navbar-caption {
    font-size: 1.05rem !important;
  }
}

/* ===== Included Bonuses section (Genius Song structure) ===== */
.bonus-section,
#bonuses-list {
  padding-top: 1.25rem !important;
  padding-bottom: 1.75rem !important;
  background: transparent !important;
}
.bonus-section .item {
  margin-bottom: 1.25rem;
}
.bonus-section .item-wrapper,
#bonuses-list .item-wrapper {
  background: var(--brand-card, #fff) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.25rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bonus-section .item-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.bonus-section .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.bonus-section .image-wrapper a {
  display: block;
  line-height: 0;
}
.bonus-section .image-wrapper img {
  width: 100% !important;
  max-width: 200px !important;
  height: auto !important;
  max-height: 240px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  margin: 0 auto;
  display: block;
}
.bonus-section .card-title,
.bonus-section .card-title strong {
  color: var(--brand-heading) !important;
}
.bonus-section .mbr-text {
  color: var(--brand-ink) !important;
  line-height: 1.6 !important;
}
.bonus-section .bonus-price {
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}
.bonus-section .bonus-free {
  color: #15803d !important;
  font-weight: 700 !important;
}
.bonus-section .bonus-rrp {
  color: var(--brand-muted) !important;
}
.bonus-section .bonus-rrp del {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .bonus-section .image-wrapper {
    margin-bottom: 1rem;
  }
  .bonus-section .image-wrapper img {
    max-width: 140px !important;
    max-height: 160px !important;
  }
  .bonus-section .card-box {
    text-align: center;
  }
}

/* ===== Extra sales sections (included / after order / guarantee / secure) ===== */
.included-list ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}
.included-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2.6rem;
  border-bottom: 1px solid var(--brand-border);
  color: var(--brand-ink) !important;
  line-height: 1.55;
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

#image3-order-page {
  padding-top: 0.5rem !important;
  padding-bottom: 2rem !important;
}
#image3-order-page .image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  width: 100%;
  height: auto;
}

.section-guarantee,
#money-back-guarantee {
  padding-top: 2rem !important;
  padding-bottom: 2.25rem !important;
  background: transparent !important;
}
.section-guarantee .image-wrapper img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
}
.section-guarantee .mbr-section-title,
.section-guarantee .mbr-section-title strong {
  color: var(--brand-heading) !important;
  line-height: 1.25 !important;
}
.section-guarantee .mbr-text {
  color: var(--brand-ink) !important;
  line-height: 1.65 !important;
}
@media (max-width: 991px) {
  .section-guarantee .image-wrapper {
    margin-bottom: 1.25rem;
  }
  .section-guarantee .text-wrapper {
    text-align: center;
  }
}

.secure-cta-block,
#image3-secure {
  padding-top: 1.75rem !important;
  padding-bottom: 2.5rem !important;
}
.secure-cta-block .image-wrapper img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.secure-cta-copy .mbr-text {
  color: var(--brand-heading) !important;
}
.order-now-btn-wrap {
  margin: 0.75rem auto 0.5rem !important;
}
.order-now-img {
  max-width: 280px !important;
  width: 100% !important;
  height: auto !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Quick links — no bullets/points (final) */
.quick-links ul li::before,
.cid-u7aipjNP3g ul li::before,
.cid-u7aipjNP3g .counter-container ul li:before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}
.quick-links .counter-container,
.cid-u7aipjNP3g .counter-container {
  padding-left: 0 !important;
}

/* ===== Customer reviews (Genius Song clients2 card grid) ===== */
.reviews-section,
#customer-reviews.reviews-section,
.clients2.reviews-section {
  padding-top: 1.15rem !important;
  padding-bottom: 1.75rem !important;
  background: transparent !important;
}
.reviews-section .row {
  align-items: stretch;
}
.reviews-section .card {
  border: none !important;
  background: transparent !important;
  margin-bottom: 1.25rem;
}
.reviews-section .card-wrapper {
  background: var(--brand-card, #fff) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.25rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
}
.reviews-section .card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.reviews-section .img-wrapper {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem !important;
  width: 112px !important;
  height: 112px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 0 !important;
}
.reviews-section .img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}
.reviews-section .card-box {
  text-align: center !important;
}
.reviews-section .mbr-text {
  color: var(--brand-ink) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
.reviews-section .mbr-text a,
.reviews-section .mbr-text a strong {
  color: var(--brand-primary) !important;
  text-decoration: underline;
}
.reviews-section .mbr-text a:hover {
  color: var(--brand-accent, #ca8a04) !important;
}
@media (min-width: 768px) {
  .reviews-section .card-wrapper {
    padding: 1.5rem !important;
  }
}
@media (max-width: 991px) {
  .reviews-section .card-wrapper {
    margin-bottom: 0.5rem;
  }
}

/* Who / How numbered steps */
.numbered-list {
  padding-top: 0.25rem !important;
  padding-bottom: 2rem !important;
  background: #ffffff !important;
}
.numbered-list .counter-container ol {
  margin: 0;
  padding-left: 3.25rem;
  counter-reset: myCounter;
  list-style: none;
}
.numbered-list .counter-container ol li {
  list-style: none;
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 1.15rem;
  color: var(--brand-ink) !important;
  line-height: 1.65;
}
.numbered-list .counter-container ol li:before {
  position: absolute;
  left: -3.1rem;
  top: 0.1rem;
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary, #0f172a);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}
.numbered-list .mbr-text,
.numbered-list .mbr-text strong {
  color: var(--brand-ink) !important;
}
.howto-image,
.science-image {
  padding-top: 1.25rem !important;
  padding-bottom: 0.5rem !important;
  background: #ffffff !important;
}
.howto-image .image-wrapper img,
.science-image .image-wrapper img {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.science-image .image-wrapper img {
  max-width: 900px;
}

/* Checkout trust notes (card safety / remarks) */
.checkout-note {
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}
#payment-safety {
  padding-bottom: 0.35rem !important;
}
#guarantee-details {
  padding-top: 0.35rem !important;
  padding-bottom: 1.5rem !important;
}
.checkout-note .mbr-section-subtitle,
.checkout-note .mbr-section-subtitle strong {
  color: var(--brand-heading) !important;
  text-align: center;
  display: block;
  margin-bottom: 0.65rem !important;
}
.checkout-note .mbr-text {
  text-align: center;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7 !important;
}

/* Prevent product / section images from stretching full card width */
section.image3 .image-wrapper {
  text-align: center;
}
section.image3 .image-wrapper img {
  width: auto !important;
  max-width: min(100%, 720px) !important;
  height: auto !important;
  object-fit: contain !important;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
#image3-science .image-wrapper img,
.science-image .image-wrapper img {
  max-width: min(100%, 900px) !important;
}
#image3-order-page .image-wrapper img {
  max-width: min(100%, 560px) !important;
}
#image3-11 .image-wrapper img,
.cid-tGPZjGI25Z .image-wrapper img {
  max-width: min(100%, 480px) !important;
}
.secure-cta-block .image-wrapper img,
#image3-secure .image-wrapper img {
  max-width: min(100%, 380px) !important;
}

/* Affiliate keyword text links — visible on light content (was inheriting white) */
.header14 .mbr-text a[rel~="sponsored"]:not(.btn),
.header14 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.cid-u7DR3n7AX2 .mbr-text a[rel~="sponsored"]:not(.btn),
.cid-u7DR3n7AX2 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.content5 .mbr-text a[rel~="sponsored"]:not(.btn),
.content5 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.content8 .mbr-text a[rel~="sponsored"]:not(.btn),
.content8 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.content9 .mbr-text a[rel~="sponsored"]:not(.btn),
.content9 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.image1 .mbr-text a[rel~="sponsored"]:not(.btn),
.image1 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.section-intro .mbr-text a[rel~="sponsored"]:not(.btn),
.section-intro .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.section-guarantee .mbr-text a[rel~="sponsored"]:not(.btn),
.section-guarantee .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.team2 .mbr-text a[rel~="sponsored"]:not(.btn),
.team2 .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.bonus-section .mbr-text a[rel~="sponsored"]:not(.btn),
.bonus-section .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.reviews-section .mbr-text a[rel~="sponsored"]:not(.btn),
.reviews-section .mbr-text a[rel~="sponsored"]:not(.btn) strong,
.content17 .panel-text a[rel~="sponsored"]:not(.btn),
.content17 .panel-text a[rel~="sponsored"]:not(.btn) strong,
.panel-body a[rel~="sponsored"]:not(.btn),
.panel-body a[rel~="sponsored"]:not(.btn) strong {
  color: #1e3a5f !important; /* navy blue */
  text-decoration: underline !important;
  font-weight: 700 !important;
}
.header14 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.header14 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.cid-u7DR3n7AX2 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.cid-u7DR3n7AX2 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.content5 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.content5 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.content8 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.content8 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.content9 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.content9 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.image1 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.image1 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.section-intro .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.section-intro .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.section-guarantee .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.section-guarantee .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.team2 .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.team2 .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.bonus-section .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.bonus-section .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.reviews-section .mbr-text a[rel~="sponsored"]:not(.btn):hover,
.reviews-section .mbr-text a[rel~="sponsored"]:not(.btn):hover strong,
.content17 .panel-text a[rel~="sponsored"]:not(.btn):hover,
.content17 .panel-text a[rel~="sponsored"]:not(.btn):hover strong,
.panel-body a[rel~="sponsored"]:not(.btn):hover,
.panel-body a[rel~="sponsored"]:not(.btn):hover strong {
  color: #ca8a04 !important;
}
