body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Bellota Text', display;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Bellota Text', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bellota Text', display;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #4d6d9a !important;
}
.bg-success {
  background-color: #c794d4 !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: #4d6d9a !important;
  border-color: #4d6d9a !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: #304460 !important;
  border-color: #304460 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #304460 !important;
  border-color: #304460 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edb5bf !important;
  border-color: #edb5bf !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: #dc6f83 !important;
  border-color: #dc6f83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !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: #c794d4 !important;
  border-color: #c794d4 !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: #a756bb !important;
  border-color: #a756bb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a756bb !important;
  border-color: #a756bb !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: transparent;
  color: #4d6d9a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #304460 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4d6d9a !important;
  border-color: #4d6d9a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb5bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dc6f83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #c794d4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a756bb !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c794d4 !important;
  border-color: #c794d4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #4d6d9a !important;
}
.text-secondary {
  color: #edb5bf !important;
}
.text-success {
  color: #c794d4 !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: #2b3d56 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d96378 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a14bb7 !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: #4d6d9a;
}
.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: #4d6d9a;
  border-color: #4d6d9a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4d6d9a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9aafcc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4d6d9a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4d6d9a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d6d9a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d6d9a;
}
.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: #4d6d9a;
  border-bottom-color: #4d6d9a;
}
.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: #4d6d9a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #edb5bf !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='%234d6d9a' %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-vu3rgGeNRH {
  z-index: 1000;
  width: 100%;
}
.cid-vu3rgGeNRH nav.navbar {
  position: fixed;
}
.cid-vu3rgGeNRH .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu3rgGeNRH .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3rgGeNRH .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu3rgGeNRH .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu3rgGeNRH .container,
.cid-vu3rgGeNRH .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3rgGeNRH .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu3rgGeNRH .navbar-logo {
  margin-right: 10px;
}
.cid-vu3rgGeNRH .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu3rgGeNRH .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu3rgGeNRH .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3rgGeNRH .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu3rgGeNRH .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu3rgGeNRH .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu3rgGeNRH .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu3rgGeNRH .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu3rgGeNRH .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3rgGeNRH .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu3rgGeNRH .nav-dropdown .link:hover,
.cid-vu3rgGeNRH .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu3rgGeNRH .nav-dropdown .link:hover::before,
.cid-vu3rgGeNRH .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu3rgGeNRH .nav-item:focus,
.cid-vu3rgGeNRH .nav-link:focus {
  outline: none;
}
.cid-vu3rgGeNRH .dropdown-menu,
.cid-vu3rgGeNRH .navbar.opened {
  background: #173653 !important;
}
.cid-vu3rgGeNRH .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu3rgGeNRH .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu3rgGeNRH .dropdown-item:hover,
.cid-vu3rgGeNRH .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu3rgGeNRH .dropdown-item.active,
.cid-vu3rgGeNRH .dropdown-item:active {
  background: transparent;
}
.cid-vu3rgGeNRH .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu3rgGeNRH .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3rgGeNRH .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu3rgGeNRH .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu3rgGeNRH .navbar-buttons .btn {
  margin: 0;
}
.cid-vu3rgGeNRH .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu3rgGeNRH .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu3rgGeNRH button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu3rgGeNRH button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu3rgGeNRH .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu3rgGeNRH .navbar .container,
  .cid-vu3rgGeNRH .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu3rgGeNRH .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu3rgGeNRH .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu3rgGeNRH .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu3rgGeNRH .navbar-toggler,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu3rgGeNRH .navbar-collapse,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu3rgGeNRH nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu3rgGeNRH ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu3rgGeNRH ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu3rgGeNRH .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu3rgGeNRH .dropdown-item {
    text-align: center;
  }
  .cid-vu3rgGeNRH .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu3rgGeNRH .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu3rgGeNRH .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu3rgGeNRH .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu3rgGeNRH .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-5j {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* HERO */
  /* ARTICLE AREA */
  /* ARTICLE CARDS */
  /* TABLET */
  /* MOBILE */
}
#custom-html-5j .bs-inspiration-hero {
  position: relative;
  padding: 2.2rem 1rem 0;
  text-align: left;
  background: radial-gradient(circle at 15% 15%, rgba(82, 123, 166, 0.42), transparent 31%), radial-gradient(circle at 88% 22%, rgba(216, 185, 120, 0.16), transparent 28%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
  overflow: hidden;
}
#custom-html-5j .bs-inspiration-hero .container {
  position: relative;
  z-index: 2;
}
#custom-html-5j .bs-hero-glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}
#custom-html-5j .bs-hero-glow-one {
  top: 10%;
  left: -130px;
  width: 330px;
  height: 330px;
  background: rgba(82, 123, 166, 0.2);
  filter: blur(10px);
}
#custom-html-5j .bs-hero-glow-two {
  right: -140px;
  bottom: 40px;
  width: 360px;
  height: 360px;
  background: rgba(238, 211, 155, 0.08);
  filter: blur(15px);
}
#custom-html-5j .bs-hero-ring {
  position: absolute;
  top: 112px;
  right: 5%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(238, 211, 155, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
#custom-html-5j .bs-inspiration-breadcrumb {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 1180px;
  margin: 0 auto 2rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.04rem;
}
#custom-html-5j .bs-inspiration-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-5j .bs-inspiration-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-5j .bs-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 0 5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 5rem;
  align-items: center;
}
#custom-html-5j .bs-hero-copy {
  position: relative;
  z-index: 5;
}
#custom-html-5j .bs-hero-badge {
  display: inline-flex;
  margin-bottom: 1.45rem;
  padding: 0.42rem 0.85rem 0.42rem 0.5rem;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(238, 211, 155, 0.3);
  border-radius: 25px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
#custom-html-5j .bs-hero-badge-heart {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #ee2435;
  border-radius: 50%;
  font-size: 0.77rem;
}
#custom-html-5j .bs-inspiration-hero .bs-eyebrow {
  margin: 0 0 0.8rem;
  color: #eed39b;
  font-size: 0.73rem !important;
  font-weight: 700;
  letter-spacing: 0.17rem;
}
#custom-html-5j .bs-inspiration-hero .mbr-section-title {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.2vw, 5rem) !important;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
#custom-html-5j .bs-inspiration-hero .mbr-section-title em {
  color: #eed39b;
  font-weight: 400;
}
#custom-html-5j .bs-inspiration-hero .bs-introduction {
  max-width: 570px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}
#custom-html-5j .bs-explore-button {
  display: inline-flex;
  min-height: 50px;
  margin-top: 1.8rem;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 9px 22px rgba(4, 23, 40, 0.22);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#custom-html-5j .bs-explore-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.3);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-5j .bs-explore-button span {
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}
#custom-html-5j .bs-explore-button:hover span {
  transform: translateY(3px);
}
#custom-html-5j .bs-hero-gallery {
  position: relative;
  min-height: 495px;
}
#custom-html-5j .bs-gallery-frame {
  position: absolute;
  background: #dfe5e8;
  border: 5px solid #ffffff;
  box-shadow: 0 18px 40px rgba(4, 23, 40, 0.34);
  overflow: hidden;
}
#custom-html-5j .bs-gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#custom-html-5j .bs-gallery-main {
  top: 42px;
  right: 27px;
  width: 76%;
  height: 390px;
  border-radius: 120px 18px 120px 18px;
  transform: rotate(1.5deg);
}
#custom-html-5j .bs-gallery-small {
  width: 185px;
  height: 185px;
  border-radius: 50%;
}
#custom-html-5j .bs-gallery-top {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-4deg);
}
#custom-html-5j .bs-gallery-bottom {
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: rotate(3deg);
}
#custom-html-5j .bs-gallery-caption {
  position: absolute;
  bottom: 4px;
  left: 31px;
  z-index: 4;
  display: flex;
  min-width: 190px;
  padding: 1rem 1.2rem;
  align-items: center;
  gap: 0.8rem;
  color: #173653;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(238, 211, 155, 0.7);
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(4, 23, 40, 0.23);
  transform: rotate(-2deg);
}
#custom-html-5j .bs-gallery-caption span {
  color: #c39c50;
  font-size: 1.5rem;
}
#custom-html-5j .bs-gallery-caption p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.35;
}
#custom-html-5j .bs-inspiration-features {
  position: relative;
  z-index: 5;
  display: grid;
  max-width: 1180px;
  margin: 0 auto 1.5rem;
  padding: 1.15rem 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 54, 83, 0.1);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(4, 23, 40, 0.18);
}
#custom-html-5j .bs-inspiration-feature {
  display: flex;
  min-height: 82px;
  padding: 0.5rem 1.4rem;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid #e1e6ea;
}
#custom-html-5j .bs-inspiration-feature:last-child {
  border-right: 0;
}
#custom-html-5j .bs-feature-number {
  flex: 0 0 auto;
  color: #d8b978;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}
#custom-html-5j .bs-inspiration-feature strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.2;
}
#custom-html-5j .bs-inspiration-feature small {
  display: block;
  color: #6b7884;
  font-size: 0.82rem;
  line-height: 1.5;
}
#custom-html-5j .bs-articles-area {
  width: 100%;
  padding: 0 0 5rem;
  background: #ffffff !important;
}
#custom-html-5j .bs-articles-area .container {
  background: transparent !important;
}
#custom-html-5j .bs-section-head {
  padding-top: 3.75rem;
  text-align: center;
}
#custom-html-5j .bs-small-heading {
  margin: 0 0 0.4rem;
  color: #96783d;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14rem;
}
#custom-html-5j .bs-articles-title {
  margin: 0;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
#custom-html-5j .bs-articles-subtitle {
  max-width: 620px;
  margin: 0.7rem auto 0;
  color: #667482;
}
#custom-html-5j .bs-inspiration-demo .item {
  margin-bottom: 1.4rem;
}
#custom-html-5j .bs-inspiration-demo .item-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(23, 54, 83, 0.11);
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(4, 23, 40, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#custom-html-5j .bs-inspiration-demo .item-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(4, 23, 40, 0.16);
}
#custom-html-5j .bs-inspiration-demo .item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.53846154;
  background: #dfe5e8;
  overflow: hidden;
}
#custom-html-5j .bs-inspiration-demo .item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
#custom-html-5j .bs-inspiration-demo .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
#custom-html-5j .bs-inspiration-demo .item-wrapper:hover .item-img img {
  transform: scale(1.035);
}
#custom-html-5j .bs-article-category {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.32rem 0.65rem;
  color: #173653;
  background: rgba(238, 211, 155, 0.95);
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(4, 23, 40, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  pointer-events: none;
}
#custom-html-5j .bs-inspiration-demo .item-content {
  padding: 1.35rem 1.35rem 0;
  text-align: center;
}
#custom-html-5j .bs-inspiration-demo .item-title {
  margin: 0;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-5j .bs-inspiration-demo .item-title a {
  color: #173653 !important;
  text-decoration: none;
}
#custom-html-5j .bs-inspiration-demo .item-title a:hover {
  color: #96783d !important;
}
#custom-html-5j .bs-inspiration-demo .item-content .mbr-text {
  margin-bottom: 0;
  color: #657482;
  line-height: 1.55;
}
#custom-html-5j .bs-inspiration-demo .item-footer {
  margin-top: auto !important;
  padding: 1.2rem 1.35rem 1.35rem;
}
#custom-html-5j .bs-inspiration-demo .item-footer .btn {
  width: 100%;
  margin: 0 !important;
  padding: 0.72rem 1rem !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #294e73, #173653) !important;
  border: 1px solid #173653 !important;
  border-radius: 25px !important;
  box-shadow: none !important;
  font-size: 0.9rem !important;
  font-weight: 700;
}
#custom-html-5j .bs-inspiration-demo .item-footer .btn:hover {
  color: #173653 !important;
  background: #eed39b !important;
  border-color: #eed39b !important;
}
@media (max-width: 991px) {
  #custom-html-5j .bs-inspiration-hero {
    padding: 2rem 1rem 0;
  }
  #custom-html-5j .bs-inspiration-breadcrumb {
    margin-bottom: 1.5rem;
  }
  #custom-html-5j .bs-hero-layout {
    padding-bottom: 4rem;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  #custom-html-5j .bs-inspiration-hero .bs-introduction {
    margin-right: auto;
    margin-left: auto;
  }
  #custom-html-5j .bs-hero-gallery {
    width: 100%;
    max-width: 620px;
    min-height: 450px;
    margin: 0 auto;
  }
  #custom-html-5j .bs-gallery-main {
    right: 8%;
    width: 72%;
    height: 350px;
  }
  #custom-html-5j .bs-gallery-small {
    width: 165px;
    height: 165px;
  }
  #custom-html-5j .bs-inspiration-features {
    margin-bottom: 1.4rem;
  }
  #custom-html-5j .bs-inspiration-feature {
    padding: 0.5rem 1rem;
  }
  #custom-html-5j .bs-section-head {
    padding-top: 3.5rem;
  }
}
@media (max-width: 575px) {
  #custom-html-5j .bs-inspiration-hero {
    padding: 1.5rem 0.25rem 0;
  }
  #custom-html-5j .bs-inspiration-breadcrumb {
    justify-content: center;
    margin-bottom: 1.4rem;
  }
  #custom-html-5j .bs-hero-layout {
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  #custom-html-5j .bs-hero-badge {
    margin-bottom: 1.15rem;
  }
  #custom-html-5j .bs-inspiration-hero .bs-eyebrow {
    font-size: 0.66rem !important;
    letter-spacing: 0.11rem;
  }
  #custom-html-5j .bs-inspiration-hero .mbr-section-title {
    font-size: 2.65rem !important;
    line-height: 1.05;
  }
  #custom-html-5j .bs-inspiration-hero .bs-introduction {
    font-size: 0.92rem !important;
  }
  #custom-html-5j .bs-explore-button {
    width: 100%;
    max-width: 280px;
  }
  #custom-html-5j .bs-hero-gallery {
    min-height: 330px;
  }
  #custom-html-5j .bs-gallery-main {
    top: 35px;
    right: 7%;
    width: 78%;
    height: 255px;
    border-width: 4px;
    border-radius: 75px 14px 75px 14px;
  }
  #custom-html-5j .bs-gallery-small {
    width: 108px;
    height: 108px;
    border-width: 4px;
  }
  #custom-html-5j .bs-gallery-caption {
    bottom: 0;
    left: 5px;
    min-width: 155px;
    padding: 0.75rem 0.9rem;
  }
  #custom-html-5j .bs-gallery-caption p {
    font-size: 0.76rem;
  }
  #custom-html-5j .bs-inspiration-features {
    margin-bottom: 1rem;
    padding: 0.65rem 1rem;
    grid-template-columns: 1fr;
  }
  #custom-html-5j .bs-inspiration-feature {
    min-height: 62px;
    padding: 0.65rem 0.2rem;
    border-right: 0;
    border-bottom: 1px solid #e1e6ea;
  }
  #custom-html-5j .bs-inspiration-feature:last-child {
    border-bottom: 0;
  }
  #custom-html-5j .bs-section-head {
    padding-top: 3rem;
  }
  #custom-html-5j .bs-articles-area {
    padding-bottom: 4rem;
  }
  #custom-html-5j .bs-inspiration-demo .item-content {
    padding: 1.15rem 1.15rem 0;
  }
  #custom-html-5j .bs-inspiration-demo .item-footer {
    padding: 1.1rem 1.15rem 1.2rem;
  }
}
.cid-vu3sQg1U2j {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu3sQg1U2j::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu3sQg1U2j .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3sQg1U2j .mbr-overlay {
  z-index: 0;
}
.cid-vu3sQg1U2j .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu3sQg1U2j .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3sQg1U2j .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3sQg1U2j .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu3sQg1U2j .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3sQg1U2j .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu3sQg1U2j .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu3sQg1U2j .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu3sQg1U2j .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu3sQg1U2j .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu3sQg1U2j .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu3sQg1U2j .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu3sQg1U2j .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3sQg1U2j .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu3sQg1U2j .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu3sQg1U2j .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu3sQg1U2j .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu3sQg1U2j .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu3sQg1U2j .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu3sQg1U2j .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu3sQg1U2j .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu3sQg1U2j .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu3sQg1U2j .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3sQg1U2j .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu3sQg1U2j .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu3sQg1U2j .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu3sQg1U2j .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu3sQg1U2j .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu3sQg1U2j .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu3sQg1U2j .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu3sQg1U2j .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu3sQg1U2j .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu3sQg1U2j .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu3sQg1U2j .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu3sQg1U2j .bs-footer-links {
    align-items: center;
  }
  .cid-vu3sQg1U2j .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu3sQg1U2j .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu3sQg1U2j .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu3sQg1U2j .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-button,
  .cid-vu3sQg1U2j .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu3sQg1U2j .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu3sQg1U2j .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu3sQg1U2j .bs-cookie-banner[hidden],
.cid-vu3sQg1U2j .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu3sQg1U2j .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu3sQg1U2j .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu3sQg1U2j .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu3sQg1U2j .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu3sQg1U2j .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu3sQg1U2j .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu3sQg1U2j .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu3sQg1U2j .bs-cookie-button,
.cid-vu3sQg1U2j .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-button:hover,
.cid-vu3sQg1U2j .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu3sQg1U2j .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu3sQg1U2j .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu3sQg1U2j .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu3sQg1U2j .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu3sQg1U2j .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu3sQg1U2j .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu3sQg1U2j .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu3sQg1U2j .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu3sQg1U2j .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu3sQg1U2j .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu3sQg1U2j .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu3sQg1U2j .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu3sQg1U2j .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu3sQg1U2j .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu3sQg1U2j .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu3sQg1U2j .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu3sQg1U2j .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu3sQg1U2j .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu3sQg1U2j .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu3sQg1U2j .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu3rgGeNRH {
  z-index: 1000;
  width: 100%;
}
.cid-vu3rgGeNRH nav.navbar {
  position: fixed;
}
.cid-vu3rgGeNRH .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu3rgGeNRH .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3rgGeNRH .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu3rgGeNRH .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu3rgGeNRH .container,
.cid-vu3rgGeNRH .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3rgGeNRH .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu3rgGeNRH .navbar-logo {
  margin-right: 10px;
}
.cid-vu3rgGeNRH .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu3rgGeNRH .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu3rgGeNRH .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3rgGeNRH .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu3rgGeNRH .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu3rgGeNRH .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu3rgGeNRH .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu3rgGeNRH .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu3rgGeNRH .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3rgGeNRH .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu3rgGeNRH .nav-dropdown .link:hover,
.cid-vu3rgGeNRH .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu3rgGeNRH .nav-dropdown .link:hover::before,
.cid-vu3rgGeNRH .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu3rgGeNRH .nav-item:focus,
.cid-vu3rgGeNRH .nav-link:focus {
  outline: none;
}
.cid-vu3rgGeNRH .dropdown-menu,
.cid-vu3rgGeNRH .navbar.opened {
  background: #173653 !important;
}
.cid-vu3rgGeNRH .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu3rgGeNRH .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu3rgGeNRH .dropdown-item:hover,
.cid-vu3rgGeNRH .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu3rgGeNRH .dropdown-item.active,
.cid-vu3rgGeNRH .dropdown-item:active {
  background: transparent;
}
.cid-vu3rgGeNRH .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu3rgGeNRH .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3rgGeNRH .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu3rgGeNRH .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu3rgGeNRH .navbar-buttons .btn {
  margin: 0;
}
.cid-vu3rgGeNRH .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu3rgGeNRH .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu3rgGeNRH button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu3rgGeNRH button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu3rgGeNRH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu3rgGeNRH nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu3rgGeNRH .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu3rgGeNRH .navbar .container,
  .cid-vu3rgGeNRH .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu3rgGeNRH .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu3rgGeNRH .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu3rgGeNRH .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu3rgGeNRH .navbar-toggler,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu3rgGeNRH .navbar-collapse,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu3rgGeNRH .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu3rgGeNRH nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu3rgGeNRH ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu3rgGeNRH ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu3rgGeNRH .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu3rgGeNRH .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu3rgGeNRH .dropdown-item {
    text-align: center;
  }
  .cid-vu3rgGeNRH .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu3rgGeNRH .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu3rgGeNRH .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu3rgGeNRH .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu3rgGeNRH .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4b {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4b .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4b .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4b .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4b .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4b .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4b .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4b .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4b .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4b .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4b .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4b .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4b .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4b .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4b .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4b .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4b .bs-article-body {
  min-width: 0;
}
#custom-html-4b .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4b .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4b .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4b .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4b .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4b .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4b .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4b .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4b .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4b .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4b .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4b .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4b .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4b .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4b .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4b .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4b .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4b .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4b .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4b .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4b .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4b .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4b .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4b .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4b .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4b .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4b .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4b .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4b .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4b .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4b .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4b .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4b .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4b .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4b .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4b .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4b .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4b .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4b .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4b .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4b .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4b .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4b .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4b .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4b .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4b .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4b .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4b .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4b .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4b .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4b .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4b .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4b .bs-article-sidebar {
    display: block;
  }
  #custom-html-4b .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4b .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4b .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4b .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4b .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu3sQg1U2j {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu3sQg1U2j::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu3sQg1U2j .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3sQg1U2j .mbr-overlay {
  z-index: 0;
}
.cid-vu3sQg1U2j .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu3sQg1U2j .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3sQg1U2j .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3sQg1U2j .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu3sQg1U2j .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3sQg1U2j .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu3sQg1U2j .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu3sQg1U2j .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu3sQg1U2j .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu3sQg1U2j .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu3sQg1U2j .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu3sQg1U2j .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu3sQg1U2j .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3sQg1U2j .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu3sQg1U2j .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu3sQg1U2j .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu3sQg1U2j .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu3sQg1U2j .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu3sQg1U2j .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu3sQg1U2j .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu3sQg1U2j .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu3sQg1U2j .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu3sQg1U2j .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3sQg1U2j .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu3sQg1U2j .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu3sQg1U2j .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu3sQg1U2j .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu3sQg1U2j .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu3sQg1U2j .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu3sQg1U2j .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu3sQg1U2j .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu3sQg1U2j .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu3sQg1U2j .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu3sQg1U2j .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu3sQg1U2j .bs-footer-links {
    align-items: center;
  }
  .cid-vu3sQg1U2j .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu3sQg1U2j .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu3sQg1U2j .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu3sQg1U2j .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-button,
  .cid-vu3sQg1U2j .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu3sQg1U2j .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu3sQg1U2j .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu3sQg1U2j .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu3sQg1U2j .bs-cookie-banner[hidden],
.cid-vu3sQg1U2j .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu3sQg1U2j .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu3sQg1U2j .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu3sQg1U2j .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu3sQg1U2j .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu3sQg1U2j .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu3sQg1U2j .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu3sQg1U2j .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu3sQg1U2j .bs-cookie-button,
.cid-vu3sQg1U2j .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-button:hover,
.cid-vu3sQg1U2j .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu3sQg1U2j .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu3sQg1U2j .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu3sQg1U2j .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu3sQg1U2j .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu3sQg1U2j .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu3sQg1U2j .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu3sQg1U2j .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu3sQg1U2j .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu3sQg1U2j .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu3sQg1U2j .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu3sQg1U2j .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu3sQg1U2j .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu3sQg1U2j .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu3sQg1U2j .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu3sQg1U2j .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu3sQg1U2j .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu3sQg1U2j .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu3sQg1U2j .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu3sQg1U2j .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu3sQg1U2j .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu3sQg1U2j .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu3IEY8sKG {
  z-index: 1000;
  width: 100%;
}
.cid-vu3IEY8sKG nav.navbar {
  position: fixed;
}
.cid-vu3IEY8sKG .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu3IEY8sKG .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3IEY8sKG .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu3IEY8sKG .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu3IEY8sKG .container,
.cid-vu3IEY8sKG .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3IEY8sKG .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu3IEY8sKG .navbar-logo {
  margin-right: 10px;
}
.cid-vu3IEY8sKG .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu3IEY8sKG .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu3IEY8sKG .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3IEY8sKG .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu3IEY8sKG .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu3IEY8sKG .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu3IEY8sKG .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu3IEY8sKG .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu3IEY8sKG .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3IEY8sKG .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu3IEY8sKG .nav-dropdown .link:hover,
.cid-vu3IEY8sKG .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu3IEY8sKG .nav-dropdown .link:hover::before,
.cid-vu3IEY8sKG .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu3IEY8sKG .nav-item:focus,
.cid-vu3IEY8sKG .nav-link:focus {
  outline: none;
}
.cid-vu3IEY8sKG .dropdown-menu,
.cid-vu3IEY8sKG .navbar.opened {
  background: #173653 !important;
}
.cid-vu3IEY8sKG .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu3IEY8sKG .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu3IEY8sKG .dropdown-item:hover,
.cid-vu3IEY8sKG .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu3IEY8sKG .dropdown-item.active,
.cid-vu3IEY8sKG .dropdown-item:active {
  background: transparent;
}
.cid-vu3IEY8sKG .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu3IEY8sKG .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3IEY8sKG .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu3IEY8sKG .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu3IEY8sKG .navbar-buttons .btn {
  margin: 0;
}
.cid-vu3IEY8sKG .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu3IEY8sKG .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu3IEY8sKG button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu3IEY8sKG button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu3IEY8sKG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu3IEY8sKG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu3IEY8sKG button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu3IEY8sKG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu3IEY8sKG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu3IEY8sKG nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu3IEY8sKG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu3IEY8sKG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu3IEY8sKG nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu3IEY8sKG .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu3IEY8sKG .navbar .container,
  .cid-vu3IEY8sKG .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu3IEY8sKG .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu3IEY8sKG .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu3IEY8sKG .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu3IEY8sKG .navbar-toggler,
  .cid-vu3IEY8sKG .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu3IEY8sKG .navbar-collapse,
  .cid-vu3IEY8sKG .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu3IEY8sKG .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu3IEY8sKG .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu3IEY8sKG .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu3IEY8sKG nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu3IEY8sKG ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu3IEY8sKG ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu3IEY8sKG .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu3IEY8sKG .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu3IEY8sKG .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu3IEY8sKG .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu3IEY8sKG .dropdown-item {
    text-align: center;
  }
  .cid-vu3IEY8sKG .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu3IEY8sKG .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu3IEY8sKG .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu3IEY8sKG .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu3IEY8sKG .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4d {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4d .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4d .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4d .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4d .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4d .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4d .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4d .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4d .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4d .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4d .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4d .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4d .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4d .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4d .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4d .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4d .bs-article-body {
  min-width: 0;
}
#custom-html-4d .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4d .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4d .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4d .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4d .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4d .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4d .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4d .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4d .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4d .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4d .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4d .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4d .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4d .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4d .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4d .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4d .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4d .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4d .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4d .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4d .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4d .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4d .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4d .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4d .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4d .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4d .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4d .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4d .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4d .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4d .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4d .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4d .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4d .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4d .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4d .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4d .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4d .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4d .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4d .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4d .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4d .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4d .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4d .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4d .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4d .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4d .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4d .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4d .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4d .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4d .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4d .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4d .bs-article-sidebar {
    display: block;
  }
  #custom-html-4d .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4d .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4d .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4d .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4d .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu3IEYQdOG {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu3IEYQdOG::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu3IEYQdOG .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu3IEYQdOG .mbr-overlay {
  z-index: 0;
}
.cid-vu3IEYQdOG .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu3IEYQdOG .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3IEYQdOG .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu3IEYQdOG .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu3IEYQdOG .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu3IEYQdOG .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu3IEYQdOG .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu3IEYQdOG .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu3IEYQdOG .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu3IEYQdOG .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu3IEYQdOG .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu3IEYQdOG .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu3IEYQdOG .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu3IEYQdOG .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu3IEYQdOG .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu3IEYQdOG .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu3IEYQdOG .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu3IEYQdOG .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu3IEYQdOG .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu3IEYQdOG .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu3IEYQdOG .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu3IEYQdOG .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu3IEYQdOG .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu3IEYQdOG .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu3IEYQdOG .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu3IEYQdOG .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3IEYQdOG .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu3IEYQdOG .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu3IEYQdOG .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu3IEYQdOG .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu3IEYQdOG .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu3IEYQdOG .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu3IEYQdOG .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu3IEYQdOG .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu3IEYQdOG .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu3IEYQdOG .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu3IEYQdOG .bs-footer-links {
    align-items: center;
  }
  .cid-vu3IEYQdOG .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu3IEYQdOG .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu3IEYQdOG .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu3IEYQdOG .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-button,
  .cid-vu3IEYQdOG .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu3IEYQdOG .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu3IEYQdOG .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu3IEYQdOG .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu3IEYQdOG .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu3IEYQdOG .bs-cookie-banner[hidden],
.cid-vu3IEYQdOG .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu3IEYQdOG .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu3IEYQdOG .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu3IEYQdOG .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu3IEYQdOG .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu3IEYQdOG .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu3IEYQdOG .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu3IEYQdOG .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu3IEYQdOG .bs-cookie-button,
.cid-vu3IEYQdOG .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu3IEYQdOG .bs-cookie-button:hover,
.cid-vu3IEYQdOG .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu3IEYQdOG .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu3IEYQdOG .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu3IEYQdOG .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu3IEYQdOG .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu3IEYQdOG .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu3IEYQdOG .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu3IEYQdOG .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu3IEYQdOG .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu3IEYQdOG .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu3IEYQdOG .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu3IEYQdOG .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu3IEYQdOG .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu3IEYQdOG .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu3IEYQdOG .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu3IEYQdOG .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu3IEYQdOG .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu3IEYQdOG .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu3IEYQdOG .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu3IEYQdOG .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu3IEYQdOG .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu3IEYQdOG .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu3IEYQdOG .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4XUd3fHs {
  z-index: 1000;
  width: 100%;
}
.cid-vu4XUd3fHs nav.navbar {
  position: fixed;
}
.cid-vu4XUd3fHs .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4XUd3fHs .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4XUd3fHs .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4XUd3fHs .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4XUd3fHs .container,
.cid-vu4XUd3fHs .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4XUd3fHs .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4XUd3fHs .navbar-logo {
  margin-right: 10px;
}
.cid-vu4XUd3fHs .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4XUd3fHs .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4XUd3fHs .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4XUd3fHs .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4XUd3fHs .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4XUd3fHs .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4XUd3fHs .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4XUd3fHs .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4XUd3fHs .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XUd3fHs .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4XUd3fHs .nav-dropdown .link:hover,
.cid-vu4XUd3fHs .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4XUd3fHs .nav-dropdown .link:hover::before,
.cid-vu4XUd3fHs .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4XUd3fHs .nav-item:focus,
.cid-vu4XUd3fHs .nav-link:focus {
  outline: none;
}
.cid-vu4XUd3fHs .dropdown-menu,
.cid-vu4XUd3fHs .navbar.opened {
  background: #173653 !important;
}
.cid-vu4XUd3fHs .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4XUd3fHs .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4XUd3fHs .dropdown-item:hover,
.cid-vu4XUd3fHs .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4XUd3fHs .dropdown-item.active,
.cid-vu4XUd3fHs .dropdown-item:active {
  background: transparent;
}
.cid-vu4XUd3fHs .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4XUd3fHs .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XUd3fHs .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4XUd3fHs .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4XUd3fHs .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4XUd3fHs .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4XUd3fHs .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4XUd3fHs button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4XUd3fHs button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4XUd3fHs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4XUd3fHs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4XUd3fHs button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4XUd3fHs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4XUd3fHs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4XUd3fHs nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4XUd3fHs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4XUd3fHs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4XUd3fHs nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4XUd3fHs .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4XUd3fHs .navbar .container,
  .cid-vu4XUd3fHs .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4XUd3fHs .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4XUd3fHs .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4XUd3fHs .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4XUd3fHs .navbar-toggler,
  .cid-vu4XUd3fHs .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4XUd3fHs .navbar-collapse,
  .cid-vu4XUd3fHs .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4XUd3fHs .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4XUd3fHs .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4XUd3fHs .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4XUd3fHs nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4XUd3fHs ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4XUd3fHs ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4XUd3fHs .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4XUd3fHs .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4XUd3fHs .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4XUd3fHs .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4XUd3fHs .dropdown-item {
    text-align: center;
  }
  .cid-vu4XUd3fHs .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4XUd3fHs .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4XUd3fHs .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4XUd3fHs .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4XUd3fHs .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4g {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4g .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4g .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4g .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4g .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4g .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4g .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4g .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4g .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4g .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4g .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4g .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4g .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4g .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4g .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4g .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4g .bs-article-body {
  min-width: 0;
}
#custom-html-4g .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4g .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4g .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4g .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4g .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4g .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4g .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4g .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4g .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4g .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4g .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4g .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4g .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4g .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4g .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4g .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4g .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4g .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4g .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4g .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4g .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4g .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4g .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4g .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4g .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4g .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4g .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4g .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4g .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4g .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4g .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4g .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4g .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4g .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4g .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4g .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4g .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4g .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4g .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4g .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4g .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4g .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4g .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4g .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4g .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4g .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4g .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4g .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4g .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4g .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4g .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4g .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4g .bs-article-sidebar {
    display: block;
  }
  #custom-html-4g .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4g .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4g .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4g .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4g .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4XUdGfnP {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4XUdGfnP::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4XUdGfnP .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4XUdGfnP .mbr-overlay {
  z-index: 0;
}
.cid-vu4XUdGfnP .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4XUdGfnP .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4XUdGfnP .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4XUdGfnP .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4XUdGfnP .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4XUdGfnP .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4XUdGfnP .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4XUdGfnP .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4XUdGfnP .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4XUdGfnP .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4XUdGfnP .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4XUdGfnP .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4XUdGfnP .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XUdGfnP .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4XUdGfnP .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4XUdGfnP .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4XUdGfnP .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4XUdGfnP .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4XUdGfnP .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4XUdGfnP .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4XUdGfnP .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4XUdGfnP .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4XUdGfnP .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4XUdGfnP .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4XUdGfnP .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4XUdGfnP .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4XUdGfnP .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4XUdGfnP .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4XUdGfnP .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4XUdGfnP .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4XUdGfnP .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4XUdGfnP .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4XUdGfnP .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4XUdGfnP .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4XUdGfnP .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4XUdGfnP .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4XUdGfnP .bs-footer-links {
    align-items: center;
  }
  .cid-vu4XUdGfnP .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4XUdGfnP .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4XUdGfnP .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4XUdGfnP .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-button,
  .cid-vu4XUdGfnP .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4XUdGfnP .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4XUdGfnP .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4XUdGfnP .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4XUdGfnP .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4XUdGfnP .bs-cookie-banner[hidden],
.cid-vu4XUdGfnP .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4XUdGfnP .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4XUdGfnP .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4XUdGfnP .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4XUdGfnP .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4XUdGfnP .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4XUdGfnP .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4XUdGfnP .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4XUdGfnP .bs-cookie-button,
.cid-vu4XUdGfnP .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4XUdGfnP .bs-cookie-button:hover,
.cid-vu4XUdGfnP .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4XUdGfnP .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4XUdGfnP .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4XUdGfnP .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4XUdGfnP .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4XUdGfnP .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4XUdGfnP .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4XUdGfnP .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4XUdGfnP .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4XUdGfnP .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4XUdGfnP .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4XUdGfnP .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4XUdGfnP .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4XUdGfnP .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4XUdGfnP .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4XUdGfnP .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4XUdGfnP .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4XUdGfnP .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4XUdGfnP .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4XUdGfnP .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4XUdGfnP .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4XUdGfnP .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4XUdGfnP .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4XXP013H {
  z-index: 1000;
  width: 100%;
}
.cid-vu4XXP013H nav.navbar {
  position: fixed;
}
.cid-vu4XXP013H .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4XXP013H .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4XXP013H .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4XXP013H .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4XXP013H .container,
.cid-vu4XXP013H .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4XXP013H .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4XXP013H .navbar-logo {
  margin-right: 10px;
}
.cid-vu4XXP013H .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4XXP013H .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4XXP013H .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4XXP013H .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4XXP013H .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4XXP013H .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4XXP013H .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4XXP013H .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4XXP013H .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XXP013H .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4XXP013H .nav-dropdown .link:hover,
.cid-vu4XXP013H .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4XXP013H .nav-dropdown .link:hover::before,
.cid-vu4XXP013H .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4XXP013H .nav-item:focus,
.cid-vu4XXP013H .nav-link:focus {
  outline: none;
}
.cid-vu4XXP013H .dropdown-menu,
.cid-vu4XXP013H .navbar.opened {
  background: #173653 !important;
}
.cid-vu4XXP013H .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4XXP013H .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4XXP013H .dropdown-item:hover,
.cid-vu4XXP013H .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4XXP013H .dropdown-item.active,
.cid-vu4XXP013H .dropdown-item:active {
  background: transparent;
}
.cid-vu4XXP013H .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4XXP013H .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XXP013H .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4XXP013H .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4XXP013H .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4XXP013H .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4XXP013H .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4XXP013H button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4XXP013H button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4XXP013H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4XXP013H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4XXP013H button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4XXP013H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4XXP013H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4XXP013H nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4XXP013H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4XXP013H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4XXP013H nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4XXP013H .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4XXP013H .navbar .container,
  .cid-vu4XXP013H .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4XXP013H .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4XXP013H .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4XXP013H .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4XXP013H .navbar-toggler,
  .cid-vu4XXP013H .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4XXP013H .navbar-collapse,
  .cid-vu4XXP013H .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4XXP013H .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4XXP013H .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4XXP013H .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4XXP013H nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4XXP013H ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4XXP013H ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4XXP013H .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4XXP013H .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4XXP013H .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4XXP013H .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4XXP013H .dropdown-item {
    text-align: center;
  }
  .cid-vu4XXP013H .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4XXP013H .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4XXP013H .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4XXP013H .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4XXP013H .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4j {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4j .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4j .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4j .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4j .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4j .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4j .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4j .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4j .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4j .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4j .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4j .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4j .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4j .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4j .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4j .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4j .bs-article-body {
  min-width: 0;
}
#custom-html-4j .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4j .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4j .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4j .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4j .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4j .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4j .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4j .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4j .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4j .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4j .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4j .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4j .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4j .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4j .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4j .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4j .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4j .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4j .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4j .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4j .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4j .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4j .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4j .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4j .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4j .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4j .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4j .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4j .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4j .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4j .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4j .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4j .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4j .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4j .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4j .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4j .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4j .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4j .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4j .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4j .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4j .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4j .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4j .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4j .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4j .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4j .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4j .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4j .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4j .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4j .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4j .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4j .bs-article-sidebar {
    display: block;
  }
  #custom-html-4j .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4j .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4j .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4j .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4j .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4XXPLeNP {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4XXPLeNP::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4XXPLeNP .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4XXPLeNP .mbr-overlay {
  z-index: 0;
}
.cid-vu4XXPLeNP .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4XXPLeNP .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4XXPLeNP .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4XXPLeNP .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4XXPLeNP .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4XXPLeNP .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4XXPLeNP .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4XXPLeNP .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4XXPLeNP .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4XXPLeNP .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4XXPLeNP .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4XXPLeNP .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4XXPLeNP .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4XXPLeNP .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4XXPLeNP .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4XXPLeNP .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4XXPLeNP .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4XXPLeNP .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4XXPLeNP .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4XXPLeNP .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4XXPLeNP .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4XXPLeNP .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4XXPLeNP .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4XXPLeNP .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4XXPLeNP .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4XXPLeNP .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4XXPLeNP .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4XXPLeNP .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4XXPLeNP .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4XXPLeNP .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4XXPLeNP .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4XXPLeNP .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4XXPLeNP .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4XXPLeNP .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4XXPLeNP .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4XXPLeNP .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4XXPLeNP .bs-footer-links {
    align-items: center;
  }
  .cid-vu4XXPLeNP .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4XXPLeNP .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4XXPLeNP .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4XXPLeNP .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-button,
  .cid-vu4XXPLeNP .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4XXPLeNP .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4XXPLeNP .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4XXPLeNP .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4XXPLeNP .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4XXPLeNP .bs-cookie-banner[hidden],
.cid-vu4XXPLeNP .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4XXPLeNP .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4XXPLeNP .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4XXPLeNP .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4XXPLeNP .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4XXPLeNP .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4XXPLeNP .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4XXPLeNP .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4XXPLeNP .bs-cookie-button,
.cid-vu4XXPLeNP .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4XXPLeNP .bs-cookie-button:hover,
.cid-vu4XXPLeNP .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4XXPLeNP .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4XXPLeNP .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4XXPLeNP .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4XXPLeNP .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4XXPLeNP .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4XXPLeNP .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4XXPLeNP .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4XXPLeNP .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4XXPLeNP .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4XXPLeNP .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4XXPLeNP .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4XXPLeNP .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4XXPLeNP .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4XXPLeNP .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4XXPLeNP .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4XXPLeNP .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4XXPLeNP .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4XXPLeNP .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4XXPLeNP .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4XXPLeNP .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4XXPLeNP .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4XXPLeNP .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4Y9v51b3 {
  z-index: 1000;
  width: 100%;
}
.cid-vu4Y9v51b3 nav.navbar {
  position: fixed;
}
.cid-vu4Y9v51b3 .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4Y9v51b3 .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Y9v51b3 .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4Y9v51b3 .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4Y9v51b3 .container,
.cid-vu4Y9v51b3 .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Y9v51b3 .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4Y9v51b3 .navbar-logo {
  margin-right: 10px;
}
.cid-vu4Y9v51b3 .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4Y9v51b3 .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4Y9v51b3 .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Y9v51b3 .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4Y9v51b3 .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4Y9v51b3 .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4Y9v51b3 .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4Y9v51b3 .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4Y9v51b3 .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Y9v51b3 .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4Y9v51b3 .nav-dropdown .link:hover,
.cid-vu4Y9v51b3 .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4Y9v51b3 .nav-dropdown .link:hover::before,
.cid-vu4Y9v51b3 .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4Y9v51b3 .nav-item:focus,
.cid-vu4Y9v51b3 .nav-link:focus {
  outline: none;
}
.cid-vu4Y9v51b3 .dropdown-menu,
.cid-vu4Y9v51b3 .navbar.opened {
  background: #173653 !important;
}
.cid-vu4Y9v51b3 .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4Y9v51b3 .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4Y9v51b3 .dropdown-item:hover,
.cid-vu4Y9v51b3 .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4Y9v51b3 .dropdown-item.active,
.cid-vu4Y9v51b3 .dropdown-item:active {
  background: transparent;
}
.cid-vu4Y9v51b3 .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4Y9v51b3 .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Y9v51b3 .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4Y9v51b3 .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4Y9v51b3 .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4Y9v51b3 .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4Y9v51b3 .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4Y9v51b3 button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4Y9v51b3 button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4Y9v51b3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4Y9v51b3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4Y9v51b3 button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4Y9v51b3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4Y9v51b3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4Y9v51b3 nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4Y9v51b3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4Y9v51b3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4Y9v51b3 nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4Y9v51b3 .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4Y9v51b3 .navbar .container,
  .cid-vu4Y9v51b3 .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4Y9v51b3 .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4Y9v51b3 .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4Y9v51b3 .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4Y9v51b3 .navbar-toggler,
  .cid-vu4Y9v51b3 .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4Y9v51b3 .navbar-collapse,
  .cid-vu4Y9v51b3 .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4Y9v51b3 .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4Y9v51b3 .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4Y9v51b3 .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4Y9v51b3 nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4Y9v51b3 ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4Y9v51b3 ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4Y9v51b3 .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4Y9v51b3 .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4Y9v51b3 .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4Y9v51b3 .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4Y9v51b3 .dropdown-item {
    text-align: center;
  }
  .cid-vu4Y9v51b3 .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4Y9v51b3 .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4Y9v51b3 .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4Y9v51b3 .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4Y9v51b3 .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4m {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4m .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4m .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4m .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4m .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4m .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4m .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4m .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4m .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4m .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4m .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4m .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4m .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4m .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4m .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4m .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4m .bs-article-body {
  min-width: 0;
}
#custom-html-4m .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4m .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4m .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4m .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4m .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4m .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4m .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4m .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4m .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4m .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4m .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4m .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4m .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4m .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4m .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4m .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4m .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4m .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4m .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4m .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4m .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4m .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4m .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4m .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4m .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4m .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4m .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4m .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4m .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4m .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4m .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4m .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4m .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4m .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4m .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4m .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4m .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4m .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4m .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4m .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4m .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4m .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4m .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4m .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4m .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4m .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4m .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4m .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4m .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4m .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4m .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4m .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4m .bs-article-sidebar {
    display: block;
  }
  #custom-html-4m .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4m .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4m .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4m .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4m .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4Y9vD1ty {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4Y9vD1ty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4Y9vD1ty .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Y9vD1ty .mbr-overlay {
  z-index: 0;
}
.cid-vu4Y9vD1ty .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4Y9vD1ty .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Y9vD1ty .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Y9vD1ty .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4Y9vD1ty .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Y9vD1ty .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4Y9vD1ty .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4Y9vD1ty .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4Y9vD1ty .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4Y9vD1ty .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4Y9vD1ty .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4Y9vD1ty .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4Y9vD1ty .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4Y9vD1ty .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4Y9vD1ty .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4Y9vD1ty .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4Y9vD1ty .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4Y9vD1ty .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4Y9vD1ty .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4Y9vD1ty .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4Y9vD1ty .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4Y9vD1ty .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Y9vD1ty .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4Y9vD1ty .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4Y9vD1ty .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4Y9vD1ty .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4Y9vD1ty .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4Y9vD1ty .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4Y9vD1ty .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4Y9vD1ty .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4Y9vD1ty .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4Y9vD1ty .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4Y9vD1ty .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4Y9vD1ty .bs-footer-links {
    align-items: center;
  }
  .cid-vu4Y9vD1ty .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4Y9vD1ty .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4Y9vD1ty .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4Y9vD1ty .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-button,
  .cid-vu4Y9vD1ty .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4Y9vD1ty .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4Y9vD1ty .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4Y9vD1ty .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4Y9vD1ty .bs-cookie-banner[hidden],
.cid-vu4Y9vD1ty .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4Y9vD1ty .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4Y9vD1ty .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4Y9vD1ty .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4Y9vD1ty .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4Y9vD1ty .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4Y9vD1ty .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4Y9vD1ty .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4Y9vD1ty .bs-cookie-button,
.cid-vu4Y9vD1ty .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-cookie-button:hover,
.cid-vu4Y9vD1ty .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4Y9vD1ty .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4Y9vD1ty .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4Y9vD1ty .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4Y9vD1ty .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4Y9vD1ty .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4Y9vD1ty .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4Y9vD1ty .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4Y9vD1ty .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4Y9vD1ty .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4Y9vD1ty .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4Y9vD1ty .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4Y9vD1ty .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4Y9vD1ty .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4Y9vD1ty .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4Y9vD1ty .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4Y9vD1ty .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4Y9vD1ty .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4Y9vD1ty .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4Y9vD1ty .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4Y9vD1ty .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4Y9vD1ty .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4YcjuEPJ {
  z-index: 1000;
  width: 100%;
}
.cid-vu4YcjuEPJ nav.navbar {
  position: fixed;
}
.cid-vu4YcjuEPJ .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4YcjuEPJ .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YcjuEPJ .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4YcjuEPJ .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4YcjuEPJ .container,
.cid-vu4YcjuEPJ .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YcjuEPJ .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4YcjuEPJ .navbar-logo {
  margin-right: 10px;
}
.cid-vu4YcjuEPJ .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4YcjuEPJ .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4YcjuEPJ .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YcjuEPJ .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4YcjuEPJ .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4YcjuEPJ .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4YcjuEPJ .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4YcjuEPJ .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4YcjuEPJ .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YcjuEPJ .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4YcjuEPJ .nav-dropdown .link:hover,
.cid-vu4YcjuEPJ .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4YcjuEPJ .nav-dropdown .link:hover::before,
.cid-vu4YcjuEPJ .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4YcjuEPJ .nav-item:focus,
.cid-vu4YcjuEPJ .nav-link:focus {
  outline: none;
}
.cid-vu4YcjuEPJ .dropdown-menu,
.cid-vu4YcjuEPJ .navbar.opened {
  background: #173653 !important;
}
.cid-vu4YcjuEPJ .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4YcjuEPJ .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4YcjuEPJ .dropdown-item:hover,
.cid-vu4YcjuEPJ .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4YcjuEPJ .dropdown-item.active,
.cid-vu4YcjuEPJ .dropdown-item:active {
  background: transparent;
}
.cid-vu4YcjuEPJ .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4YcjuEPJ .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YcjuEPJ .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4YcjuEPJ .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4YcjuEPJ .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4YcjuEPJ .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4YcjuEPJ .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4YcjuEPJ button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4YcjuEPJ button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4YcjuEPJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4YcjuEPJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4YcjuEPJ button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4YcjuEPJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4YcjuEPJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4YcjuEPJ nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4YcjuEPJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4YcjuEPJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4YcjuEPJ nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4YcjuEPJ .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4YcjuEPJ .navbar .container,
  .cid-vu4YcjuEPJ .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4YcjuEPJ .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4YcjuEPJ .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4YcjuEPJ .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4YcjuEPJ .navbar-toggler,
  .cid-vu4YcjuEPJ .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4YcjuEPJ .navbar-collapse,
  .cid-vu4YcjuEPJ .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4YcjuEPJ .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4YcjuEPJ .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4YcjuEPJ .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4YcjuEPJ nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4YcjuEPJ ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4YcjuEPJ ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4YcjuEPJ .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4YcjuEPJ .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4YcjuEPJ .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4YcjuEPJ .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4YcjuEPJ .dropdown-item {
    text-align: center;
  }
  .cid-vu4YcjuEPJ .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4YcjuEPJ .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4YcjuEPJ .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4YcjuEPJ .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4YcjuEPJ .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4p {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4p .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4p .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4p .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4p .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4p .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4p .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4p .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4p .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4p .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4p .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4p .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4p .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4p .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4p .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4p .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4p .bs-article-body {
  min-width: 0;
}
#custom-html-4p .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4p .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4p .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4p .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4p .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4p .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4p .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4p .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4p .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4p .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4p .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4p .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4p .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4p .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4p .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4p .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4p .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4p .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4p .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4p .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4p .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4p .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4p .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4p .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4p .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4p .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4p .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4p .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4p .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4p .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4p .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4p .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4p .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4p .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4p .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4p .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4p .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4p .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4p .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4p .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4p .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4p .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4p .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4p .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4p .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4p .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4p .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4p .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4p .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4p .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4p .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4p .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4p .bs-article-sidebar {
    display: block;
  }
  #custom-html-4p .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4p .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4p .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4p .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4p .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4Yck3S0Q {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4Yck3S0Q::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4Yck3S0Q .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Yck3S0Q .mbr-overlay {
  z-index: 0;
}
.cid-vu4Yck3S0Q .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4Yck3S0Q .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Yck3S0Q .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Yck3S0Q .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4Yck3S0Q .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Yck3S0Q .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4Yck3S0Q .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4Yck3S0Q .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4Yck3S0Q .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4Yck3S0Q .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4Yck3S0Q .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4Yck3S0Q .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4Yck3S0Q .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4Yck3S0Q .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4Yck3S0Q .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4Yck3S0Q .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4Yck3S0Q .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4Yck3S0Q .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4Yck3S0Q .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4Yck3S0Q .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4Yck3S0Q .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4Yck3S0Q .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Yck3S0Q .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4Yck3S0Q .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4Yck3S0Q .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4Yck3S0Q .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4Yck3S0Q .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4Yck3S0Q .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4Yck3S0Q .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4Yck3S0Q .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4Yck3S0Q .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4Yck3S0Q .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4Yck3S0Q .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4Yck3S0Q .bs-footer-links {
    align-items: center;
  }
  .cid-vu4Yck3S0Q .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4Yck3S0Q .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4Yck3S0Q .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4Yck3S0Q .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-button,
  .cid-vu4Yck3S0Q .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4Yck3S0Q .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4Yck3S0Q .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4Yck3S0Q .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4Yck3S0Q .bs-cookie-banner[hidden],
.cid-vu4Yck3S0Q .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4Yck3S0Q .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4Yck3S0Q .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4Yck3S0Q .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4Yck3S0Q .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4Yck3S0Q .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4Yck3S0Q .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4Yck3S0Q .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4Yck3S0Q .bs-cookie-button,
.cid-vu4Yck3S0Q .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-cookie-button:hover,
.cid-vu4Yck3S0Q .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4Yck3S0Q .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4Yck3S0Q .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4Yck3S0Q .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4Yck3S0Q .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4Yck3S0Q .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4Yck3S0Q .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4Yck3S0Q .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4Yck3S0Q .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4Yck3S0Q .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4Yck3S0Q .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4Yck3S0Q .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4Yck3S0Q .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4Yck3S0Q .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4Yck3S0Q .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4Yck3S0Q .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4Yck3S0Q .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4Yck3S0Q .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4Yck3S0Q .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4Yck3S0Q .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4Yck3S0Q .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4Yck3S0Q .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4YdUyN6S {
  z-index: 1000;
  width: 100%;
}
.cid-vu4YdUyN6S nav.navbar {
  position: fixed;
}
.cid-vu4YdUyN6S .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4YdUyN6S .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YdUyN6S .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4YdUyN6S .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4YdUyN6S .container,
.cid-vu4YdUyN6S .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YdUyN6S .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4YdUyN6S .navbar-logo {
  margin-right: 10px;
}
.cid-vu4YdUyN6S .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4YdUyN6S .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4YdUyN6S .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YdUyN6S .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4YdUyN6S .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4YdUyN6S .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4YdUyN6S .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4YdUyN6S .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4YdUyN6S .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YdUyN6S .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4YdUyN6S .nav-dropdown .link:hover,
.cid-vu4YdUyN6S .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4YdUyN6S .nav-dropdown .link:hover::before,
.cid-vu4YdUyN6S .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4YdUyN6S .nav-item:focus,
.cid-vu4YdUyN6S .nav-link:focus {
  outline: none;
}
.cid-vu4YdUyN6S .dropdown-menu,
.cid-vu4YdUyN6S .navbar.opened {
  background: #173653 !important;
}
.cid-vu4YdUyN6S .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4YdUyN6S .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4YdUyN6S .dropdown-item:hover,
.cid-vu4YdUyN6S .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4YdUyN6S .dropdown-item.active,
.cid-vu4YdUyN6S .dropdown-item:active {
  background: transparent;
}
.cid-vu4YdUyN6S .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4YdUyN6S .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YdUyN6S .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4YdUyN6S .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4YdUyN6S .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4YdUyN6S .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4YdUyN6S .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4YdUyN6S button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4YdUyN6S button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4YdUyN6S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4YdUyN6S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4YdUyN6S button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4YdUyN6S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4YdUyN6S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4YdUyN6S nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4YdUyN6S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4YdUyN6S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4YdUyN6S nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4YdUyN6S .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4YdUyN6S .navbar .container,
  .cid-vu4YdUyN6S .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4YdUyN6S .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4YdUyN6S .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4YdUyN6S .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4YdUyN6S .navbar-toggler,
  .cid-vu4YdUyN6S .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4YdUyN6S .navbar-collapse,
  .cid-vu4YdUyN6S .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4YdUyN6S .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4YdUyN6S .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4YdUyN6S .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4YdUyN6S nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4YdUyN6S ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4YdUyN6S ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4YdUyN6S .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4YdUyN6S .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4YdUyN6S .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4YdUyN6S .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4YdUyN6S .dropdown-item {
    text-align: center;
  }
  .cid-vu4YdUyN6S .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4YdUyN6S .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4YdUyN6S .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4YdUyN6S .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4YdUyN6S .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4s {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4s .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4s .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4s .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4s .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4s .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4s .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4s .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4s .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4s .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4s .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4s .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4s .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4s .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4s .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4s .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4s .bs-article-body {
  min-width: 0;
}
#custom-html-4s .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4s .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4s .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4s .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4s .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4s .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4s .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4s .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4s .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4s .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4s .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4s .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4s .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4s .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4s .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4s .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4s .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4s .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4s .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4s .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4s .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4s .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4s .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4s .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4s .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4s .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4s .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4s .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4s .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4s .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4s .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4s .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4s .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4s .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4s .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4s .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4s .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4s .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4s .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4s .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4s .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4s .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4s .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4s .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4s .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4s .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4s .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4s .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4s .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4s .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4s .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4s .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4s .bs-article-sidebar {
    display: block;
  }
  #custom-html-4s .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4s .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4s .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4s .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4s .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4YdV8Y4i {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4YdV8Y4i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4YdV8Y4i .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YdV8Y4i .mbr-overlay {
  z-index: 0;
}
.cid-vu4YdV8Y4i .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4YdV8Y4i .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YdV8Y4i .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YdV8Y4i .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4YdV8Y4i .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YdV8Y4i .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4YdV8Y4i .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4YdV8Y4i .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4YdV8Y4i .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4YdV8Y4i .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4YdV8Y4i .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4YdV8Y4i .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4YdV8Y4i .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4YdV8Y4i .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4YdV8Y4i .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4YdV8Y4i .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4YdV8Y4i .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4YdV8Y4i .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4YdV8Y4i .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4YdV8Y4i .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4YdV8Y4i .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4YdV8Y4i .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YdV8Y4i .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4YdV8Y4i .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4YdV8Y4i .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4YdV8Y4i .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4YdV8Y4i .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4YdV8Y4i .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4YdV8Y4i .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4YdV8Y4i .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4YdV8Y4i .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4YdV8Y4i .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4YdV8Y4i .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4YdV8Y4i .bs-footer-links {
    align-items: center;
  }
  .cid-vu4YdV8Y4i .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4YdV8Y4i .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4YdV8Y4i .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4YdV8Y4i .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-button,
  .cid-vu4YdV8Y4i .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4YdV8Y4i .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4YdV8Y4i .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4YdV8Y4i .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4YdV8Y4i .bs-cookie-banner[hidden],
.cid-vu4YdV8Y4i .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4YdV8Y4i .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4YdV8Y4i .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4YdV8Y4i .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4YdV8Y4i .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4YdV8Y4i .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4YdV8Y4i .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4YdV8Y4i .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4YdV8Y4i .bs-cookie-button,
.cid-vu4YdV8Y4i .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-cookie-button:hover,
.cid-vu4YdV8Y4i .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4YdV8Y4i .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4YdV8Y4i .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4YdV8Y4i .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4YdV8Y4i .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4YdV8Y4i .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4YdV8Y4i .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4YdV8Y4i .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4YdV8Y4i .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4YdV8Y4i .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4YdV8Y4i .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4YdV8Y4i .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4YdV8Y4i .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4YdV8Y4i .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4YdV8Y4i .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4YdV8Y4i .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4YdV8Y4i .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4YdV8Y4i .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4YdV8Y4i .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4YdV8Y4i .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4YdV8Y4i .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4YdV8Y4i .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4Ym7PZEa {
  z-index: 1000;
  width: 100%;
}
.cid-vu4Ym7PZEa nav.navbar {
  position: fixed;
}
.cid-vu4Ym7PZEa .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4Ym7PZEa .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Ym7PZEa .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4Ym7PZEa .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4Ym7PZEa .container,
.cid-vu4Ym7PZEa .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Ym7PZEa .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4Ym7PZEa .navbar-logo {
  margin-right: 10px;
}
.cid-vu4Ym7PZEa .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4Ym7PZEa .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4Ym7PZEa .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Ym7PZEa .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4Ym7PZEa .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4Ym7PZEa .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4Ym7PZEa .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4Ym7PZEa .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4Ym7PZEa .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Ym7PZEa .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4Ym7PZEa .nav-dropdown .link:hover,
.cid-vu4Ym7PZEa .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4Ym7PZEa .nav-dropdown .link:hover::before,
.cid-vu4Ym7PZEa .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4Ym7PZEa .nav-item:focus,
.cid-vu4Ym7PZEa .nav-link:focus {
  outline: none;
}
.cid-vu4Ym7PZEa .dropdown-menu,
.cid-vu4Ym7PZEa .navbar.opened {
  background: #173653 !important;
}
.cid-vu4Ym7PZEa .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4Ym7PZEa .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4Ym7PZEa .dropdown-item:hover,
.cid-vu4Ym7PZEa .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4Ym7PZEa .dropdown-item.active,
.cid-vu4Ym7PZEa .dropdown-item:active {
  background: transparent;
}
.cid-vu4Ym7PZEa .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4Ym7PZEa .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Ym7PZEa .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4Ym7PZEa .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4Ym7PZEa .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4Ym7PZEa .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4Ym7PZEa .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4Ym7PZEa button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4Ym7PZEa button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4Ym7PZEa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4Ym7PZEa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4Ym7PZEa button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4Ym7PZEa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4Ym7PZEa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4Ym7PZEa nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4Ym7PZEa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4Ym7PZEa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4Ym7PZEa nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4Ym7PZEa .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4Ym7PZEa .navbar .container,
  .cid-vu4Ym7PZEa .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4Ym7PZEa .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4Ym7PZEa .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4Ym7PZEa .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4Ym7PZEa .navbar-toggler,
  .cid-vu4Ym7PZEa .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4Ym7PZEa .navbar-collapse,
  .cid-vu4Ym7PZEa .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4Ym7PZEa .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4Ym7PZEa .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4Ym7PZEa .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4Ym7PZEa nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4Ym7PZEa ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4Ym7PZEa ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4Ym7PZEa .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4Ym7PZEa .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4Ym7PZEa .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4Ym7PZEa .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4Ym7PZEa .dropdown-item {
    text-align: center;
  }
  .cid-vu4Ym7PZEa .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4Ym7PZEa .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4Ym7PZEa .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4Ym7PZEa .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4Ym7PZEa .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4v {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4v .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4v .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4v .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4v .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4v .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4v .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4v .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4v .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4v .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4v .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4v .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4v .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4v .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4v .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4v .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4v .bs-article-body {
  min-width: 0;
}
#custom-html-4v .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4v .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4v .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4v .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4v .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4v .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4v .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4v .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4v .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4v .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4v .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4v .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4v .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4v .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4v .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4v .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4v .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4v .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4v .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4v .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4v .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4v .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4v .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4v .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4v .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4v .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4v .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4v .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4v .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4v .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4v .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4v .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4v .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4v .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4v .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4v .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4v .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4v .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4v .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4v .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4v .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4v .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4v .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4v .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4v .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4v .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4v .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4v .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4v .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4v .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4v .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4v .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4v .bs-article-sidebar {
    display: block;
  }
  #custom-html-4v .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4v .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4v .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4v .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4v .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4Ym8mhaE {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4Ym8mhaE::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4Ym8mhaE .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Ym8mhaE .mbr-overlay {
  z-index: 0;
}
.cid-vu4Ym8mhaE .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4Ym8mhaE .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Ym8mhaE .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Ym8mhaE .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4Ym8mhaE .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Ym8mhaE .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4Ym8mhaE .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4Ym8mhaE .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4Ym8mhaE .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4Ym8mhaE .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4Ym8mhaE .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4Ym8mhaE .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4Ym8mhaE .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4Ym8mhaE .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4Ym8mhaE .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4Ym8mhaE .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4Ym8mhaE .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4Ym8mhaE .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4Ym8mhaE .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4Ym8mhaE .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4Ym8mhaE .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4Ym8mhaE .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Ym8mhaE .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4Ym8mhaE .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4Ym8mhaE .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4Ym8mhaE .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4Ym8mhaE .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4Ym8mhaE .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4Ym8mhaE .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4Ym8mhaE .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4Ym8mhaE .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4Ym8mhaE .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4Ym8mhaE .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4Ym8mhaE .bs-footer-links {
    align-items: center;
  }
  .cid-vu4Ym8mhaE .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4Ym8mhaE .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4Ym8mhaE .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4Ym8mhaE .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-button,
  .cid-vu4Ym8mhaE .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4Ym8mhaE .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4Ym8mhaE .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4Ym8mhaE .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4Ym8mhaE .bs-cookie-banner[hidden],
.cid-vu4Ym8mhaE .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4Ym8mhaE .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4Ym8mhaE .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4Ym8mhaE .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4Ym8mhaE .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4Ym8mhaE .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4Ym8mhaE .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4Ym8mhaE .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4Ym8mhaE .bs-cookie-button,
.cid-vu4Ym8mhaE .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-cookie-button:hover,
.cid-vu4Ym8mhaE .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4Ym8mhaE .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4Ym8mhaE .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4Ym8mhaE .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4Ym8mhaE .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4Ym8mhaE .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4Ym8mhaE .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4Ym8mhaE .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4Ym8mhaE .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4Ym8mhaE .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4Ym8mhaE .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4Ym8mhaE .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4Ym8mhaE .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4Ym8mhaE .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4Ym8mhaE .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4Ym8mhaE .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4Ym8mhaE .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4Ym8mhaE .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4Ym8mhaE .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4Ym8mhaE .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4Ym8mhaE .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4Ym8mhaE .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4YoD6oVF {
  z-index: 1000;
  width: 100%;
}
.cid-vu4YoD6oVF nav.navbar {
  position: fixed;
}
.cid-vu4YoD6oVF .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4YoD6oVF .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YoD6oVF .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4YoD6oVF .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4YoD6oVF .container,
.cid-vu4YoD6oVF .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YoD6oVF .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4YoD6oVF .navbar-logo {
  margin-right: 10px;
}
.cid-vu4YoD6oVF .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4YoD6oVF .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4YoD6oVF .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YoD6oVF .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4YoD6oVF .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4YoD6oVF .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4YoD6oVF .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4YoD6oVF .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4YoD6oVF .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YoD6oVF .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4YoD6oVF .nav-dropdown .link:hover,
.cid-vu4YoD6oVF .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4YoD6oVF .nav-dropdown .link:hover::before,
.cid-vu4YoD6oVF .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4YoD6oVF .nav-item:focus,
.cid-vu4YoD6oVF .nav-link:focus {
  outline: none;
}
.cid-vu4YoD6oVF .dropdown-menu,
.cid-vu4YoD6oVF .navbar.opened {
  background: #173653 !important;
}
.cid-vu4YoD6oVF .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4YoD6oVF .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4YoD6oVF .dropdown-item:hover,
.cid-vu4YoD6oVF .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4YoD6oVF .dropdown-item.active,
.cid-vu4YoD6oVF .dropdown-item:active {
  background: transparent;
}
.cid-vu4YoD6oVF .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4YoD6oVF .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YoD6oVF .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4YoD6oVF .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4YoD6oVF .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4YoD6oVF .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4YoD6oVF .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4YoD6oVF button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4YoD6oVF button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4YoD6oVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4YoD6oVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4YoD6oVF button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4YoD6oVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4YoD6oVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4YoD6oVF nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4YoD6oVF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4YoD6oVF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4YoD6oVF nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4YoD6oVF .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4YoD6oVF .navbar .container,
  .cid-vu4YoD6oVF .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4YoD6oVF .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4YoD6oVF .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4YoD6oVF .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4YoD6oVF .navbar-toggler,
  .cid-vu4YoD6oVF .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4YoD6oVF .navbar-collapse,
  .cid-vu4YoD6oVF .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4YoD6oVF .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4YoD6oVF .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4YoD6oVF .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4YoD6oVF nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4YoD6oVF ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4YoD6oVF ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4YoD6oVF .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4YoD6oVF .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4YoD6oVF .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4YoD6oVF .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4YoD6oVF .dropdown-item {
    text-align: center;
  }
  .cid-vu4YoD6oVF .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4YoD6oVF .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4YoD6oVF .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4YoD6oVF .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4YoD6oVF .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-4y {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-4y .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-4y .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-4y .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-4y .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-4y .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-4y .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-4y .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-4y .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-4y .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-4y .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-4y .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-4y .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-4y .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-4y .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-4y .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-4y .bs-article-body {
  min-width: 0;
}
#custom-html-4y .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-4y .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-4y .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4y .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-4y .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-4y .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4y .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-4y .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-4y .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-4y .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-4y .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-4y .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-4y .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-4y .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-4y .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4y .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4y .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-4y .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-4y .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-4y .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-4y .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-4y .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-4y .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-4y .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-4y .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-4y .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-4y .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-4y .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-4y .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-4y .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-4y .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-4y .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-4y .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-4y .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-4y .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-4y .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-4y .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-4y .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-4y .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-4y .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-4y .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-4y .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-4y .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-4y .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-4y .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-4y .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-4y .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-4y .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-4y .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-4y .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-4y .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4y .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-4y .bs-article-sidebar {
    display: block;
  }
  #custom-html-4y .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-4y .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-4y .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-4y .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-4y .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4YoDEwjJ {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4YoDEwjJ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4YoDEwjJ .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YoDEwjJ .mbr-overlay {
  z-index: 0;
}
.cid-vu4YoDEwjJ .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4YoDEwjJ .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YoDEwjJ .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YoDEwjJ .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4YoDEwjJ .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YoDEwjJ .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4YoDEwjJ .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4YoDEwjJ .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4YoDEwjJ .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4YoDEwjJ .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4YoDEwjJ .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4YoDEwjJ .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4YoDEwjJ .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4YoDEwjJ .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4YoDEwjJ .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4YoDEwjJ .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4YoDEwjJ .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4YoDEwjJ .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4YoDEwjJ .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4YoDEwjJ .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4YoDEwjJ .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4YoDEwjJ .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YoDEwjJ .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4YoDEwjJ .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4YoDEwjJ .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4YoDEwjJ .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4YoDEwjJ .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4YoDEwjJ .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4YoDEwjJ .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4YoDEwjJ .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4YoDEwjJ .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4YoDEwjJ .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4YoDEwjJ .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4YoDEwjJ .bs-footer-links {
    align-items: center;
  }
  .cid-vu4YoDEwjJ .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4YoDEwjJ .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4YoDEwjJ .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4YoDEwjJ .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-button,
  .cid-vu4YoDEwjJ .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4YoDEwjJ .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4YoDEwjJ .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4YoDEwjJ .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4YoDEwjJ .bs-cookie-banner[hidden],
.cid-vu4YoDEwjJ .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4YoDEwjJ .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4YoDEwjJ .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4YoDEwjJ .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4YoDEwjJ .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4YoDEwjJ .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4YoDEwjJ .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4YoDEwjJ .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4YoDEwjJ .bs-cookie-button,
.cid-vu4YoDEwjJ .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-cookie-button:hover,
.cid-vu4YoDEwjJ .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4YoDEwjJ .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4YoDEwjJ .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4YoDEwjJ .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4YoDEwjJ .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4YoDEwjJ .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4YoDEwjJ .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4YoDEwjJ .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4YoDEwjJ .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4YoDEwjJ .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4YoDEwjJ .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4YoDEwjJ .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4YoDEwjJ .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4YoDEwjJ .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4YoDEwjJ .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4YoDEwjJ .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4YoDEwjJ .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4YoDEwjJ .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4YoDEwjJ .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4YoDEwjJ .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4YoDEwjJ .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4YoDEwjJ .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4Yr0rJAb {
  z-index: 1000;
  width: 100%;
}
.cid-vu4Yr0rJAb nav.navbar {
  position: fixed;
}
.cid-vu4Yr0rJAb .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4Yr0rJAb .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Yr0rJAb .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4Yr0rJAb .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4Yr0rJAb .container,
.cid-vu4Yr0rJAb .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Yr0rJAb .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4Yr0rJAb .navbar-logo {
  margin-right: 10px;
}
.cid-vu4Yr0rJAb .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4Yr0rJAb .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4Yr0rJAb .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Yr0rJAb .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4Yr0rJAb .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4Yr0rJAb .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4Yr0rJAb .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4Yr0rJAb .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4Yr0rJAb .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Yr0rJAb .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4Yr0rJAb .nav-dropdown .link:hover,
.cid-vu4Yr0rJAb .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4Yr0rJAb .nav-dropdown .link:hover::before,
.cid-vu4Yr0rJAb .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4Yr0rJAb .nav-item:focus,
.cid-vu4Yr0rJAb .nav-link:focus {
  outline: none;
}
.cid-vu4Yr0rJAb .dropdown-menu,
.cid-vu4Yr0rJAb .navbar.opened {
  background: #173653 !important;
}
.cid-vu4Yr0rJAb .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4Yr0rJAb .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4Yr0rJAb .dropdown-item:hover,
.cid-vu4Yr0rJAb .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4Yr0rJAb .dropdown-item.active,
.cid-vu4Yr0rJAb .dropdown-item:active {
  background: transparent;
}
.cid-vu4Yr0rJAb .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4Yr0rJAb .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Yr0rJAb .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4Yr0rJAb .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4Yr0rJAb .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4Yr0rJAb .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4Yr0rJAb .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4Yr0rJAb button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4Yr0rJAb button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4Yr0rJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4Yr0rJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4Yr0rJAb button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4Yr0rJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4Yr0rJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4Yr0rJAb nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4Yr0rJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4Yr0rJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4Yr0rJAb nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4Yr0rJAb .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4Yr0rJAb .navbar .container,
  .cid-vu4Yr0rJAb .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4Yr0rJAb .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4Yr0rJAb .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4Yr0rJAb .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4Yr0rJAb .navbar-toggler,
  .cid-vu4Yr0rJAb .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4Yr0rJAb .navbar-collapse,
  .cid-vu4Yr0rJAb .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4Yr0rJAb .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4Yr0rJAb .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4Yr0rJAb .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4Yr0rJAb nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4Yr0rJAb ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4Yr0rJAb ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4Yr0rJAb .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4Yr0rJAb .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4Yr0rJAb .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4Yr0rJAb .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4Yr0rJAb .dropdown-item {
    text-align: center;
  }
  .cid-vu4Yr0rJAb .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4Yr0rJAb .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4Yr0rJAb .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4Yr0rJAb .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4Yr0rJAb .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-51 {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-51 .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-51 .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-51 .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-51 .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-51 .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-51 .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-51 .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-51 .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-51 .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-51 .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-51 .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-51 .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-51 .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-51 .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-51 .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-51 .bs-article-body {
  min-width: 0;
}
#custom-html-51 .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-51 .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-51 .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-51 .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-51 .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-51 .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-51 .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-51 .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-51 .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-51 .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-51 .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-51 .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-51 .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-51 .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-51 .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-51 .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-51 .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-51 .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-51 .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-51 .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-51 .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-51 .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-51 .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-51 .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-51 .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-51 .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-51 .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-51 .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-51 .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-51 .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-51 .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-51 .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-51 .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-51 .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-51 .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-51 .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-51 .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-51 .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-51 .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-51 .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-51 .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-51 .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-51 .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-51 .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-51 .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-51 .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-51 .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-51 .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-51 .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-51 .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-51 .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-51 .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-51 .bs-article-sidebar {
    display: block;
  }
  #custom-html-51 .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-51 .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-51 .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-51 .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-51 .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4Yr13ZyI {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4Yr13ZyI::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4Yr13ZyI .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4Yr13ZyI .mbr-overlay {
  z-index: 0;
}
.cid-vu4Yr13ZyI .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4Yr13ZyI .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Yr13ZyI .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4Yr13ZyI .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4Yr13ZyI .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4Yr13ZyI .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4Yr13ZyI .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4Yr13ZyI .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4Yr13ZyI .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4Yr13ZyI .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4Yr13ZyI .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4Yr13ZyI .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4Yr13ZyI .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4Yr13ZyI .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4Yr13ZyI .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4Yr13ZyI .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4Yr13ZyI .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4Yr13ZyI .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4Yr13ZyI .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4Yr13ZyI .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4Yr13ZyI .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4Yr13ZyI .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4Yr13ZyI .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4Yr13ZyI .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4Yr13ZyI .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4Yr13ZyI .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4Yr13ZyI .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4Yr13ZyI .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4Yr13ZyI .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4Yr13ZyI .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4Yr13ZyI .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4Yr13ZyI .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4Yr13ZyI .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4Yr13ZyI .bs-footer-links {
    align-items: center;
  }
  .cid-vu4Yr13ZyI .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4Yr13ZyI .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4Yr13ZyI .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4Yr13ZyI .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-button,
  .cid-vu4Yr13ZyI .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4Yr13ZyI .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4Yr13ZyI .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4Yr13ZyI .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4Yr13ZyI .bs-cookie-banner[hidden],
.cid-vu4Yr13ZyI .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4Yr13ZyI .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4Yr13ZyI .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4Yr13ZyI .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4Yr13ZyI .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4Yr13ZyI .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4Yr13ZyI .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4Yr13ZyI .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4Yr13ZyI .bs-cookie-button,
.cid-vu4Yr13ZyI .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-cookie-button:hover,
.cid-vu4Yr13ZyI .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4Yr13ZyI .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4Yr13ZyI .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4Yr13ZyI .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4Yr13ZyI .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4Yr13ZyI .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4Yr13ZyI .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4Yr13ZyI .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4Yr13ZyI .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4Yr13ZyI .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4Yr13ZyI .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4Yr13ZyI .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4Yr13ZyI .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4Yr13ZyI .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4Yr13ZyI .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4Yr13ZyI .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4Yr13ZyI .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4Yr13ZyI .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4Yr13ZyI .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4Yr13ZyI .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4Yr13ZyI .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4Yr13ZyI .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4YtGQVgg {
  z-index: 1000;
  width: 100%;
}
.cid-vu4YtGQVgg nav.navbar {
  position: fixed;
}
.cid-vu4YtGQVgg .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4YtGQVgg .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YtGQVgg .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4YtGQVgg .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4YtGQVgg .container,
.cid-vu4YtGQVgg .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YtGQVgg .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4YtGQVgg .navbar-logo {
  margin-right: 10px;
}
.cid-vu4YtGQVgg .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4YtGQVgg .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4YtGQVgg .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YtGQVgg .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4YtGQVgg .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4YtGQVgg .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4YtGQVgg .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4YtGQVgg .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4YtGQVgg .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YtGQVgg .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4YtGQVgg .nav-dropdown .link:hover,
.cid-vu4YtGQVgg .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4YtGQVgg .nav-dropdown .link:hover::before,
.cid-vu4YtGQVgg .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4YtGQVgg .nav-item:focus,
.cid-vu4YtGQVgg .nav-link:focus {
  outline: none;
}
.cid-vu4YtGQVgg .dropdown-menu,
.cid-vu4YtGQVgg .navbar.opened {
  background: #173653 !important;
}
.cid-vu4YtGQVgg .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4YtGQVgg .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4YtGQVgg .dropdown-item:hover,
.cid-vu4YtGQVgg .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4YtGQVgg .dropdown-item.active,
.cid-vu4YtGQVgg .dropdown-item:active {
  background: transparent;
}
.cid-vu4YtGQVgg .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4YtGQVgg .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YtGQVgg .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4YtGQVgg .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4YtGQVgg .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4YtGQVgg .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4YtGQVgg .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4YtGQVgg button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4YtGQVgg button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4YtGQVgg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4YtGQVgg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4YtGQVgg button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4YtGQVgg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4YtGQVgg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4YtGQVgg nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4YtGQVgg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4YtGQVgg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4YtGQVgg nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4YtGQVgg .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4YtGQVgg .navbar .container,
  .cid-vu4YtGQVgg .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4YtGQVgg .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4YtGQVgg .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4YtGQVgg .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4YtGQVgg .navbar-toggler,
  .cid-vu4YtGQVgg .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4YtGQVgg .navbar-collapse,
  .cid-vu4YtGQVgg .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4YtGQVgg .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4YtGQVgg .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4YtGQVgg .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4YtGQVgg nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4YtGQVgg ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4YtGQVgg ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4YtGQVgg .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4YtGQVgg .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4YtGQVgg .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4YtGQVgg .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4YtGQVgg .dropdown-item {
    text-align: center;
  }
  .cid-vu4YtGQVgg .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4YtGQVgg .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4YtGQVgg .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4YtGQVgg .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4YtGQVgg .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-54 {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-54 .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-54 .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-54 .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-54 .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-54 .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-54 .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-54 .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-54 .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-54 .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-54 .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-54 .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-54 .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-54 .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-54 .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-54 .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-54 .bs-article-body {
  min-width: 0;
}
#custom-html-54 .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-54 .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-54 .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-54 .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-54 .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-54 .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-54 .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-54 .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-54 .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-54 .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-54 .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-54 .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-54 .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-54 .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-54 .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-54 .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-54 .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-54 .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-54 .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-54 .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-54 .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-54 .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-54 .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-54 .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-54 .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-54 .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-54 .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-54 .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-54 .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-54 .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-54 .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-54 .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-54 .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-54 .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-54 .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-54 .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-54 .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-54 .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-54 .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-54 .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-54 .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-54 .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-54 .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-54 .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-54 .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-54 .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-54 .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-54 .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-54 .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-54 .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-54 .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-54 .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-54 .bs-article-sidebar {
    display: block;
  }
  #custom-html-54 .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-54 .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-54 .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-54 .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-54 .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4YtHqQQu {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4YtHqQQu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4YtHqQQu .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YtHqQQu .mbr-overlay {
  z-index: 0;
}
.cid-vu4YtHqQQu .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4YtHqQQu .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YtHqQQu .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YtHqQQu .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4YtHqQQu .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YtHqQQu .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4YtHqQQu .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4YtHqQQu .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4YtHqQQu .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4YtHqQQu .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4YtHqQQu .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4YtHqQQu .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4YtHqQQu .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YtHqQQu .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4YtHqQQu .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4YtHqQQu .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4YtHqQQu .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4YtHqQQu .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4YtHqQQu .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4YtHqQQu .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4YtHqQQu .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4YtHqQQu .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4YtHqQQu .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YtHqQQu .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4YtHqQQu .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4YtHqQQu .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YtHqQQu .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4YtHqQQu .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YtHqQQu .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4YtHqQQu .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4YtHqQQu .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4YtHqQQu .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4YtHqQQu .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4YtHqQQu .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4YtHqQQu .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4YtHqQQu .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4YtHqQQu .bs-footer-links {
    align-items: center;
  }
  .cid-vu4YtHqQQu .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4YtHqQQu .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4YtHqQQu .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4YtHqQQu .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-button,
  .cid-vu4YtHqQQu .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4YtHqQQu .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4YtHqQQu .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4YtHqQQu .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4YtHqQQu .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4YtHqQQu .bs-cookie-banner[hidden],
.cid-vu4YtHqQQu .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4YtHqQQu .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4YtHqQQu .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4YtHqQQu .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4YtHqQQu .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4YtHqQQu .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4YtHqQQu .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4YtHqQQu .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4YtHqQQu .bs-cookie-button,
.cid-vu4YtHqQQu .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4YtHqQQu .bs-cookie-button:hover,
.cid-vu4YtHqQQu .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4YtHqQQu .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4YtHqQQu .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4YtHqQQu .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4YtHqQQu .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4YtHqQQu .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4YtHqQQu .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4YtHqQQu .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4YtHqQQu .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4YtHqQQu .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4YtHqQQu .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4YtHqQQu .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4YtHqQQu .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4YtHqQQu .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4YtHqQQu .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4YtHqQQu .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4YtHqQQu .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4YtHqQQu .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4YtHqQQu .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4YtHqQQu .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4YtHqQQu .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4YtHqQQu .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4YtHqQQu .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
.cid-vu4YKdO4Di {
  z-index: 1000;
  width: 100%;
}
.cid-vu4YKdO4Di nav.navbar {
  position: fixed;
}
.cid-vu4YKdO4Di .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-vu4YKdO4Di .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YKdO4Di .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-vu4YKdO4Di .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-vu4YKdO4Di .container,
.cid-vu4YKdO4Di .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YKdO4Di .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-vu4YKdO4Di .navbar-logo {
  margin-right: 10px;
}
.cid-vu4YKdO4Di .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-vu4YKdO4Di .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cid-vu4YKdO4Di .bs-header-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YKdO4Di .navbar-caption-wrap {
  line-height: 1;
}
.cid-vu4YKdO4Di .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-vu4YKdO4Di .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-vu4YKdO4Di .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-vu4YKdO4Di .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-vu4YKdO4Di .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YKdO4Di .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-vu4YKdO4Di .nav-dropdown .link:hover,
.cid-vu4YKdO4Di .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-vu4YKdO4Di .nav-dropdown .link:hover::before,
.cid-vu4YKdO4Di .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-vu4YKdO4Di .nav-item:focus,
.cid-vu4YKdO4Di .nav-link:focus {
  outline: none;
}
.cid-vu4YKdO4Di .dropdown-menu,
.cid-vu4YKdO4Di .navbar.opened {
  background: #173653 !important;
}
.cid-vu4YKdO4Di .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-vu4YKdO4Di .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-vu4YKdO4Di .dropdown-item:hover,
.cid-vu4YKdO4Di .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-vu4YKdO4Di .dropdown-item.active,
.cid-vu4YKdO4Di .dropdown-item:active {
  background: transparent;
}
.cid-vu4YKdO4Di .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-vu4YKdO4Di .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YKdO4Di .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-vu4YKdO4Di .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-vu4YKdO4Di .navbar-buttons .btn {
  margin: 0;
}
.cid-vu4YKdO4Di .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-vu4YKdO4Di .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-vu4YKdO4Di button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-vu4YKdO4Di button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-vu4YKdO4Di button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-vu4YKdO4Di button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-vu4YKdO4Di button.navbar-toggler .hamburger span:nth-child(2),
.cid-vu4YKdO4Di button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-vu4YKdO4Di button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-vu4YKdO4Di nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-vu4YKdO4Di nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-vu4YKdO4Di nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-vu4YKdO4Di nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 1200px) {
  .cid-vu4YKdO4Di .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-vu4YKdO4Di .navbar .container,
  .cid-vu4YKdO4Di .navbar .container-fluid {
    flex-wrap: wrap !important;
  }
  .cid-vu4YKdO4Di .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-vu4YKdO4Di .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-vu4YKdO4Di .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-vu4YKdO4Di .navbar-toggler,
  .cid-vu4YKdO4Di .navbar-expand-lg .navbar-toggler {
    display: block !important;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-vu4YKdO4Di .navbar-collapse,
  .cid-vu4YKdO4Di .navbar-expand-lg .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    flex-grow: 0;
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-vu4YKdO4Di .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .cid-vu4YKdO4Di .navbar-expand-lg .navbar-collapse.collapse.show,
  .cid-vu4YKdO4Di .navbar-expand-lg .navbar-collapse.collapsing,
  .cid-vu4YKdO4Di nav.opened .navbar-collapse {
    display: block !important;
  }
  .cid-vu4YKdO4Di ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-vu4YKdO4Di ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-vu4YKdO4Di .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-vu4YKdO4Di .nav-dropdown .link::before {
    display: none;
  }
  .cid-vu4YKdO4Di .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-vu4YKdO4Di .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-vu4YKdO4Di .dropdown-item {
    text-align: center;
  }
  .cid-vu4YKdO4Di .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-vu4YKdO4Di .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-vu4YKdO4Di .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-vu4YKdO4Di .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-vu4YKdO4Di .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
}
#custom-html-57 {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff !important;
  /* ==================================================
   ARTICLE HEADER
   ================================================== */
  /* BREADCRUMBS */
  /* CATEGORY */
  /* TITLE */
  /* INTRODUCTION */
  /* META */
  /* ==================================================
   HERO IMAGE
   ================================================== */
  /* ==================================================
   MAIN ARTICLE AREA
   ================================================== */
  /* ARTICLE BODY */
  /* ARTICLE HIGHLIGHT */
  /* BACK LINK */
  /* ==================================================
   ARTICLE SIDEBAR
   ================================================== */
  /* SIDEBAR TIP */
  /* ==================================================
   LOCAL SHOWCASE INVITATION
   ================================================== */
  /* ==================================================
   TABLET
   ================================================== */
  /* ==================================================
   MOBILE
   ================================================== */
}
#custom-html-57 .bs-article-header {
  position: relative;
  padding: 4.5rem 1rem 8rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(238, 211, 155, 0.18), transparent 45%), linear-gradient(145deg, #294e73 0%, #173653 56%, #102d49 100%);
  border-bottom: 1px solid rgba(238, 211, 155, 0.5);
  overflow: hidden;
}
#custom-html-57 .bs-article-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
#custom-html-57 .bs-article-header .container {
  position: relative;
  z-index: 2;
}
#custom-html-57 .bs-article-breadcrumb {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}
#custom-html-57 .bs-article-breadcrumb a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
}
#custom-html-57 .bs-article-breadcrumb a:hover {
  color: #eed39b !important;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
#custom-html-57 .bs-article-category {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  color: #173653;
  background: #eed39b;
  border-radius: 20px;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
#custom-html-57 .bs-article-title {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem) !important;
  font-weight: 400;
  line-height: 1.08;
}
#custom-html-57 .bs-article-introduction {
  max-width: 730px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem !important;
  line-height: 1.7;
}
#custom-html-57 .bs-article-meta {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}
#custom-html-57 .bs-article-hero {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding: 0 1rem;
}
#custom-html-57 .bs-article-hero-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #dfe5e8;
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(4, 23, 40, 0.22);
  overflow: hidden;
}
#custom-html-57 .bs-article-hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.81818182;
  object-fit: cover;
}
#custom-html-57 .bs-article-content {
  padding: 4.5rem 1rem 5rem;
  background: #ffffff;
}
#custom-html-57 .bs-article-layout {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 4rem;
  align-items: start;
}
#custom-html-57 .bs-article-body {
  min-width: 0;
}
#custom-html-57 .bs-article-body p {
  margin: 0 0 1.4rem;
  color: #526372;
  font-size: 1rem;
  line-height: 1.82;
}
#custom-html-57 .bs-article-body .bs-article-opening {
  margin-bottom: 2rem;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem !important;
  line-height: 1.7;
}
#custom-html-57 .bs-article-body h2 {
  position: relative;
  margin: 2.6rem 0 1rem;
  padding-bottom: 0.8rem;
  color: #173653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-57 .bs-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #d8b978;
}
#custom-html-57 .bs-article-highlight {
  position: relative;
  margin: 2.6rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(238, 211, 155, 0.24), rgba(238, 211, 155, 0.1));
  border: 1px solid rgba(150, 120, 61, 0.25);
  border-left: 4px solid #d8b978;
  border-radius: 0 16px 16px 0;
}
#custom-html-57 .bs-highlight-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #96783d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-57 .bs-article-highlight p {
  margin: 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
#custom-html-57 .bs-back-to-inspiration {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e3e8ec;
}
#custom-html-57 .bs-back-to-inspiration a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #294e73 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
#custom-html-57 .bs-back-to-inspiration a span {
  color: #96783d;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
#custom-html-57 .bs-back-to-inspiration a:hover {
  color: #96783d !important;
}
#custom-html-57 .bs-back-to-inspiration a:hover span {
  transform: translateX(-4px);
}
#custom-html-57 .bs-article-sidebar {
  position: sticky;
  top: 6rem;
}
#custom-html-57 .bs-sidebar-card {
  padding: 1.7rem 1.5rem;
  background: linear-gradient(145deg, #294e73, #173653);
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(4, 23, 40, 0.15);
}
#custom-html-57 .bs-sidebar-eyebrow {
  margin: 0 0 0.5rem !important;
  color: #eed39b !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-57 .bs-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-57 .bs-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#custom-html-57 .bs-sidebar-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0 0 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.5;
}
#custom-html-57 .bs-sidebar-card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#custom-html-57 .bs-sidebar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #eed39b;
  font-weight: 700;
}
#custom-html-57 .bs-sidebar-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background: #fffaf0;
  border: 1px solid rgba(216, 185, 120, 0.42);
  border-radius: 15px;
}
#custom-html-57 .bs-sidebar-tip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #c6495d;
  font-size: 1.35rem;
}
#custom-html-57 .bs-sidebar-tip p {
  margin: 0;
  color: #5d6973;
  font-size: 0.82rem;
  line-height: 1.55;
}
#custom-html-57 .bs-showcase-invitation {
  padding: 0 1rem 5.5rem;
  background: #f5f7f9;
}
#custom-html-57 .bs-showcase-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  background: radial-gradient(circle at 90% 0%, rgba(238, 211, 155, 0.17), transparent 36%), linear-gradient(135deg, #294e73, #102d49);
  border: 1px solid rgba(238, 211, 155, 0.4);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(4, 23, 40, 0.16);
  overflow: hidden;
}
#custom-html-57 .bs-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
}
#custom-html-57 .bs-showcase-copy {
  position: relative;
  z-index: 2;
}
#custom-html-57 .bs-showcase-eyebrow {
  margin: 0 0 0.6rem;
  color: #eed39b;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
#custom-html-57 .bs-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.3;
}
#custom-html-57 .bs-showcase-copy p:last-child {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.65;
}
#custom-html-57 .bs-showcase-action {
  position: relative;
  z-index: 2;
}
#custom-html-57 .bs-showcase-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: #173653 !important;
  background: #eed39b;
  border: 1px solid #eed39b;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(4, 23, 40, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#custom-html-57 .bs-showcase-button:hover {
  color: #173653 !important;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 25px rgba(4, 23, 40, 0.25);
  text-decoration: none;
  transform: translateY(-3px);
}
#custom-html-57 .bs-showcase-button span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
#custom-html-57 .bs-showcase-button:hover span {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  #custom-html-57 .bs-article-header {
    padding: 4rem 1rem 7rem;
  }
  #custom-html-57 .bs-article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #custom-html-57 .bs-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    align-items: stretch;
  }
  #custom-html-57 .bs-sidebar-tip {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #custom-html-57 .bs-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  #custom-html-57 .bs-showcase-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  #custom-html-57 .bs-article-header {
    padding: 3.2rem 0.15rem 5.5rem;
  }
  #custom-html-57 .bs-article-breadcrumb {
    font-size: 0.7rem;
  }
  #custom-html-57 .bs-article-title {
    font-size: 2.25rem !important;
  }
  #custom-html-57 .bs-article-introduction {
    font-size: 0.95rem !important;
  }
  #custom-html-57 .bs-article-hero {
    margin-top: -3.4rem;
    padding: 0 0.65rem;
  }
  #custom-html-57 .bs-article-hero-frame {
    border-width: 4px;
    border-radius: 15px;
  }
  #custom-html-57 .bs-article-hero-frame img {
    aspect-ratio: 1.33333333;
  }
  #custom-html-57 .bs-article-content {
    padding: 3.2rem 0.35rem 4rem;
  }
  #custom-html-57 .bs-article-body .bs-article-opening {
    font-size: 1.12rem !important;
  }
  #custom-html-57 .bs-article-body h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-57 .bs-article-highlight {
    padding: 1.5rem;
  }
  #custom-html-57 .bs-article-sidebar {
    display: block;
  }
  #custom-html-57 .bs-sidebar-tip {
    margin-top: 1rem;
  }
  #custom-html-57 .bs-showcase-invitation {
    padding: 0 0.65rem 4rem;
  }
  #custom-html-57 .bs-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 17px;
  }
  #custom-html-57 .bs-showcase-copy h2 {
    font-size: 1.5rem !important;
  }
  #custom-html-57 .bs-showcase-button {
    width: 100%;
    white-space: normal;
  }
}
.cid-vu4YKet14K {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vu4YKet14K::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vu4YKet14K .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vu4YKet14K .mbr-overlay {
  z-index: 0;
}
.cid-vu4YKet14K .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vu4YKet14K .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YKet14K .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vu4YKet14K .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cid-vu4YKet14K .bs-footer-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vu4YKet14K .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vu4YKet14K .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vu4YKet14K .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vu4YKet14K .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vu4YKet14K .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vu4YKet14K .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vu4YKet14K .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vu4YKet14K .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vu4YKet14K .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vu4YKet14K .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vu4YKet14K .bs-footer-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vu4YKet14K .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vu4YKet14K .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vu4YKet14K .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vu4YKet14K .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vu4YKet14K .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vu4YKet14K .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vu4YKet14K .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vu4YKet14K .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vu4YKet14K .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vu4YKet14K .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YKet14K .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vu4YKet14K .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vu4YKet14K .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vu4YKet14K .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vu4YKet14K .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vu4YKet14K .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vu4YKet14K .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vu4YKet14K .bs-footer-logo {
    justify-content: center;
  }
  .cid-vu4YKet14K .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vu4YKet14K .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vu4YKet14K .bs-footer-links {
    align-items: center;
  }
  .cid-vu4YKet14K .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vu4YKet14K .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vu4YKet14K .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .cid-vu4YKet14K .bs-cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(80vw) !important;
    max-width: none !important;
    padding: 17px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    border-radius: 17px !important;
  }
  .cid-vu4YKet14K .bs-cookie-icon {
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
  }
  .cid-vu4YKet14K .bs-cookie-icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .cid-vu4YKet14K .bs-cookie-content {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .cid-vu4YKet14K .bs-cookie-content h2 {
    font-size: 19px !important;
  }
  .cid-vu4YKet14K .bs-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 9px !important;
  }
  .cid-vu4YKet14K .bs-cookie-button,
  .cid-vu4YKet14K .bs-cookie-preferences-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .cid-vu4YKet14K .bs-cookie-modal {
    padding: 10px !important;
  }
  .cid-vu4YKet14K .bs-cookie-modal-panel {
    width: calc(80vw) !important;
    max-height: calc(80vh) !important;
    padding: 25px 17px !important;
    border-radius: 17px !important;
  }
  .cid-vu4YKet14K .bs-cookie-choice {
    gap: 13px !important;
  }
  .cid-vu4YKet14K .bs-cookie-modal-actions {
    grid-template-columns: 1fr !important;
  }
}
.cid-vu4YKet14K .bs-cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cid-vu4YKet14K .bs-cookie-settings-link:hover {
  color: #eed39b;
}
.cid-vu4YKet14K .bs-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: flex;
  width: calc(56%);
  max-width: 520px;
  padding: 22px;
  box-sizing: border-box;
  gap: 17px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 10% 0%, rgba(82, 123, 166, 0.34), transparent 38%), linear-gradient(145deg, #294e73 0%, #173653 55%, #0c263e 100%);
  border: 1px solid rgba(238, 211, 155, 0.64);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 20, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Arial, sans-serif;
}
.cid-vu4YKet14K .bs-cookie-banner[hidden],
.cid-vu4YKet14K .bs-cookie-modal[hidden] {
  display: none !important;
}
.cid-vu4YKet14K .bs-cookie-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.42);
  border: 1px solid rgba(238, 211, 155, 0.56);
  border-radius: 50%;
  box-shadow: 0 7px 17px rgba(3, 20, 35, 0.22);
}
.cid-vu4YKet14K .bs-cookie-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 2;
}
.cid-vu4YKet14K .bs-cookie-content {
  min-width: 0;
  flex-grow: 1;
}
.cid-vu4YKet14K .bs-cookie-content h2 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cid-vu4YKet14K .bs-cookie-content p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.cid-vu4YKet14K .bs-cookie-content p a {
  color: #eed39b;
  text-decoration: underline;
}
.cid-vu4YKet14K .bs-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.cid-vu4YKet14K .bs-cookie-button,
.cid-vu4YKet14K .bs-cookie-preferences-button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.cid-vu4YKet14K .bs-cookie-button:hover,
.cid-vu4YKet14K .bs-cookie-preferences-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.cid-vu4YKet14K .bs-cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.28);
}
.cid-vu4YKet14K .bs-cookie-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 15px rgba(4, 23, 40, 0.22);
}
.cid-vu4YKet14K .bs-cookie-preferences-button {
  grid-column: -1;
  color: #eed39b;
  background: rgba(8, 34, 58, 0.34);
  border: 1px solid rgba(238, 211, 155, 0.42);
}
.cid-vu4YKet14K .bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.cid-vu4YKet14K .bs-cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 32, 0.72);
}
.cid-vu4YKet14K .bs-cookie-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: calc(60vh);
  padding: 31px;
  overflow-y: auto;
  box-sizing: border-box;
  color: #4e565e;
  background: #ffffff;
  border: 1px solid rgba(238, 211, 155, 0.72);
  border-radius: 21px;
  box-shadow: 0 25px 70px rgba(3, 20, 35, 0.42);
}
.cid-vu4YKet14K .bs-cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #294e73;
  background: #edf2f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cid-vu4YKet14K .bs-cookie-modal-panel h2 {
  margin: 0 45px 9px 0;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.cid-vu4YKet14K .bs-cookie-modal-intro {
  margin: 0 0 22px;
  color: #5f6366;
  font-size: 14px;
  line-height: 1.55;
}
.cid-vu4YKet14K .bs-cookie-choice {
  display: flex;
  padding: 18px 0;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e9ed;
}
.cid-vu4YKet14K .bs-cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: #294e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.cid-vu4YKet14K .bs-cookie-choice p {
  max-width: 430px;
  margin: 0;
  color: #646b72;
  font-size: 13px;
  line-height: 1.5;
}
.cid-vu4YKet14K .bs-cookie-switch {
  display: flex;
  min-width: 75px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.cid-vu4YKet14K .bs-cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cid-vu4YKet14K .bs-cookie-switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 25px;
  background: #b9c1c8;
  border-radius: 20px;
  transition: background 0.25s ease;
}
.cid-vu4YKet14K .bs-cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.cid-vu4YKet14K .bs-cookie-switch input:checked + span {
  background: #2b9654;
}
.cid-vu4YKet14K .bs-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}
.cid-vu4YKet14K .bs-cookie-switch small {
  margin-top: 5px;
  color: #697078;
  font-size: 10px;
}
.cid-vu4YKet14K .bs-cookie-modal-actions {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cid-vu4YKet14K .bs-cookie-save {
  color: #ffffff;
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid #218447;
}
.cid-vu4YKet14K .bs-cookie-modal-reject {
  color: #ffffff;
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid #355e88;
}
