.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #10378f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #10378f !important;
  border-color: #10378f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #071941 !important;
  border-color: #071941 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #071941 !important;
  border-color: #071941 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #10378f;
  color: #10378f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #071941 !important;
  background-color: transparent!important;
  border-color: #071941 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #10378f !important;
  border-color: #10378f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #10378f !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #061433 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #10378f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #10378f;
  border-color: #10378f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #10378f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #366de9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.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: #10378f !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: #10378f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #10378f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #10378f;
}
.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: #10378f;
  border-bottom-color: #10378f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #10378f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !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='%2310378f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tuC40mmOYC .navbar-dropdown {
  position: relative !important;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuC40mmOYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuC40mmOYC .dropdown-item:hover,
.cid-tuC40mmOYC .dropdown-item:focus {
  background: #10378f !important;
  color: white !important;
}
.cid-tuC40mmOYC .dropdown-item:hover span {
  color: white;
}
.cid-tuC40mmOYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuC40mmOYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuC40mmOYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuC40mmOYC .nav-link {
  position: relative;
}
.cid-tuC40mmOYC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .container {
    flex-wrap: nowrap;
  }
}
.cid-tuC40mmOYC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown-menu,
.cid-tuC40mmOYC .navbar.opened {
  background: #eff2f3 !important;
}
.cid-tuC40mmOYC .nav-item:focus,
.cid-tuC40mmOYC .nav-link:focus {
  outline: none;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuC40mmOYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuC40mmOYC .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: #eff2f3;
}
.cid-tuC40mmOYC .navbar.opened {
  transition: all 0.3s;
}
.cid-tuC40mmOYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuC40mmOYC .navbar .navbar-logo img {
  width: auto;
}
.cid-tuC40mmOYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuC40mmOYC .navbar.collapsed {
  justify-content: center;
}
.cid-tuC40mmOYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuC40mmOYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuC40mmOYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuC40mmOYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuC40mmOYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuC40mmOYC .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-tuC40mmOYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuC40mmOYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuC40mmOYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuC40mmOYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuC40mmOYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuC40mmOYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuC40mmOYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuC40mmOYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuC40mmOYC .dropdown-item.active,
.cid-tuC40mmOYC .dropdown-item:active {
  background-color: transparent;
}
.cid-tuC40mmOYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff2f3;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuC40mmOYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuC40mmOYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuC40mmOYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuC40mmOYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuC40mmOYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar {
    height: 70px;
  }
  .cid-tuC40mmOYC .navbar.opened {
    height: auto;
  }
  .cid-tuC40mmOYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vuBBCZkTSU {
  background-color: #ffffff;
}
.cid-vuBBCZkTSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuBBCZkTSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuBBCZkTSU .afr-hero {
  display: flex;
  flex-direction: column;
}
.cid-vuBBCZkTSU .hd-title-wrap {
  order: 1;
}
.cid-vuBBCZkTSU .hd-body {
  order: 2;
}
.cid-vuBBCZkTSU .hd-img {
  order: 3;
  position: relative;
  margin: 8px 0 28px;
}
.cid-vuBBCZkTSU .sw-quote {
  order: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 18px 22px;
  border: 1px solid #e3eaf0;
  border-radius: 16px;
  background: #f5f8fa;
}
@media (max-width: 575.98px) {
  .cid-vuBBCZkTSU.bp-576 .afr-hero .hd-img {
    order: 2;
  }
  .cid-vuBBCZkTSU.bp-576 .afr-hero .hd-body {
    order: 3;
  }
}
@media (max-width: 767.98px) {
  .cid-vuBBCZkTSU.bp-768 .afr-hero .hd-img {
    order: 2;
  }
  .cid-vuBBCZkTSU.bp-768 .afr-hero .hd-body {
    order: 3;
  }
}
@media (max-width: 991.98px) {
  .cid-vuBBCZkTSU.bp-992 .afr-hero .hd-img {
    order: 2;
  }
  .cid-vuBBCZkTSU.bp-992 .afr-hero .hd-body {
    order: 3;
  }
}
@media (min-width: 992px) {
  .cid-vuBBCZkTSU .afr-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    column-gap: 3rem;
    align-items: center;
  }
  .cid-vuBBCZkTSU .afr-hero .hd-title-wrap {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  .cid-vuBBCZkTSU .afr-hero .hd-body {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
  .cid-vuBBCZkTSU .afr-hero .hd-img {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .cid-vuBBCZkTSU .afr-hero .sw-quote {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .cid-vuBBCZkTSU.hd-rev .afr-hero {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  }
  .cid-vuBBCZkTSU.hd-rev .afr-hero .hd-title-wrap,
  .cid-vuBBCZkTSU.hd-rev .afr-hero .hd-body {
    grid-column: 2;
  }
  .cid-vuBBCZkTSU.hd-rev .afr-hero .hd-img {
    grid-column: 1;
  }
}
.cid-vuBBCZkTSU .sw-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px !important;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vuBBCZkTSU .sw-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vuBBCZkTSU .mbr-section-title {
  color: #141d26;
}
.cid-vuBBCZkTSU .sw-title {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 16px !important;
}
.cid-vuBBCZkTSU .sw-lede {
  display: block !important;
  width: 100% !important;
  max-width: 580px !important;
  margin: 0 0 24px !important;
  color: #000000;
}
.cid-vuBBCZkTSU .sw-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 8%;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 62%), #eaf1f8;
}
.cid-vuBBCZkTSU .sw-stage .sw-img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  margin: 0 auto;
}
.cid-vuBBCZkTSU.no-stage .sw-stage {
  aspect-ratio: auto;
  padding: 0;
  background: none;
}
.cid-vuBBCZkTSU.no-stage .sw-stage .sw-img {
  height: auto !important;
}
.cid-vuBBCZkTSU .sw-badge {
  position: absolute;
  left: -8px;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e3eaf0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(20, 29, 38, 0.12);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}
.cid-vuBBCZkTSU .sw-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b6ea5;
  box-shadow: 0 0 0 4px rgba(59, 110, 165, 0.2);
}
.cid-vuBBCZkTSU .sw-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}
.cid-vuBBCZkTSU.chip-1col .sw-chips {
  grid-template-columns: minmax(0, 1fr);
}
.cid-vuBBCZkTSU .sw-chip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid #e3eaf0;
  border-radius: 14px;
  background: #ffffff;
}
.cid-vuBBCZkTSU.cc-1 .sw-chips .sw-chip:nth-child(n+2),
.cid-vuBBCZkTSU.cc-2 .sw-chips .sw-chip:nth-child(n+3),
.cid-vuBBCZkTSU.cc-3 .sw-chips .sw-chip:nth-child(n+4),
.cid-vuBBCZkTSU.cc-4 .sw-chips .sw-chip:nth-child(n+5),
.cid-vuBBCZkTSU.cc-5 .sw-chips .sw-chip:nth-child(n+6) {
  display: none !important;
}
.cid-vuBBCZkTSU .sw-ic {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #eaf1f8;
}
.cid-vuBBCZkTSU .sw-ic .mbr-iconfont {
  font-size: 20px;
  line-height: 1;
  color: #3b6ea5;
}
.cid-vuBBCZkTSU .sw-chip-txt {
  min-width: 0;
}
.cid-vuBBCZkTSU .sw-chip-h {
  margin: 0 !important;
  line-height: 1.3;
}
.cid-vuBBCZkTSU .sw-chip-p {
  margin: 2px 0 0 !important;
  line-height: 1.4;
  color: #5d6b78;
}
.cid-vuBBCZkTSU .sw-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}
.cid-vuBBCZkTSU .sw-price {
  margin: 0 !important;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cid-vuBBCZkTSU .sw-price-sub {
  margin: 6px 0 0 !important;
  color: #5d6b78;
}
.cid-vuBBCZkTSU .sw-price-sub s {
  color: #b04a4a;
}
.cid-vuBBCZkTSU .sw-buy .mbr-section-btn {
  margin: 0 !important;
}
.cid-vuBBCZkTSU .sw-quote .sw-av {
  flex: 0 0 auto;
  display: block;
  width: 96px !important;
  height: 96px !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 50%;
  object-fit: cover !important;
  box-shadow: 0 0 0 3px #ffffff, 0 4px 12px rgba(20, 29, 38, 0.12);
}
.cid-vuBBCZkTSU .sw-q-body {
  min-width: 0;
}
.cid-vuBBCZkTSU .sw-stars {
  margin: 0 0 2px !important;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #f5a623;
}
.cid-vuBBCZkTSU .sw-q-text {
  margin: 0 !important;
}
.cid-vuBBCZkTSU .sw-q-who {
  margin: 4px 0 0 !important;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-vuBBCZkTSU .sw-stage {
    max-width: 320px;
  }
  .cid-vuBBCZkTSU .sw-badge {
    left: 8px;
  }
}
@media (max-width: 480px) {
  .cid-vuBBCZkTSU .sw-chips {
    grid-template-columns: minmax(0, 1fr);
  }
  .cid-vuBBCZkTSU .sw-quote {
    align-items: flex-start;
    padding: 16px;
  }
}

/* review card: photo on top, text below on small screens */
@media (max-width: 575px) {
  .cid-vuBBCZkTSU .sw-quote {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 12px;
    padding: 20px 16px !important;
  }
  .cid-vuBBCZkTSU .sw-q-body {
    width: 100%;
  }
}
.cid-vtXBnLcZXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vtXBnLcZXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXBnLcZXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXBnLcZXW .ms-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 992px) {
  .cid-vtXBnLcZXW .ms-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 55%);
    column-gap: 5rem;
    align-items: stretch;
  }
  .cid-vtXBnLcZXW.lab-left .ms-grid {
    grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
  }
  .cid-vtXBnLcZXW.lab-left .ms-left {
    order: 2;
  }
}
.cid-vtXBnLcZXW .ms-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cid-vtXBnLcZXW .ms-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px !important;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vtXBnLcZXW .ms-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vtXBnLcZXW .ms-title {
  margin: 0 0 12px !important;
  width: 100% !important;
  color: #141d26;
}
.cid-vtXBnLcZXW .ms-intro {
  display: block !important;
  width: 100% !important;
  max-width: 520px;
  margin: 0 !important;
  color: #5d6b78;
}
.cid-vtXBnLcZXW .ms-photo {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-top: 26px;
  min-height: 0;
}
.cid-vtXBnLcZXW .ms-img {
  display: block;
  width: 100%;
  height: auto !important;
  border-radius: 12px;
  object-fit: contain !important;
}
.cid-vtXBnLcZXW.ph-fill .ms-img {
  flex: 1 1 200px;
  min-height: 200px;
  object-fit: cover !important;
  object-position: center;
}
.cid-vtXBnLcZXW.ph-fill.ph-top .ms-img {
  object-position: top;
}
.cid-vtXBnLcZXW.ph-fill.ph-bottom .ms-img {
  object-position: bottom;
}
.cid-vtXBnLcZXW .ms-card {
  position: relative;
  z-index: 2;
  margin: -160px 16px 0;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(20, 29, 38, 0.16);
}
.cid-vtXBnLcZXW.no-photo .ms-card {
  margin: 0;
}
.cid-vtXBnLcZXW .ms-note {
  margin: 0 !important;
  color: #2d4660;
}
.cid-vtXBnLcZXW .ms-card .mbr-section-btn {
  margin: 14px 0 0 !important;
}
.cid-vtXBnLcZXW .ms-tag {
  position: relative;
  align-self: start;
  background: #fbf8f2;
  border-radius: 20px;
  padding: 44px 34px 0;
  box-shadow: 0 18px 40px rgba(20, 29, 38, 0.1);
}
.cid-vtXBnLcZXW .ms-tag::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed #e7dcc8;
  border-radius: 14px;
  pointer-events: none;
}
.cid-vtXBnLcZXW .ms-hole {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e9eef2;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.18);
}
.cid-vtXBnLcZXW .ms-brand {
  margin: 0 0 18px !important;
  text-align: center;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #8a7a5c;
}
.cid-vtXBnLcZXW .ms-group {
  position: relative;
  margin: 0 0 18px;
}
.cid-vtXBnLcZXW .ms-gt {
  margin: 0 0 6px !important;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
  text-align: center;
}
.cid-vtXBnLcZXW .ms-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dotted #e7dcc8;
}
.cid-vtXBnLcZXW .ms-k {
  margin: 0 !important;
  color: #000000;
}
.cid-vtXBnLcZXW .ms-v {
  margin: 0 !important;
  text-align: right;
  color: #141d26;
}
.cid-vtXBnLcZXW.gc-1 .ms-tag .ms-group.g2,
.cid-vtXBnLcZXW.gc-1 .ms-tag .ms-group.g3,
.cid-vtXBnLcZXW.gc-2 .ms-tag .ms-group.g3 {
  display: none !important;
}
.cid-vtXBnLcZXW.ra-1 .ms-tag .g1 .ms-row:nth-child(n+3),
.cid-vtXBnLcZXW.ra-2 .ms-tag .g1 .ms-row:nth-child(n+4),
.cid-vtXBnLcZXW.ra-3 .ms-tag .g1 .ms-row:nth-child(n+5),
.cid-vtXBnLcZXW.ra-4 .ms-tag .g1 .ms-row:nth-child(n+6),
.cid-vtXBnLcZXW.ra-5 .ms-tag .g1 .ms-row:nth-child(n+7),
.cid-vtXBnLcZXW.rb-1 .ms-tag .g2 .ms-row:nth-child(n+3),
.cid-vtXBnLcZXW.rb-2 .ms-tag .g2 .ms-row:nth-child(n+4),
.cid-vtXBnLcZXW.rb-3 .ms-tag .g2 .ms-row:nth-child(n+5),
.cid-vtXBnLcZXW.rb-4 .ms-tag .g2 .ms-row:nth-child(n+6),
.cid-vtXBnLcZXW.rc-1 .ms-tag .g3 .ms-row:nth-child(n+3),
.cid-vtXBnLcZXW.rc-2 .ms-tag .g3 .ms-row:nth-child(n+4),
.cid-vtXBnLcZXW.rc-3 .ms-tag .g3 .ms-row:nth-child(n+5),
.cid-vtXBnLcZXW.rc-4 .ms-tag .g3 .ms-row:nth-child(n+6) {
  display: none !important;
}
.cid-vtXBnLcZXW .ms-care {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 26px -34px 0;
  background: #1d2a36;
  color: #e9eef2;
  border-radius: 0 0 20px 20px;
}
.cid-vtXBnLcZXW.cs-1 .ms-care {
  grid-template-columns: minmax(0, 1fr);
}
.cid-vtXBnLcZXW.cs-2 .ms-care {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cid-vtXBnLcZXW.cs-3 .ms-care {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cid-vtXBnLcZXW.cs-1 .ms-care .ms-ci:nth-child(n+2),
.cid-vtXBnLcZXW.cs-2 .ms-care .ms-ci:nth-child(n+3),
.cid-vtXBnLcZXW.cs-3 .ms-care .ms-ci:nth-child(n+4) {
  display: none !important;
}
.cid-vtXBnLcZXW .ms-ci {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-vtXBnLcZXW .ms-ci:first-child {
  border-left: 0;
}
.cid-vtXBnLcZXW .ms-ci-ic {
  display: block;
  width: 30px;
  height: 30px;
}
.cid-vtXBnLcZXW.care-dark .ms-ci-ic {
  filter: invert(1);
}
.cid-vtXBnLcZXW .ms-ci-t {
  margin: 0 !important;
  line-height: 1.35;
  color: inherit;
}
@media (max-width: 991.98px) {
  .cid-vtXBnLcZXW.ph-fill .ms-img {
    flex: none;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .cid-vtXBnLcZXW .ms-card {
    margin-top: -44px;
  }
  .cid-vtXBnLcZXW.no-photo .ms-card {
    margin-top: 0;
  }
}
@media (max-width: 560px) {
  .cid-vtXBnLcZXW .ms-tag {
    padding: 40px 20px 0;
  }
  .cid-vtXBnLcZXW .ms-care {
    margin: 22px -20px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cid-vtXBnLcZXW.cs-1 .ms-care {
    grid-template-columns: minmax(0, 1fr);
  }
  .cid-vtXBnLcZXW .ms-ci:nth-child(3) {
    border-left: 0;
  }
  .cid-vtXBnLcZXW .ms-ci:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-vtXBnLcZXW .ms-row {
    flex-direction: column;
    gap: 2px;
  }
  .cid-vtXBnLcZXW .ms-v {
    text-align: left;
  }
  .cid-vtXBnLcZXW .ms-card {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.cid-vi4hbh9prh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vi4hbh9prh .content-wrapper {
  border-radius: 22px;
}
.cid-vi4hbh9prh .sb-top {
  margin: 0 auto;
  text-align: center;
}
.cid-vi4hbh9prh .sb-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px !important;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vi4hbh9prh .sb-eyebrow::before,
.cid-vi4hbh9prh .sb-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vi4hbh9prh .card-title {
  text-align: center;
  color: #000000;
}
.cid-vi4hbh9prh .sb-top .card-title {
  margin: 0 !important;
}
.cid-vi4hbh9prh .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-vi4hbh9prh .sb-top .mbr-text {
  margin: 20px 0 0 !important;
}
.cid-vi4hbh9prh .sb-band-row {
  margin: 46px 0;
}
.cid-vi4hbh9prh .sb-band {
  text-align: center;
  line-height: 0;
}
.cid-vi4hbh9prh .sb-band > a {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}
.cid-vi4hbh9prh .sb-band .sb-img,
.cid-vi4hbh9prh .sb-band .about_img_1 {
  display: block;
  width: 100%;
  max-width: 820px;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  border-radius: 6px;
}
.cid-vi4hbh9prh .sb-band .sb-img {
  box-shadow: 0 14px 32px rgba(20, 45, 65, 0.14);
}
.cid-vi4hbh9prh .sb-cols {
  row-gap: 34px;
}
.cid-vi4hbh9prh .sb-rule {
  width: 30px;
  height: 3px;
  margin-bottom: 8px;
  border-radius: 3px;
  background-color: #56ce6e;
}
.cid-vi4hbh9prh .sb-h {
  margin: 0 0 8px !important;
}
.cid-vi4hbh9prh .sb-col .mbr-text {
  margin: 0 !important;
}
.cid-vi4hbh9prh .sb-foot {
  padding-top: 46px;
  text-align: center;
}
.cid-vi4hbh9prh .sb-foot .mbr-section-btn {
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  .cid-vi4hbh9prh .sb-band-row {
    margin: 34px 0;
  }
}
@media (max-width: 575px) {
  .cid-vi4hbh9prh .sb-foot {
    padding-top: 32px;
  }
}
.cid-vuBIUZyb8n {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vuBIUZyb8n .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuBIUZyb8n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuBIUZyb8n .rv-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.cid-vuBIUZyb8n .rv-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vuBIUZyb8n .rv-eyebrow::before,
.cid-vuBIUZyb8n .rv-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vuBIUZyb8n .rv-title {
  margin: 0 !important;
}
.cid-vuBIUZyb8n .rv-sub {
  margin: 10px 0 0 !important;
}
.cid-vuBIUZyb8n .rv-disc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0 !important;
  padding: 6px 12px;
  border: 1px solid #e3eaf0;
  border-radius: 999px;
  background: #f5f8fa;
}
.cid-vuBIUZyb8n .rv-disc::before {
  content: "i";
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  line-height: 1;
}
.cid-vuBIUZyb8n .rv-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 992px) {
  .cid-vuBIUZyb8n .rv-grid {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    align-items: stretch;
  }
  .cid-vuBIUZyb8n.no-stack .rv-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.cid-vuBIUZyb8n .rv-stars {
  margin: 0 0 14px !important;
  letter-spacing: 2px;
  line-height: 1;
  color: #e6c63b;
}
.cid-vuBIUZyb8n .rv-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cid-vuBIUZyb8n .rv-av {
  flex: 0 0 auto;
  display: block;
  width: 48px !important;
  height: 48px !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 50%;
  object-fit: cover !important;
  box-shadow: 0 0 0 3px #ffffff, 0 4px 10px rgba(20, 29, 38, 0.14);
}
.cid-vuBIUZyb8n .rv-who {
  min-width: 0;
}
.cid-vuBIUZyb8n .rv-name,
.cid-vuBIUZyb8n .rv-big-name {
  margin: 0 !important;
  line-height: 1.3;
}
.cid-vuBIUZyb8n .rv-place,
.cid-vuBIUZyb8n .rv-big-place {
  margin: 2px 0 0 !important;
  line-height: 1.3;
}
.cid-vuBIUZyb8n .rv-big-stars {
  margin: 0 0 14px !important;
  letter-spacing: 2px;
  line-height: 1;
  color: #e6c63b;
}
.cid-vuBIUZyb8n .rv-big {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 38px 34px;
  border-radius: 22px;
  background: linear-gradient(160deg, #3b6ea5, #2299aa);
  overflow: hidden;
}
.cid-vuBIUZyb8n .rv-big::before {
  content: "\201C";
  position: absolute;
  right: 26px;
  top: -24px;
  font-family: Georgia, serif;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cid-vuBIUZyb8n .rv-big .rv-body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-vuBIUZyb8n .rv-big .rv-headline {
  margin: 0 0 12px !important;
  line-height: 1.35;
}
.cid-vuBIUZyb8n .rv-big .rv-q-big {
  margin: 0 !important;
  line-height: 1.5;
}
.cid-vuBIUZyb8n .rv-big .rv-person {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.cid-vuBIUZyb8n .rv-big .rv-av {
  width: 58px !important;
  height: 58px !important;
}
.cid-vuBIUZyb8n.qp-top .rv-big .rv-body {
  justify-content: flex-start;
}
.cid-vuBIUZyb8n.qp-bottom .rv-big .rv-body {
  justify-content: flex-end;
}
.cid-vuBIUZyb8n.no-mark .rv-big::before {
  display: none;
}
.cid-vuBIUZyb8n .rv-stack {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 20px;
}
.cid-vuBIUZyb8n.sc-1 .rv-stack .rv-card:nth-child(n+2),
.cid-vuBIUZyb8n.sc-2 .rv-stack .rv-card:nth-child(n+3) {
  display: none !important;
}
.cid-vuBIUZyb8n .rv-card {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border: 1px solid #e3eaf0;
  border-radius: 20px;
  background: #ffffff;
}
.cid-vuBIUZyb8n .rv-card .rv-stars {
  margin-bottom: 12px !important;
}
.cid-vuBIUZyb8n .rv-card .rv-q {
  flex: 1 1 auto;
  margin: 0 0 16px !important;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-vuBIUZyb8n .rv-stack {
    grid-auto-rows: auto;
  }
}
@media (max-width: 575px) {
  .cid-vuBIUZyb8n .rv-big {
    padding: 30px 22px 24px;
  }
  .cid-vuBIUZyb8n .rv-big::before {
    font-size: 150px;
    right: 14px;
  }
  .cid-vuBIUZyb8n .rv-card {
    padding: 22px 18px 18px;
  }
}
.cid-vuBIUZyb8n .rv-headline {
  color: #ffffff;
}
.cid-vuBIUZyb8n .rv-q-big {
  color: #fafafa;
}
.cid-vuBIUZyb8n .rv-big-name {
  color: #ffffff;
}
.cid-vuBIUZyb8n .rv-big-place {
  color: #eaf1f8;
}
.cid-vtXBdl490E {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vtXBdl490E .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXBdl490E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXBdl490E .mbr-section-title {
  color: #000000;
}
.cid-tuChTgCHQh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tuChTgCHQh .hw-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}
@media (min-width: 992px) {
  .cid-tuChTgCHQh.hw-split .hw-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: end;
  }
  .cid-tuChTgCHQh .hw-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
  }
  .cid-tuChTgCHQh.cc-3 .hw-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cid-tuChTgCHQh.cc-2 .hw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cid-tuChTgCHQh .hw-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #3b6ea5;
    border-right: 2px solid #3b6ea5;
    transform: translateY(-50%) rotate(45deg);
  }
  .cid-tuChTgCHQh.cc-2 .hw-card:nth-child(2)::after,
  .cid-tuChTgCHQh.cc-3 .hw-card:nth-child(3)::after,
  .cid-tuChTgCHQh.no-arrows .hw-card::after {
    display: none;
  }
}
.cid-tuChTgCHQh .hw-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-tuChTgCHQh .hw-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-tuChTgCHQh .hw-title {
  margin: 0 !important;
}
.cid-tuChTgCHQh .hw-sub {
  margin: 0 !important;
}
.cid-tuChTgCHQh .hw-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 600px) and (max-width: 991px) {
  .cid-tuChTgCHQh .hw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cid-tuChTgCHQh.cc-2 .hw-card:nth-child(n+3),
.cid-tuChTgCHQh.cc-3 .hw-card:nth-child(n+4) {
  display: none !important;
}
.cid-tuChTgCHQh .hw-card {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid #e3eaf0;
  border-radius: 18px;
  background: #f5f8fa;
}
.cid-tuChTgCHQh .hw-num {
  position: absolute;
  top: 10px;
  right: 16px;
  margin: 0 !important;
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
}
.cid-tuChTgCHQh .hw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid #e3eaf0;
  border-radius: 12px;
  background: #ffffff;
}
.cid-tuChTgCHQh .hw-icon .mbr-iconfont {
  font-size: 22px;
  color: #3b6ea5;
}
.cid-tuChTgCHQh .hw-h {
  position: relative;
  margin: 0 0 6px !important;
  line-height: 1.3;
  text-align: left;
}
.cid-tuChTgCHQh .hw-p {
  position: relative;
  margin: 0 !important;
  text-align: left;
}
.cid-tuChTgCHQh .hw-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.cid-tuChTgCHQh.fc-1 .hw-fact:nth-child(n+2),
.cid-tuChTgCHQh.fc-2 .hw-fact:nth-child(n+3) {
  display: none !important;
}
.cid-tuChTgCHQh .hw-fact {
  flex: 1 1 200px;
  margin: 0 !important;
  padding: 14px 18px;
  border: 1px solid #e3eaf0;
  border-radius: 12px;
  background: #f5f8fa;
}
.cid-tuChTgCHQh .hw-note {
  margin: 28px 0 0 !important;
  padding: 16px 20px;
  border: 1px solid #f2e0bd;
  border-radius: 12px;
  background: #fff8ec;
}
@media (max-width: 575px) {
  .cid-tuChTgCHQh .hw-card {
    padding: 20px 18px 18px;
  }
  .cid-tuChTgCHQh .hw-head {
    margin-bottom: 24px;
  }
}
.cid-vign5FufY8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vign5FufY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vign5FufY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vign5FufY8 .mbr-section-title {
  color: #000000;
}
.cid-tXzp352Nmj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tXzp352Nmj .bt-head {
  margin-bottom: 36px;
}
.cid-tXzp352Nmj .bt-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px !important;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.cid-tXzp352Nmj .bt-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-tXzp352Nmj .bt-title {
  max-width: 680px;
  margin: 0 !important;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.cid-tXzp352Nmj .bt-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) {
  .cid-tXzp352Nmj .bt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .cid-tXzp352Nmj .bt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cid-tXzp352Nmj .bt-img {
    grid-row: span 2;
  }
  .cid-tXzp352Nmj .bt-3,
  .cid-tXzp352Nmj .bt-5 {
    grid-column: span 2;
  }
  .cid-tXzp352Nmj.cc-4 .bt-4 {
    grid-column: span 3;
  }
  .cid-tXzp352Nmj.no-img .bt-tile {
    grid-column: auto;
  }
  .cid-tXzp352Nmj.no-img .bt-5 {
    grid-column: span 2;
  }
  .cid-tXzp352Nmj.no-img.cc-4 .bt-4 {
    grid-column: span 3;
  }
  .cid-tXzp352Nmj .bt-img img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
  }
  .cid-tXzp352Nmj.img-fill .bt-img img {
    object-fit: cover;
  }
}
@media (min-width: 700px) and (max-width: 991px) {
  .cid-tXzp352Nmj.cc-4:not(.no-img) .bt-4,
  .cid-tXzp352Nmj.no-img.cc-5 .bt-5,
  .cid-tXzp352Nmj.no-img.cc-3 .bt-3 {
    grid-column: span 2;
  }
}
.cid-tXzp352Nmj.cc-3 .bt-4,
.cid-tXzp352Nmj.cc-3 .bt-5,
.cid-tXzp352Nmj.cc-4 .bt-5 {
  display: none !important;
}
.cid-tXzp352Nmj .bt-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid #e3eaf0;
  border-radius: 20px;
  background: #ffffff;
}
.cid-tXzp352Nmj .bt-n,
.cid-tXzp352Nmj .bt-n-hi {
  position: absolute;
  top: 14px;
  right: 20px;
  margin: 0 !important;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
}
.cid-tXzp352Nmj .bt-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf1f8;
}
.cid-tXzp352Nmj .bt-ic .mbr-iconfont {
  font-size: 22px;
  color: #3b6ea5;
}
.cid-tXzp352Nmj .bt-body {
  position: relative;
}
.cid-tXzp352Nmj .bt-tag,
.cid-tXzp352Nmj .bt-tag-hi {
  display: inline-block;
  margin: 0 0 10px !important;
  padding: 4px 10px;
  border-radius: 6px;
  background: #eaf1f8;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.cid-tXzp352Nmj .bt-h,
.cid-tXzp352Nmj .bt-h-hi {
  margin: 0 0 6px !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.cid-tXzp352Nmj .bt-p,
.cid-tXzp352Nmj .bt-p-hi {
  margin: 0 !important;
}
.cid-tXzp352Nmj.hi-on .bt-1 {
  border-color: #3b6ea5;
  background: #3b6ea5;
}
.cid-tXzp352Nmj.hi-on .bt-1 .bt-ic {
  background: rgba(255, 255, 255, 0.16);
}
.cid-tXzp352Nmj.hi-on .bt-1 .bt-ic .mbr-iconfont {
  color: #ffffff;
}
.cid-tXzp352Nmj.hi-on .bt-1 .bt-tag-hi {
  background: rgba(255, 255, 255, 0.16);
}
.cid-tXzp352Nmj .bt-img {
  position: relative;
  overflow: hidden;
  padding: 0px;
  border-radius: 20px;
  background: #eaf1f8;
}
.cid-tXzp352Nmj .bt-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .cid-tXzp352Nmj .bt-head {
    margin-bottom: 24px;
  }
  .cid-tXzp352Nmj .bt-tile {
    padding: 22px 18px;
  }
}
.cid-tXzp352Nmj .bt-h-hi {
  color: #fafafa;
}
.cid-tXzp352Nmj .bt-p-hi {
  color: #fafafa;
}
.cid-tXzp352Nmj .bt-tag-hi {
  color: #ffffff;
}
.cid-tXzp352Nmj .bt-tag {
  color: #3b6ea5;
}
.cid-vtXCZH9buh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vtXCZH9buh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXCZH9buh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXCZH9buh .vd-head {
  margin-bottom: 36px;
  text-align: center;
}
.cid-vtXCZH9buh .vd-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vtXCZH9buh .vd-eyebrow::before,
.cid-vtXCZH9buh .vd-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vtXCZH9buh .vd-title {
  margin: 0 !important;
}
.cid-vtXCZH9buh .vd-card {
  overflow: hidden;
  border: 1px solid #e3eaf0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 45, 65, 0.08);
}
.cid-vtXCZH9buh.no-shadow .vd-card {
  box-shadow: none;
}
.cid-vtXCZH9buh .vd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 22px 30px;
  border-bottom: 1px solid #e3eaf0;
  background: #f5f8fa;
}
.cid-vtXCZH9buh .vd-top-t {
  margin: 0 !important;
}
.cid-vtXCZH9buh .vd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cid-vtXCZH9buh .vd-pill {
  margin: 0 !important;
  padding: 7px 14px;
  border-radius: 999px;
  line-height: 1.3;
}
.cid-vtXCZH9buh .vd-pill-pro {
  background: #e6f3eb;
}
.cid-vtXCZH9buh .vd-pill-con {
  background: #f6eae1;
}
.cid-vtXCZH9buh .vd-body {
  display: grid;
}
@media (min-width: 880px) {
  .cid-vtXCZH9buh .vd-body {
    grid-template-columns: 59% minmax(0, 1fr);
  }
}
.cid-vtXCZH9buh .vd-col {
  padding: 30px;
}
.cid-vtXCZH9buh .vd-con {
  background: #fbf1e7;
}
@media (max-width: 879px) {
  .cid-vtXCZH9buh .vd-con {
    border-top: 1px solid #e3eaf0;
  }
}
.cid-vtXCZH9buh .vd-ct {
  margin: 0 0 18px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cid-vtXCZH9buh .vd-list {
  display: grid;
  gap: 12px 22px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-vtXCZH9buh .vd-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  line-height: 1.4;
}
.cid-vtXCZH9buh .vd-list li::before {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 560px) {
  .cid-vtXCZH9buh .vd-l-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cid-vtXCZH9buh .vd-l-pro li::before {
  content: '✓';
  background: #2f9e5b;
}
.cid-vtXCZH9buh .vd-l-con li::before {
  content: '−';
  background: #b45309;
}
.cid-vtXCZH9buh .vd-n-pro::before {
  content: "9";
}
.cid-vtXCZH9buh .vd-l-pro li:nth-child(n+10) {
  display: none !important;
}
.cid-vtXCZH9buh .vd-n-con::before {
  content: "4";
}
.cid-vtXCZH9buh .vd-l-con li:nth-child(n+5) {
  display: none !important;
}
.cid-vtXCZH9buh .vd-btn {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media (max-width: 575px) {
  .cid-vtXCZH9buh .vd-head {
    margin-bottom: 26px;
  }
  .cid-vtXCZH9buh .vd-top {
    padding: 18px 20px;
  }
  .cid-vtXCZH9buh .vd-col {
    padding: 22px 20px;
  }
}
.cid-vkNQhOWZnA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vkNQhOWZnA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkNQhOWZnA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkNQhOWZnA .mbr-section-title {
  color: #000000;
}
.cid-vtXF0vRo0g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vtXF0vRo0g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXF0vRo0g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXF0vRo0g .uc-head {
  margin-bottom: 34px;
}
.cid-vtXF0vRo0g .uc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vtXF0vRo0g .uc-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vtXF0vRo0g .uc-title {
  margin: 0 !important;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.cid-vtXF0vRo0g .uc-sub {
  max-width: 620px;
  margin: 10px 0 0 !important;
}
.cid-vtXF0vRo0g .uc-boxes {
  display: grid;
  gap: 16px;
}
@media (min-width: 880px) {
  .cid-vtXF0vRo0g .uc-boxes {
    grid-template-columns: 58% minmax(0, 1fr);
  }
  .cid-vtXF0vRo0g.no-skip .uc-boxes {
    grid-template-columns: minmax(0, 1fr);
  }
}
.cid-vtXF0vRo0g .uc-box {
  padding: 28px;
  border-radius: 20px;
}
.cid-vtXF0vRo0g .uc-do {
  border: 1px solid #e3eaf0;
  background: #ffffff;
}
.cid-vtXF0vRo0g .uc-skip {
  border: 1px solid #efd6bd;
  background: #fbf1e7;
}
.cid-vtXF0vRo0g .uc-bh {
  margin: 0 0 18px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cid-vtXF0vRo0g .uc-grid,
.cid-vtXF0vRo0g .uc-grid-skip {
  display: grid;
  gap: 16px 20px;
}
@media (min-width: 560px) {
  .cid-vtXF0vRo0g .uc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cid-vtXF0vRo0g .uc-fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cid-vtXF0vRo0g .uc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cid-vtXF0vRo0g .uc-txt {
  min-width: 0;
}
.cid-vtXF0vRo0g .uc-h,
.cid-vtXF0vRo0g .uc-sh {
  margin: 0 0 2px !important;
  line-height: 1.3;
}
.cid-vtXF0vRo0g .uc-p,
.cid-vtXF0vRo0g .uc-sp {
  margin: 0 !important;
}
.cid-vtXF0vRo0g .uc-ic {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf1f8;
}
.cid-vtXF0vRo0g .uc-ic .mbr-iconfont {
  font-size: 20px;
  color: #3b6ea5;
}
.cid-vtXF0vRo0g .uc-skip .uc-ic {
  background: #ffffff;
}
.cid-vtXF0vRo0g .uc-skip .uc-ic .mbr-iconfont {
  color: #b45309;
}
.cid-vtXF0vRo0g .uc-fit-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0 14px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cid-vtXF0vRo0g .uc-fit-h::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .22;
}
.cid-vtXF0vRo0g .uc-fit {
  display: grid;
  gap: 12px;
}
@media (min-width: 992px) {
  .cid-vtXF0vRo0g .uc-fit {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.cid-vtXF0vRo0g .uc-fit-item {
  padding: 18px;
  border-radius: 16px;
  background: #3b6ea5;
}
.cid-vtXF0vRo0g .uc-fit-l {
  margin: 0 0 6px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
  color: #9fdbf8;
}
.cid-vtXF0vRo0g .uc-fit-t {
  margin: 0 !important;
  line-height: 1.35;
  color: #ffffff;
}
.cid-vtXF0vRo0g .uc-do-item:nth-child(n+5) {
  display: none !important;
}
.cid-vtXF0vRo0g .uc-skip-item:nth-child(n+3) {
  display: none !important;
}
.cid-vtXF0vRo0g .uc-fit-item:nth-child(n+5) {
  display: none !important;
}
.cid-vtXF0vRo0g .uc-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-vtXF0vRo0g .uc-head {
    margin-bottom: 24px;
  }
  .cid-vtXF0vRo0g .uc-box {
    padding: 22px 18px;
  }
}
.cid-vqWe8SewZS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vqWe8SewZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqWe8SewZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqWe8SewZS .ct-head {
  margin-bottom: 40px;
  text-align: center;
}
.cid-vqWe8SewZS .ct-title {
  margin: 0 !important;
}
.cid-vqWe8SewZS .ct-sub {
  margin: 12px 0 0 !important;
}
.cid-vqWe8SewZS .ct-table {
  position: relative;
  margin: 14px 0;
}
.cid-vqWe8SewZS .ct-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.cid-vqWe8SewZS.cc-2 .ct-row {
  grid-template-columns: 40% minmax(0, 1fr);
}
.cid-vqWe8SewZS.cc-1 .ct-row {
  grid-template-columns: minmax(0, 1fr);
}
.cid-vqWe8SewZS .ct-c {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 16px 18px;
}
.cid-vqWe8SewZS .ct-c2,
.cid-vqWe8SewZS .ct-c3 {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-vqWe8SewZS .ct-c1,
.cid-vqWe8SewZS .ct-c3 {
  border-top: 1px solid #e3eaf0;
}
.cid-vqWe8SewZS .ct-hd .ct-c1,
.cid-vqWe8SewZS .ct-hd .ct-c3 {
  border-top: 0;
}
.cid-vqWe8SewZS.no-band .ct-c2 {
  border-top: 1px solid #e3eaf0;
}
.cid-vqWe8SewZS.no-band .ct-hd .ct-c2 {
  border-top: 0;
}
.cid-vqWe8SewZS .ct-band {
  position: absolute;
  z-index: 0;
  top: -14px;
  bottom: -14px;
  left: 40%;
  width: 30%;
  border: 2px solid #3b6ea5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(59, 110, 165, 0.18);
  pointer-events: none;
}
.cid-vqWe8SewZS.cc-2 .ct-band {
  width: 60%;
}
.cid-vqWe8SewZS.cc-1 .ct-band,
.cid-vqWe8SewZS.no-band .ct-band {
  display: none;
}
.cid-vqWe8SewZS .ct-hd-f,
.cid-vqWe8SewZS .ct-hd-m,
.cid-vqWe8SewZS .ct-hd-r {
  margin: 0 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
}
.cid-vqWe8SewZS .ct-badge {
  display: inline-block;
  margin: 0 !important;
  padding: 3px 10px;
  border-radius: 999px;
  background: #3b6ea5;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
  color: #ffffff;
}
.cid-vqWe8SewZS .ct-feat {
  margin: 0 !important;
  line-height: 1.35;
}
.cid-vqWe8SewZS .ct-y,
.cid-vqWe8SewZS .ct-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.cid-vqWe8SewZS .ct-y .mbr-iconfont,
.cid-vqWe8SewZS .ct-n .mbr-iconfont {
  font-size: 14px;
  line-height: 1;
}
.cid-vqWe8SewZS .ct-y {
  background: #3b6ea5;
}
.cid-vqWe8SewZS .ct-y .mbr-iconfont {
  color: #ffffff;
}
.cid-vqWe8SewZS .ct-n {
  border: 2px solid #e43f3f;
  background: #ffffff;
}
.cid-vqWe8SewZS .ct-n .mbr-iconfont {
  color: #e43f3f;
}
@media (max-width: 767px) {
  .cid-vqWe8SewZS .ct-c {
    padding: 13px 10px;
  }
  .cid-vqWe8SewZS .ct-c2,
  .cid-vqWe8SewZS .ct-c3 {
    padding-left: 4px;
    padding-right: 4px;
  }
  .cid-vqWe8SewZS .ct-band {
    border-radius: 14px;
  }
  .cid-vqWe8SewZS .ct-badge {
    padding: 2px 7px;
    letter-spacing: .04em;
  }
  .cid-vqWe8SewZS .ct-hd-f,
  .cid-vqWe8SewZS .ct-hd-m,
  .cid-vqWe8SewZS .ct-hd-r {
    letter-spacing: .02em;
  }
}
.cid-vigGV4F8Gn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vigGV4F8Gn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vigGV4F8Gn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vigGV4F8Gn .oo-head {
  margin-bottom: 34px;
}
.cid-vigGV4F8Gn .oo-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vigGV4F8Gn .oo-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vigGV4F8Gn .oo-title {
  margin: 0 !important;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.cid-vigGV4F8Gn .oo-lede {
  margin: 10px 0 0 !important;
}
.cid-vigGV4F8Gn .oo-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 960px) {
  .cid-vigGV4F8Gn .oo-grid {
    grid-template-columns: 44% minmax(0, 1fr);
    align-items: stretch;
  }
  .cid-vigGV4F8Gn.oo-flip .oo-grid {
    grid-template-columns: minmax(0, 1fr) 44%;
  }
  .cid-vigGV4F8Gn.oo-flip .oo-offer {
    order: 2;
  }
}
.cid-vigGV4F8Gn .oo-offer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  border-radius: 20px;
  background: #16283d;
}
.cid-vigGV4F8Gn .oo-tag {
  margin: 0 !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f5f8fa;
}
.cid-vigGV4F8Gn .oo-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.cid-vigGV4F8Gn .oo-price {
  margin: 0 !important;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.cid-vigGV4F8Gn .oo-old {
  margin: 0 !important;
  line-height: 1;
  color: #ffffff;
}
.cid-vigGV4F8Gn .oo-badge {
  margin: 0 !important;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}
.cid-vigGV4F8Gn .oo-perks {
  display: grid;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  color: #ffffff;
}
.cid-vigGV4F8Gn .oo-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  line-height: 1.45;
}
.cid-vigGV4F8Gn .oo-perks li::before {
  content: '✓';
  flex: 0 0 auto;
  color: #9fc0e4;
  font-weight: 800;
}
.cid-vigGV4F8Gn .oo-cta {
  margin-top: auto;
  padding-top: 6px;
}
.cid-vigGV4F8Gn .oo-cta .mbr-section-btn {
  margin: 0 !important;
}
.cid-vigGV4F8Gn .oo-cta .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  justify-content: center;
}
.cid-vigGV4F8Gn .oo-fine {
  margin: 12px 0 0 !important;
  text-align: center;
}
.cid-vigGV4F8Gn .oo-steps {
  padding: 10px 28px;
  border: 1px solid #e3eaf0;
  border-radius: 20px;
  background: #ffffff;
  counter-reset: oostep;
}
.cid-vigGV4F8Gn .os-step {
  counter-increment: oostep;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px dashed #e3eaf0;
}
.cid-vigGV4F8Gn .os-step:first-child {
  border-top: 0;
}
.cid-vigGV4F8Gn .os-step::before {
  content: counter(oostep);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf1f8;
  color: #3b6ea5;
  font-weight: 800;
  line-height: 1;
}
.cid-vigGV4F8Gn .os-txt {
  min-width: 0;
  padding-top: 3px;
}
.cid-vigGV4F8Gn .os-h {
  margin: 0 0 2px !important;
  line-height: 1.3;
}
.cid-vigGV4F8Gn .os-p {
  margin: 0 !important;
}
.cid-vigGV4F8Gn .os-step:nth-child(n+5) {
  display: none !important;
}
.cid-vigGV4F8Gn .oo-perks li:nth-child(n+5) {
  display: none !important;
}
@media (max-width: 575px) {
  .cid-vigGV4F8Gn .oo-head {
    margin-bottom: 24px;
  }
  .cid-vigGV4F8Gn .oo-offer {
    padding: 24px 20px;
  }
  .cid-vigGV4F8Gn .oo-steps {
    padding: 6px 20px;
  }
}
.cid-vtXwcqJlZW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vtXwcqJlZW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXwcqJlZW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXwcqJlZW .pk-head {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}
.cid-vtXwcqJlZW .pk-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vtXwcqJlZW .pk-eyebrow::before,
.cid-vtXwcqJlZW .pk-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vtXwcqJlZW .pk-title {
  margin: 0 !important;
}
.cid-vtXwcqJlZW .pk-lede {
  margin: 10px 0 0 !important;
}
.cid-vtXwcqJlZW .pk-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  padding-top: 14px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .cid-vtXwcqJlZW .pk-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-vtXwcqJlZW .pk-grid .pk-item {
    flex: 0 1 47%;
  }
}
@media (min-width: 992px) {
  .cid-vtXwcqJlZW .pk-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1080px;
  }
}
.cid-vtXwcqJlZW .pk-item:nth-child(n+4) {
  display: none !important;
}
.cid-vtXwcqJlZW .pk-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 16px;
  border: 2px solid #e3eaf0;
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.cid-vtXwcqJlZW .pk-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 45, 65, 0.12);
}
.cid-vtXwcqJlZW.no-lift .pk-item:hover {
  transform: none;
}
.cid-vtXwcqJlZW .pk-flag {
  display: none;
  position: absolute;
  z-index: 2;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
  padding: 4px 14px;
  border-radius: 999px;
  background: #2dc8c2;
  white-space: nowrap;
  line-height: 1.4;
}
.cid-vtXwcqJlZW.bp-1 .pk-item:nth-child(1) {
  border-color: #2dc8c2;
  box-shadow: 0 14px 34px rgba(45, 200, 194, 0.22);
}
.cid-vtXwcqJlZW.bp-1 .pk-item:nth-child(1) .pk-flag {
  display: block;
}
.cid-vtXwcqJlZW.bp-1 .pk-item:nth-child(1) .pk-btn {
  background: #2dc8c2;
  color: #ffffff !important;
}
.cid-vtXwcqJlZW.bp-2 .pk-item:nth-child(2) {
  border-color: #2dc8c2;
  box-shadow: 0 14px 34px rgba(45, 200, 194, 0.22);
}
.cid-vtXwcqJlZW.bp-2 .pk-item:nth-child(2) .pk-flag {
  display: block;
}
.cid-vtXwcqJlZW.bp-2 .pk-item:nth-child(2) .pk-btn {
  background: #2dc8c2;
  color: #ffffff !important;
}
.cid-vtXwcqJlZW.bp-3 .pk-item:nth-child(3) {
  border-color: #2dc8c2;
  box-shadow: 0 14px 34px rgba(45, 200, 194, 0.22);
}
.cid-vtXwcqJlZW.bp-3 .pk-item:nth-child(3) .pk-flag {
  display: block;
}
.cid-vtXwcqJlZW.bp-3 .pk-item:nth-child(3) .pk-btn {
  background: #2dc8c2;
  color: #ffffff !important;
}
.cid-vtXwcqJlZW.bp-4 .pk-item:nth-child(4) {
  border-color: #2dc8c2;
  box-shadow: 0 14px 34px rgba(45, 200, 194, 0.22);
}
.cid-vtXwcqJlZW.bp-4 .pk-item:nth-child(4) .pk-flag {
  display: block;
}
.cid-vtXwcqJlZW.bp-4 .pk-item:nth-child(4) .pk-btn {
  background: #2dc8c2;
  color: #ffffff !important;
}
.cid-vtXwcqJlZW.bp-5 .pk-item:nth-child(5) {
  border-color: #2dc8c2;
  box-shadow: 0 14px 34px rgba(45, 200, 194, 0.22);
}
.cid-vtXwcqJlZW.bp-5 .pk-item:nth-child(5) .pk-flag {
  display: block;
}
.cid-vtXwcqJlZW.bp-5 .pk-item:nth-child(5) .pk-btn {
  background: #2dc8c2;
  color: #ffffff !important;
}
.cid-vtXwcqJlZW .pk-shot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin: 0 0 14px;
  padding: 10px;
  border-radius: 11.7px;
  background: #ffffff;
  overflow: hidden;
}
.cid-vtXwcqJlZW .pk-shot img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  margin: 0 auto;
}
.cid-vtXwcqJlZW.ar-11 .pk-shot {
  aspect-ratio: 1 / 1;
}
.cid-vtXwcqJlZW.ar-32 .pk-shot {
  aspect-ratio: 3 / 2;
}
.cid-vtXwcqJlZW.ar-169 .pk-shot {
  aspect-ratio: 16 / 9;
}
.cid-vtXwcqJlZW .pk-save {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  margin: 0 !important;
  padding: 3px 10px;
  border-radius: 8px;
  background: #3b6ea5;
  line-height: 1.4;
  color: #ffffff;
}
.cid-vtXwcqJlZW .pk-qty {
  margin: 0 0 4px !important;
  line-height: 1.3;
}
.cid-vtXwcqJlZW .pk-note {
  margin: 0 0 12px !important;
  line-height: 1.45;
}
.cid-vtXwcqJlZW .pk-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0 0 14px !important;
  line-height: 1.1;
}
.cid-vtXwcqJlZW .pk-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0 0 14px;
}
.cid-vtXwcqJlZW .pk-price-row .pk-price {
  margin: 0 !important;
}
.cid-vtXwcqJlZW .pk-old {
  margin: 0 !important;
  line-height: 1.1;
  opacity: .6;
}
.cid-vtXwcqJlZW .pk-btn,
.cid-vtXwcqJlZW .pk-btn:hover,
.cid-vtXwcqJlZW .pk-btn:focus,
.cid-vtXwcqJlZW .pk-btn:visited {
  color: #fafafa !important;
}
.cid-vtXwcqJlZW .pk-btn {
  display: block;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  background: #e6c63b;
  text-align: center;
  text-decoration: none !important;
  transition: filter .15s ease;
}
.cid-vtXwcqJlZW .pk-btn b,
.cid-vtXwcqJlZW .pk-btn span {
  color: inherit !important;
}
.cid-vtXwcqJlZW .pk-btn:hover {
  filter: brightness(1.05);
}
.cid-vtXwcqJlZW .pk-foot {
  margin: 30px 0 0 !important;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vtXwcqJlZW .pk-head {
    margin-bottom: 28px;
  }
  .cid-vtXwcqJlZW .pk-grid {
    gap: 24px;
  }
}
.cid-vlF8KuFA6I {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vlF8KuFA6I .warning-banner {
  display: flex;
  align-items: center;
  background-color: #ffff33;
  border: 3px solid #cc0000;
  padding: 5px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.cid-vlF8KuFA6I .warning-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.cid-vlF8KuFA6I .warning-icon {
  height: 42px;
  width: auto;
  display: block;
}
.cid-vlF8KuFA6I .warning-text {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .cid-vlF8KuFA6I .warning-banner {
    padding: 10px 15px;
    border-width: 2px;
  }
  .cid-vlF8KuFA6I .warning-text {
    font-size: 16px;
  }
  .cid-vlF8KuFA6I .warning-icon {
    height: 30px;
  }
}
.cid-tuCwp8HhtA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuCwp8HhtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCwp8HhtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuCwp8HhtA .gb-box {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 36px;
  border-radius: 14px;
  background: #eaf1f8;
  text-align: center;
}
.cid-tuCwp8HhtA .gb-head {
  max-width: 620px;
  margin: 0 auto;
}
.cid-tuCwp8HhtA.gb-left .gb-box {
  text-align: left;
}
.cid-tuCwp8HhtA.gb-left .gb-head {
  margin: 0;
}
.cid-tuCwp8HhtA .gb-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 14px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-tuCwp8HhtA .gb-eyebrow::before,
.cid-tuCwp8HhtA .gb-eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-tuCwp8HhtA.gb-left .gb-eyebrow {
  justify-content: flex-start;
}
.cid-tuCwp8HhtA.gb-left .gb-eyebrow::after {
  display: none;
}
.cid-tuCwp8HhtA .gb-num {
  margin: 0 !important;
  line-height: .9;
  letter-spacing: -0.04em;
  color: #3b6ea5;
}
.cid-tuCwp8HhtA .gb-sub {
  margin: 10px 0 0 !important;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1.2;
}
.cid-tuCwp8HhtA .gb-lede {
  margin: 16px 0 0 !important;
}
.cid-tuCwp8HhtA .gb-pts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  text-align: left;
}
@media (min-width: 700px) {
  .cid-tuCwp8HhtA .gb-pts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cid-tuCwp8HhtA .gb-pt:nth-child(n+4) {
  display: none !important;
}
.cid-tuCwp8HhtA .gb-pt {
  padding: 18px;
  border: 1px solid #e3eaf0;
  border-radius: 9.1px;
  background: #ffffff;
}
.cid-tuCwp8HhtA .gb-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #eaf1f8;
}
.cid-tuCwp8HhtA .gb-ic .mbr-iconfont {
  font-size: 20px;
  color: #3b6ea5;
}
.cid-tuCwp8HhtA .gb-pt-h {
  margin: 0 0 4px !important;
  line-height: 1.3;
}
.cid-tuCwp8HhtA .gb-pt-p {
  margin: 0 !important;
}
.cid-tuCwp8HhtA .gb-cta {
  margin-top: 30px;
}
.cid-tuCwp8HhtA .gb-cta .mbr-section-btn {
  margin: 0 !important;
}
.cid-tuCwp8HhtA .gb-fine {
  margin: 12px 0 0 !important;
}
@media (max-width: 767px) {
  .cid-tuCwp8HhtA .gb-box {
    padding: 32px 18px;
  }
}
.cid-tuGqp1GGTG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8e8e8;
}
.cid-tuGqp1GGTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuGqp1GGTG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuGqp1GGTG .mbr-section-title {
  color: #000000;
}
.cid-vlWWgEag3K {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
.cid-vlWWgEag3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlWWgEag3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlWWgEag3K .fq-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}
@media (min-width: 992px) {
  .cid-vlWWgEag3K .fq-grid {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 44px;
  }
  .cid-vlWWgEag3K.fq-flip .fq-grid {
    grid-template-columns: minmax(0, 1fr) 38%;
  }
  .cid-vlWWgEag3K.fq-flip .fq-side {
    order: 2;
  }
  .cid-vlWWgEag3K .fq-side {
    position: sticky;
    top: 90px;
  }
  .cid-vlWWgEag3K.no-sticky .fq-side {
    position: static;
  }
}
.cid-vlWWgEag3K .fq-side {
  padding: 32px;
  border-radius: 7.5px;
  background: #16283d;
}
.cid-vlWWgEag3K .fq-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-vlWWgEag3K .fq-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-vlWWgEag3K .fq-title {
  margin: 0 0 12px !important;
  line-height: 1.15;
  color: #ffffff;
}
.cid-vlWWgEag3K .fq-lede {
  margin: 0 0 22px !important;
  color: #fafafa;
}
.cid-vlWWgEag3K .fq-contact {
  padding: 16px 18px;
  border-radius: 5.4px;
  background: #25384d;
}
.cid-vlWWgEag3K .fq-contact-h {
  margin: 0 0 4px !important;
  color: #ffffff;
}
.cid-vlWWgEag3K .fq-contact-t {
  margin: 0 !important;
  color: #fafafa;
}
.cid-vlWWgEag3K .fq-contact-t a {
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}
.cid-vlWWgEag3K .fq-btn {
  margin-top: 20px !important;
}
.cid-vlWWgEag3K .fq-list .accordion {
  counter-reset: fq;
}
.cid-vlWWgEag3K .fq-list .card {
  counter-increment: fq;
  margin: 0 0 10px !important;
  padding: 0 22px !important;
  border: 1px solid #bed3f9 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.cid-vlWWgEag3K .fq-list .card:has(.panel-title:not(.collapsed)) {
  border-color: #3b6ea5 !important;
  box-shadow: 0 10px 24px rgba(59, 110, 165, 0.12);
}
.cid-vlWWgEag3K .fq-list .card-header {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
}
.cid-vlWWgEag3K .fq-list .panel-title {
  position: relative;
  display: block;
  padding: 17px 44px 17px 40px !important;
  text-decoration: none !important;
  color: inherit;
}
.cid-vlWWgEag3K .fq-list .panel-title::before {
  content: counter(fq, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 19px;
  color: #3b6ea5;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.4;
}
.cid-vlWWgEag3K.no-num .fq-list .panel-title {
  padding-left: 0 !important;
}
.cid-vlWWgEag3K.no-num .fq-list .panel-title::before {
  display: none;
}
.cid-vlWWgEag3K .fq-list .panel-title-edit {
  margin: 0 !important;
  line-height: 1.42;
}
.cid-vlWWgEag3K .fq-list .panel-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background-color: #eaf1f8;
  background-image: linear-gradient(#3b6ea5, #3b6ea5), linear-gradient(#3b6ea5, #3b6ea5);
  background-size: 12px 2px, 2px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: background-color 0.2s ease;
}
.cid-vlWWgEag3K .fq-list .panel-title:not(.collapsed)::after {
  background-color: #3b6ea5;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 12px 2px;
}
.cid-vlWWgEag3K .fq-list .sign {
  display: none !important;
}
.cid-vlWWgEag3K .fq-list .panel-body {
  padding: 0 34px 18px 40px !important;
  background: none !important;
}
.cid-vlWWgEag3K.no-num .fq-list .panel-body {
  padding-left: 0 !important;
}
.cid-vlWWgEag3K .fq-list .panel-text {
  margin: 0 !important;
}
.cid-vlWWgEag3K .fq-list .card:nth-child(n+7) {
  display: none !important;
}
@media (max-width: 575px) {
  .cid-vlWWgEag3K .fq-side {
    padding: 24px 20px;
  }
  .cid-vlWWgEag3K .fq-list .card {
    padding: 0 16px !important;
  }
  .cid-vlWWgEag3K .fq-list .panel-body {
    padding-right: 10px !important;
  }
}
.cid-tuGrBFI6wj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tuGrBFI6wj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuGrBFI6wj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuGrBFI6wj .mbr-section-title {
  color: #000000;
}
.cid-tuGrYQZPWh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tuGrYQZPWh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuGrYQZPWh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuGrYQZPWh .tg-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tuGrYQZPWh .tg-grid {
    grid-template-columns: 44% minmax(0, 1fr);
    gap: 56px;
  }
  .cid-tuGrYQZPWh.tg-flip .tg-grid {
    grid-template-columns: minmax(0, 1fr) 44%;
  }
  .cid-tuGrYQZPWh.tg-flip .tg-wrap {
    order: 2;
  }
}
.cid-tuGrYQZPWh .tg-wrap {
  display: flex;
  justify-content: center;
  padding-top: 64px;
}
.cid-tuGrYQZPWh.no-string .tg-wrap {
  padding-top: 0;
}
.cid-tuGrYQZPWh .tg-tag {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 54px 30px 32px;
  border-radius: 26px;
  background: #16283d;
  text-align: center;
  transform: rotate(-3deg);
  box-shadow: 0 22px 44px rgba(22, 40, 61, 0.28);
}
.cid-tuGrYQZPWh .tg-tag::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background: #fafafa;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cid-tuGrYQZPWh .tg-tag::after {
  content: "";
  position: absolute;
  top: -62px;
  left: 50%;
  width: 2px;
  height: 82px;
  background: #b8c4d0;
  transform: rotate(8deg);
  transform-origin: bottom center;
}
.cid-tuGrYQZPWh.no-string .tg-tag {
  padding-top: 32px;
}
.cid-tuGrYQZPWh.no-string .tg-tag::before,
.cid-tuGrYQZPWh.no-string .tg-tag::after {
  display: none;
}
.cid-tuGrYQZPWh .tg-label {
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e9f4ee;
}
.cid-tuGrYQZPWh .tg-old {
  margin: 0 !important;
  line-height: 1.2;
  opacity: .7;
  color: #e9f4ee;
}
.cid-tuGrYQZPWh .tg-price {
  margin: 2px 0 0 !important;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.cid-tuGrYQZPWh .tg-save {
  display: inline-block;
  margin: 14px 0 0 !important;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e6c63b;
  line-height: 1.4;
}
.cid-tuGrYQZPWh .tg-list {
  display: grid;
  gap: 6px;
  margin: 20px 0 0 !important;
  padding: 16px 0 0 !important;
  border-top: 1px dashed #3a4c61;
  list-style: none !important;
  color: #ffffff;
}
.cid-tuGrYQZPWh .tg-list li {
  margin: 0;
}
.cid-tuGrYQZPWh .tg-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3b6ea5;
}
.cid-tuGrYQZPWh .tg-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.cid-tuGrYQZPWh .tg-title {
  margin: 0 0 14px !important;
}
.cid-tuGrYQZPWh .tg-lede {
  margin: 0 0 24px !important;
}
.cid-tuGrYQZPWh .tg-copy .mbr-section-btn {
  margin: 0 !important;
}
.cid-tuGrYQZPWh .tg-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-tuGrYQZPWh .tg-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.cid-tuGrYQZPWh .tg-trust li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 5px;
  margin-top: -3px;
  border-left: 2px solid #3b6ea5;
  border-bottom: 2px solid #3b6ea5;
  transform: rotate(-45deg);
}
.cid-tuGrYQZPWh .tg-list li:nth-child(n+4) {
  display: none !important;
}
.cid-tuGrYQZPWh .tg-trust li:nth-child(n+4) {
  display: none !important;
}
@media (max-width: 575px) {
  .cid-tuGrYQZPWh .tg-tag {
    width: 90%;
    padding-left: 22px;
    padding-right: 22px;
  }
}
.cid-vtXTCVNWWv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #191919;
}
.cid-vtXTCVNWWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXTCVNWWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXTCVNWWv .ft-top {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
}
@media (min-width: 992px) {
  .cid-vtXTCVNWWv .ft-top {
    grid-template-columns: 60% minmax(0, 1fr);
    gap: 48px;
  }
}
.cid-vtXTCVNWWv .ft-title {
  margin: 0 0 12px !important;
  letter-spacing: .2em;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-text {
  max-width: 380px;
  margin: 0 0 20px !important;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-btn .btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
@media (min-width: 768px) {
  .cid-vtXTCVNWWv .ft-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cid-vtXTCVNWWv .ft-group:nth-child(n+4) {
  display: none !important;
}
.cid-vtXTCVNWWv .ft-h {
  margin: 0 0 14px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-vtXTCVNWWv .ft-list li {
  margin: 0;
}
.cid-vtXTCVNWWv .ft-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.cid-vtXTCVNWWv .ft-list a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-line {
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-bottom: 22px;
}
.cid-vtXTCVNWWv .ft-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}
.cid-vtXTCVNWWv .ft-copy,
.cid-vtXTCVNWWv .ft-email {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-email a {
  color: inherit;
  text-decoration: none;
}
.cid-vtXTCVNWWv .ft-email a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-disc {
  max-width: 760px;
  margin: 14px 0 0 !important;
  opacity: .75;
}
.cid-vtXTCVNWWv .ft-copy {
  color: #fafafa;
}
.cid-vtXTCVNWWv .ft-email {
  color: #ffffff;
}
.cid-tuC40mmOYC .navbar-dropdown {
  position: relative !important;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuC40mmOYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuC40mmOYC .dropdown-item:hover,
.cid-tuC40mmOYC .dropdown-item:focus {
  background: #10378f !important;
  color: white !important;
}
.cid-tuC40mmOYC .dropdown-item:hover span {
  color: white;
}
.cid-tuC40mmOYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuC40mmOYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuC40mmOYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuC40mmOYC .nav-link {
  position: relative;
}
.cid-tuC40mmOYC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .container {
    flex-wrap: nowrap;
  }
}
.cid-tuC40mmOYC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown-menu,
.cid-tuC40mmOYC .navbar.opened {
  background: #eff2f3 !important;
}
.cid-tuC40mmOYC .nav-item:focus,
.cid-tuC40mmOYC .nav-link:focus {
  outline: none;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuC40mmOYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuC40mmOYC .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: #eff2f3;
}
.cid-tuC40mmOYC .navbar.opened {
  transition: all 0.3s;
}
.cid-tuC40mmOYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuC40mmOYC .navbar .navbar-logo img {
  width: auto;
}
.cid-tuC40mmOYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuC40mmOYC .navbar.collapsed {
  justify-content: center;
}
.cid-tuC40mmOYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuC40mmOYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuC40mmOYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuC40mmOYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuC40mmOYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuC40mmOYC .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-tuC40mmOYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuC40mmOYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuC40mmOYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuC40mmOYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuC40mmOYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuC40mmOYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuC40mmOYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuC40mmOYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuC40mmOYC .dropdown-item.active,
.cid-tuC40mmOYC .dropdown-item:active {
  background-color: transparent;
}
.cid-tuC40mmOYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff2f3;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuC40mmOYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuC40mmOYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuC40mmOYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuC40mmOYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuC40mmOYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar {
    height: 70px;
  }
  .cid-tuC40mmOYC .navbar.opened {
    height: auto;
  }
  .cid-tuC40mmOYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vtWA7agzi8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vtWA7agzi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtWA7agzi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtWAfCFulj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vtXTCVNWWv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #191919;
}
.cid-vtXTCVNWWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXTCVNWWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXTCVNWWv .ft-top {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
}
@media (min-width: 992px) {
  .cid-vtXTCVNWWv .ft-top {
    grid-template-columns: 60% minmax(0, 1fr);
    gap: 48px;
  }
}
.cid-vtXTCVNWWv .ft-title {
  margin: 0 0 12px !important;
  letter-spacing: .2em;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-text {
  max-width: 380px;
  margin: 0 0 20px !important;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-btn .btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
@media (min-width: 768px) {
  .cid-vtXTCVNWWv .ft-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cid-vtXTCVNWWv .ft-group:nth-child(n+4) {
  display: none !important;
}
.cid-vtXTCVNWWv .ft-h {
  margin: 0 0 14px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-vtXTCVNWWv .ft-list li {
  margin: 0;
}
.cid-vtXTCVNWWv .ft-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.cid-vtXTCVNWWv .ft-list a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-line {
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-bottom: 22px;
}
.cid-vtXTCVNWWv .ft-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}
.cid-vtXTCVNWWv .ft-copy,
.cid-vtXTCVNWWv .ft-email {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-email a {
  color: inherit;
  text-decoration: none;
}
.cid-vtXTCVNWWv .ft-email a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-disc {
  max-width: 760px;
  margin: 14px 0 0 !important;
  opacity: .75;
}
.cid-vtXTCVNWWv .ft-copy {
  color: #fafafa;
}
.cid-vtXTCVNWWv .ft-email {
  color: #ffffff;
}
.cid-tuC40mmOYC .navbar-dropdown {
  position: relative !important;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuC40mmOYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuC40mmOYC .dropdown-item:hover,
.cid-tuC40mmOYC .dropdown-item:focus {
  background: #10378f !important;
  color: white !important;
}
.cid-tuC40mmOYC .dropdown-item:hover span {
  color: white;
}
.cid-tuC40mmOYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuC40mmOYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuC40mmOYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuC40mmOYC .nav-link {
  position: relative;
}
.cid-tuC40mmOYC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .container {
    flex-wrap: nowrap;
  }
}
.cid-tuC40mmOYC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown-menu,
.cid-tuC40mmOYC .navbar.opened {
  background: #eff2f3 !important;
}
.cid-tuC40mmOYC .nav-item:focus,
.cid-tuC40mmOYC .nav-link:focus {
  outline: none;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuC40mmOYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuC40mmOYC .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: #eff2f3;
}
.cid-tuC40mmOYC .navbar.opened {
  transition: all 0.3s;
}
.cid-tuC40mmOYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuC40mmOYC .navbar .navbar-logo img {
  width: auto;
}
.cid-tuC40mmOYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuC40mmOYC .navbar.collapsed {
  justify-content: center;
}
.cid-tuC40mmOYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuC40mmOYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuC40mmOYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuC40mmOYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuC40mmOYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuC40mmOYC .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-tuC40mmOYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuC40mmOYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuC40mmOYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuC40mmOYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuC40mmOYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuC40mmOYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuC40mmOYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuC40mmOYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuC40mmOYC .dropdown-item.active,
.cid-tuC40mmOYC .dropdown-item:active {
  background-color: transparent;
}
.cid-tuC40mmOYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff2f3;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuC40mmOYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuC40mmOYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuC40mmOYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuC40mmOYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuC40mmOYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar {
    height: 70px;
  }
  .cid-tuC40mmOYC .navbar.opened {
    height: auto;
  }
  .cid-tuC40mmOYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vtWDuLv2kt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vtWDuLv2kt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtWDuLv2kt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtWDy8Pe73 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vtXTCVNWWv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #191919;
}
.cid-vtXTCVNWWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXTCVNWWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXTCVNWWv .ft-top {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
}
@media (min-width: 992px) {
  .cid-vtXTCVNWWv .ft-top {
    grid-template-columns: 60% minmax(0, 1fr);
    gap: 48px;
  }
}
.cid-vtXTCVNWWv .ft-title {
  margin: 0 0 12px !important;
  letter-spacing: .2em;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-text {
  max-width: 380px;
  margin: 0 0 20px !important;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-btn .btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
@media (min-width: 768px) {
  .cid-vtXTCVNWWv .ft-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cid-vtXTCVNWWv .ft-group:nth-child(n+4) {
  display: none !important;
}
.cid-vtXTCVNWWv .ft-h {
  margin: 0 0 14px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-vtXTCVNWWv .ft-list li {
  margin: 0;
}
.cid-vtXTCVNWWv .ft-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.cid-vtXTCVNWWv .ft-list a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-line {
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-bottom: 22px;
}
.cid-vtXTCVNWWv .ft-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}
.cid-vtXTCVNWWv .ft-copy,
.cid-vtXTCVNWWv .ft-email {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-email a {
  color: inherit;
  text-decoration: none;
}
.cid-vtXTCVNWWv .ft-email a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-disc {
  max-width: 760px;
  margin: 14px 0 0 !important;
  opacity: .75;
}
.cid-vtXTCVNWWv .ft-copy {
  color: #fafafa;
}
.cid-vtXTCVNWWv .ft-email {
  color: #ffffff;
}
.cid-tuC40mmOYC .navbar-dropdown {
  position: relative !important;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuC40mmOYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuC40mmOYC .dropdown-item:hover,
.cid-tuC40mmOYC .dropdown-item:focus {
  background: #10378f !important;
  color: white !important;
}
.cid-tuC40mmOYC .dropdown-item:hover span {
  color: white;
}
.cid-tuC40mmOYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuC40mmOYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuC40mmOYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuC40mmOYC .nav-link {
  position: relative;
}
.cid-tuC40mmOYC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .container {
    flex-wrap: nowrap;
  }
}
.cid-tuC40mmOYC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown-menu,
.cid-tuC40mmOYC .navbar.opened {
  background: #eff2f3 !important;
}
.cid-tuC40mmOYC .nav-item:focus,
.cid-tuC40mmOYC .nav-link:focus {
  outline: none;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuC40mmOYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuC40mmOYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuC40mmOYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuC40mmOYC .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: #eff2f3;
}
.cid-tuC40mmOYC .navbar.opened {
  transition: all 0.3s;
}
.cid-tuC40mmOYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuC40mmOYC .navbar .navbar-logo img {
  width: auto;
}
.cid-tuC40mmOYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuC40mmOYC .navbar.collapsed {
  justify-content: center;
}
.cid-tuC40mmOYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuC40mmOYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuC40mmOYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuC40mmOYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuC40mmOYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuC40mmOYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuC40mmOYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuC40mmOYC .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-tuC40mmOYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuC40mmOYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuC40mmOYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuC40mmOYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuC40mmOYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuC40mmOYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuC40mmOYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuC40mmOYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuC40mmOYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuC40mmOYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuC40mmOYC .dropdown-item.active,
.cid-tuC40mmOYC .dropdown-item:active {
  background-color: transparent;
}
.cid-tuC40mmOYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuC40mmOYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eff2f3;
}
.cid-tuC40mmOYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuC40mmOYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuC40mmOYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuC40mmOYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuC40mmOYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuC40mmOYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuC40mmOYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuC40mmOYC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuC40mmOYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuC40mmOYC .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-tuC40mmOYC .navbar {
    height: 70px;
  }
  .cid-tuC40mmOYC .navbar.opened {
    height: auto;
  }
  .cid-tuC40mmOYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vtWOvnmr1f {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vtWOvnmr1f .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtWOvnmr1f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtWOvLCfNJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vtWOvLCfNJ blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vtXTCVNWWv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #191919;
}
.cid-vtXTCVNWWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtXTCVNWWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtXTCVNWWv .ft-top {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
}
@media (min-width: 992px) {
  .cid-vtXTCVNWWv .ft-top {
    grid-template-columns: 60% minmax(0, 1fr);
    gap: 48px;
  }
}
.cid-vtXTCVNWWv .ft-title {
  margin: 0 0 12px !important;
  letter-spacing: .2em;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-text {
  max-width: 380px;
  margin: 0 0 20px !important;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-btn .btn {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
@media (min-width: 768px) {
  .cid-vtXTCVNWWv .ft-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cid-vtXTCVNWWv .ft-group:nth-child(n+4) {
  display: none !important;
}
.cid-vtXTCVNWWv .ft-h {
  margin: 0 0 14px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}
.cid-vtXTCVNWWv .ft-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cid-vtXTCVNWWv .ft-list li {
  margin: 0;
}
.cid-vtXTCVNWWv .ft-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.cid-vtXTCVNWWv .ft-list a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-line {
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-bottom: 22px;
}
.cid-vtXTCVNWWv .ft-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
}
.cid-vtXTCVNWWv .ft-copy,
.cid-vtXTCVNWWv .ft-email {
  margin: 0 !important;
}
.cid-vtXTCVNWWv .ft-email a {
  color: inherit;
  text-decoration: none;
}
.cid-vtXTCVNWWv .ft-email a:hover {
  color: #e43f3f;
}
.cid-vtXTCVNWWv .ft-disc {
  max-width: 760px;
  margin: 14px 0 0 !important;
  opacity: .75;
}
.cid-vtXTCVNWWv .ft-copy {
  color: #fafafa;
}
.cid-vtXTCVNWWv .ft-email {
  color: #ffffff;
}
