.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#sp-top-bar .sp-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

#sp-top-bar .sp-contact-info li {
  margin: 0;
}

#sp-top-bar .sp-contact-time:empty,
#sp-top3 .sp-module-content:empty {
  display: none;
}

#sp-top-bar .select-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
}

.logo a[aria-label] {
  display: block;
}

#sp-footer .content-footer-1 a,
#sp-footer .link-footer {
  overflow-wrap: anywhere;
}

.sppb-addon-text-block > .sppb-addon-content:empty,
.sppb-addon-header > .sppb-addon-content:empty,
.sp-module-content:empty {
  display: none;
}

.windsor-helper-copy {
  max-width: 760px;
  margin: 12px auto 0;
  color: #4e5a78;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.windsor-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--windsor-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.windsor-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(31, 49, 95, 0.4);
}

.windsor-hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.windsor-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.windsor-hero-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.windsor-hero-btn-primary {
  background: linear-gradient(135deg, var(--windsor-navy), var(--windsor-blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 49, 95, 0.22);
}

.windsor-hero-btn-primary:hover {
  color: #fff;
  box-shadow: 0 20px 42px rgba(31, 49, 95, 0.28);
}

.windsor-hero-btn-secondary {
  border: 1px solid rgba(31, 49, 95, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--windsor-navy);
  box-shadow: 0 10px 24px rgba(31, 49, 95, 0.1);
}

.windsor-carousel-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.windsor-card-copy {
  margin: 12px 0 18px;
  color: #5a6786;
  font-size: 15px;
  line-height: 1.65;
}

body.windsor-popup-open {
  overflow: hidden;
}

.windsor-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 54, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.windsor-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.windsor-popup {
  position: relative;
  width: min(100%, 560px);
  padding: 34px 32px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 59, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, #f7f9ff);
  box-shadow: 0 28px 80px rgba(17, 28, 66, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.windsor-popup-overlay.is-visible .windsor-popup {
  transform: translateY(0) scale(1);
}

.windsor-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 49, 95, 0.08);
  color: #243766;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.windsor-popup-eyebrow {
  margin: 0 0 12px;
  color: #2f4f96;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.windsor-popup-title {
  margin: 0 0 14px;
  color: #1f315f;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.windsor-popup-copy {
  margin: 0;
  color: #4f5f81;
  font-size: 17px;
  line-height: 1.7;
}

.windsor-popup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.windsor-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.windsor-popup-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.windsor-popup-btn-primary {
  background: linear-gradient(135deg, #1f315f, #2f4f96);
  color: #fff;
  box-shadow: 0 18px 34px rgba(31, 49, 95, 0.22);
}

.windsor-popup-btn-primary:hover {
  color: #fff;
}

.windsor-popup-btn-secondary {
  background: rgba(31, 49, 95, 0.08);
  color: #1f315f;
}

#sp-footer .content-footer-1 b,
#sp-footer .content-footer-1 a,
#sp-top-bar a {
  transition: opacity 0.2s ease;
}

#sp-footer .content-footer-1 a:hover,
#sp-top-bar a:hover {
  opacity: 0.85;
}

a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.7;
}

body.default-home {
  --windsor-navy: #1f315f;
  --windsor-blue: #2f4f96;
  --windsor-ink: #20304f;
  --windsor-gold: #c79a3b;
  --windsor-paper: #f7f4ee;
  --windsor-mist: #eef2f8;
}

body.default-home #section-id-1538421390533,
body.default-home #section-id-1538424595419,
body.default-home #section-id-1565637973745,
body.default-home #section-id-1691699889872 {
  position: relative;
}

body.default-home #section-id-1538421390533 {
  padding-top: 72px;
  padding-bottom: 24px;
  background:
    radial-gradient(circle at top, rgba(199, 154, 59, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(31, 49, 95, 0.05), rgba(255, 255, 255, 0));
}

body.default-home #section-id-1538415428689 .sppb-carousel-caption {
  max-width: 900px;
  margin: 0 auto;
}

body.default-home #section-id-1538415428689 .sppb-carousel-text h1,
body.default-home #section-id-1538415428689 .sppb-carousel-text h2,
body.default-home #section-id-1538415428689 .sppb-carousel-text h3 {
  text-wrap: balance;
}

body.default-home #section-id-1538421390533 .sppb-section-title {
  max-width: 880px;
  margin: 0 auto 14px;
}

body.default-home #section-id-1538421390533 .sppb-title-heading {
  color: var(--windsor-navy);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

body.default-home #section-id-1538421390533 .sppb-title-subheading,
body.default-home #section-id-1565637973745 .sppb-title-subheading {
  color: #5a6786;
  font-size: 18px;
  line-height: 1.6;
}

body.default-home #section-id-1538421390533 .windsor-helper-copy {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.75;
  color: #43506f;
}

body.default-home #section-id-1538424595419 .sppb-section-title,
body.default-home #section-id-1566781836692 .sppb-addon-header,
body.default-home #section-id-1565637973745 .sppb-section-title,
body.default-home #section-id-1691699889872 .sppb-section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

body.default-home #section-id-1538424595419 .sppb-title-heading,
body.default-home #section-id-1565637973745 .sppb-title-heading,
body.default-home #section-id-1691699889872 .sppb-title-heading,
body.default-home #section-id-1566781836692 .sppb-addon-title {
  color: var(--windsor-navy);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

body.default-home #section-id-1538424595419 .sppb-title-heading {
  font-size: 34px !important;
  line-height: 34px !important;
}

.sp-page-builder .page-content #section-id-1538424595419 .sppb-section-title .sppb-title-heading {
  font-size: 34px !important;
  line-height: 34px !important;
}

body.default-home #section-id-1706619479234 .sppb-column,
body.default-home #section-id-1538504803114 .sppb-column {
  height: 100%;
  padding: 22px 22px 28px;
  border: 1px solid rgba(31, 49, 95, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, var(--windsor-mist));
  box-shadow: 0 18px 45px rgba(25, 39, 100, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.default-home #section-id-1706619479234 .sppb-column:hover,
body.default-home #section-id-1538504803114 .sppb-column:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 59, 0.45);
  box-shadow: 0 22px 55px rgba(25, 39, 100, 0.12);
}

body.default-home #section-id-1706619479234 .sppb-addon-title,
body.default-home #section-id-1538504803114 .sppb-addon-title {
  color: var(--windsor-ink);
  text-wrap: balance;
}

body.default-home #section-id-1706619479234 .windsor-card-copy,
body.default-home #section-id-1538504803114 .windsor-card-copy {
  min-height: 72px;
}

body.default-home #section-id-1538424595419 .sppb-addon-single-image-container img,
body.default-home #section-id-1706619479234 .sppb-addon-single-image-container img {
  display: block;
  width: auto;
  max-width: 88%;
  max-height: 210px;
  margin: 0 auto;
  border-radius: 18px;
}

body.default-home #section-id-1538504803114 .sppb-addon-single-image-container img {
  display: block;
  width: 88%;
  margin: 0 auto;
  border-radius: 18px;
}

body.default-home #section-id-1706619479234 .sppb-btn,
body.default-home #section-id-1538504803114 .sppb-btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(31, 49, 95, 0.16);
}

body.default-home #section-id-1706619479234 .sppb-btn {
  padding-inline: 20px;
}

body.default-home .sp-page-builder.page-34 #section-id-1538504803114 {
  padding-top: 72px !important;
  padding-bottom: 16px !important;
}

body.default-home .sp-page-builder.page-34 #section-id-1716299296147 {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.default-home .sp-page-builder.page-34 #section-id-1565637973745 {
  padding-top: 8px !important;
  margin-top: 0 !important;
}

body.default-home #section-id-1565637973745 iframe {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(18, 29, 70, 0.16);
  border: 8px solid #fff;
}

body.default-home #section-id-1691699889872 {
  margin-top: 32px;
  padding: 28px 16px 4px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(31, 49, 95, 0.07), rgba(199, 154, 59, 0.12));
}

body.default-home #section-id-1691699889872 .sppb-section-title {
  color: var(--windsor-ink);
  font-size: 18px;
  line-height: 1.7;
}

body.default-home .windsor-helper-copy {
  max-width: 760px;
}

@media (max-width: 767px) {
  #sp-top-bar .sp-contact-info {
    gap: 8px 12px;
  }

  .windsor-helper-copy {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 14px;
  }

  .windsor-card-copy {
    min-height: auto;
    font-size: 14px;
  }

  .windsor-eyebrow {
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .windsor-hero-cta-group {
    gap: 10px;
  }

  .windsor-hero-btn {
    width: 100%;
    min-width: 0;
  }

  .windsor-popup {
    padding: 28px 22px 22px;
    border-radius: 24px;
  }

  .windsor-popup-actions {
    flex-direction: column;
  }

  .windsor-popup-btn {
    width: 100%;
  }

  body.default-home #section-id-1706619479234 .sppb-column,
  body.default-home #section-id-1538504803114 .sppb-column {
    padding: 18px 18px 24px;
    border-radius: 20px;
  }

  body.default-home #section-id-1565637973745 iframe {
    border-width: 5px;
    border-radius: 18px;
  }

  body.default-home #section-id-1691699889872 {
    border-radius: 22px;
  }
}

body.itemid-534 {
  --windsor-navy: #1f315f;
  --windsor-blue: #2f4f96;
  --windsor-ink: #20304f;
  --windsor-mist: #eef2f8;
}

body.itemid-534 #sp-header {
  box-shadow: 0 8px 24px rgba(24, 37, 86, 0.08);
}

body.itemid-534 #sp-header #sp-logo {
  display: flex;
  align-items: center;
  min-height: 96px;
}

body.itemid-534 #sp-header .logo {
  margin: 0;
}

body.itemid-534 #sp-header .sp-default-logo {
  width: auto;
  max-width: 180px;
  max-height: 130px;
  object-fit: contain;
}

body.itemid-534 #section-id-1565278560369,
body.itemid-534 #section-id-1567457144883 {
  position: relative;
  overflow: hidden;
  background-color: var(--windsor-navy);
}

body.itemid-534 #section-id-1565278560369 {
  display: none;
}

body.itemid-534 #section-id-1565278560369::before,
body.itemid-534 #section-id-1567457144883::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 49, 95, 0.88), rgba(47, 79, 150, 0.72));
  pointer-events: none;
}

body.itemid-534 #section-id-1565278560369 .sppb-carousel-item-inner,
body.itemid-534 #section-id-1565278560369 .sppb-carousel-caption {
  position: relative;
  z-index: 1;
}

body.itemid-534 #section-id-1567457144883 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.itemid-534 #sppb-addon-1566780160865 .sppb-addon-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(34px, 8vw, 52px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em;
}

body.itemid-534 #section-id-1484555263649 {
  position: relative;
  z-index: 2;
  margin-top: -24px !important;
}

body.itemid-534 #column-id-1484555263650,
body.itemid-534 #column-id-1484555263654 {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(20, 32, 74, 0.12);
}

body.itemid-534 #column-id-1484555263650 {
  padding: 40px 44px 34px !important;
}

body.itemid-534 #column-id-1484555263654 {
  padding: 36px 32px !important;
}

body.itemid-534 #sppb-addon-1565278560384 .sppb-addon-title,
body.itemid-534 #sppb-addon-1565279169867 .sppb-addon-title,
body.itemid-534 #sppb-addon-1565281126595 .sppb-addon-title {
  color: var(--windsor-navy);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

body.itemid-534 .sppb-ajax-contact-content .sppb-form-control {
  min-height: 58px;
  border: 1px solid rgba(31, 49, 95, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(18, 29, 70, 0.08);
}

body.itemid-534 .sppb-ajax-contact-content textarea.sppb-form-control {
  min-height: 150px;
}

body.itemid-534 #btn-1565278560384 {
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--windsor-navy), var(--windsor-blue));
  border: 0;
  box-shadow: 0 18px 34px rgba(31, 49, 95, 0.22);
}

body.itemid-534 #btn-1565278560384:hover {
  background: linear-gradient(135deg, #23386d, #3659a7);
}

body.itemid-534 #sppb-addon-1565279169867 .sppb-addon-content {
  color: #4f5f81;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  body.itemid-534 #sp-header #sp-logo {
    min-height: 84px;
  }

  body.itemid-534 #sp-header .sp-default-logo {
    max-width: 132px;
    max-height: 96px;
  }

  body.itemid-534 #section-id-1484555263649 {
    margin-top: 0 !important;
    padding-top: 32px;
  }
}

@media (max-width: 767px) {
  body.itemid-534 #section-id-1567457144883 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  body.itemid-534 #column-id-1484555263650,
  body.itemid-534 #column-id-1484555263654 {
    border-radius: 22px;
  }

  body.itemid-534 #column-id-1484555263650 {
    padding: 28px 22px 24px !important;
  }

  body.itemid-534 #column-id-1484555263654 {
    padding: 26px 22px !important;
  }
}

#sppb-addon-1538427100440 .sppb-addon-title {
  font-size: 50px;
  line-height: 50px;
}

#sppb-addon-1538499533639 .sppb-addon-title {
  font-size: 50px;
  line-height: 50px;
}

#sppb-addon-1541777259270 .sppb-addon-title,
#sppb-addon-1541777259349 .sppb-addon-title,
#sppb-addon-1541777259352 .sppb-addon-title {
  font-size: 35px;
  line-height: 35px;
}

#section-id-1706619479234 .windsor-card-copy {
  display: none;
}

#section-id-1538424595419 .windsor-card-copy {
  display: none;
}

#sp-footer #section-id-1566330590463 {
  padding-top: 24px !important;
  padding-bottom: 18px !important;
}

#sp-footer #sppb-addon-1566332639404,
#sp-footer #sppb-addon-1566334893516,
#sp-footer #sppb-addon-1566330590475 {
  margin: 10px 0 !important;
}

#sp-footer .content-footer-1 .text-left {
  line-height: 1.45;
}

#sp-footer .content-footer-1 b {
  display: inline-block;
  margin-bottom: 10px;
}

#sp-footer .content-footer-1 br + br {
  display: none;
}

#sp-footer .link-footer,
#sp-footer .content-footer-1 a {
  margin-bottom: 6px;
}

#sp-footer .btn-footer {
  padding: 10px 20px;
  margin-top: 10px;
}

#sp-footer .image-footer img {
  max-width: 44%;
}

#sp-footer .sp-copyright {
  display: block;
  padding: 10px 0 18px;
  margin-top: 0;
}
