@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

a,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus, a:focus-visible,
button:focus,
button:focus-visible {
  outline: none;
}

section.bc-section,
section.card-grid-component,
section.cta-call-out-component,
section.hero-component,
section.fifty-fifty-component,
section.accordion-component,
section.testimonial-carousel,
section.card-carousel,
section.logo-grid,
section.value-props,
section.vertical-tabbed-content,
section.horizontal-tabs-component,
section.cross-link-cards,
section.cta-callout-links,
section.form-module,
section.full-width-text {
  box-sizing: border-box;
  padding: 64px 32px;
}
@media (min-width: 768px) {
  section.bc-section,
  section.card-grid-component,
  section.cta-call-out-component,
  section.hero-component,
  section.fifty-fifty-component,
  section.accordion-component,
  section.testimonial-carousel,
  section.card-carousel,
  section.logo-grid,
  section.value-props,
  section.vertical-tabbed-content,
  section.horizontal-tabs-component,
  section.cross-link-cards,
  section.cta-callout-links,
  section.form-module,
  section.full-width-text {
    padding: 96px 32px;
  }
}

/**
 * Shared Embla Carousel Styles
 * Unified navigation arrows and dots styling for all carousels
 */
.embla {
  position: relative;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: 1.5rem;
}

.embla__navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding-top: 16px;
  margin-bottom: 32px;
}
.embla__navigation--hidden {
  display: none;
}

.embla__button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 4px;
  border: none;
  color: #09090B;
  cursor: pointer;
  transition: all 0.2s;
}
.embla__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.embla__button svg {
  width: 16px;
  height: 16px;
}
.embla__button--hidden {
  display: none;
}

.embla__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.embla__dots--hidden {
  display: none;
}

.embla__dot {
  width: 8px;
  height: 8px;
  background-color: rgba(24, 24, 27, 0.3019607843);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.embla__dot:hover {
  background-color: #A2A4A3;
}
.embla__dot--selected {
  background-color: #18181B !important;
}

.embla[data-items="1"] .embla__navigation,
.embla[data-items="1"] .embla__dots {
  display: none;
}

.embla[data-items="2"] .embla__navigation,
.embla[data-items="2"] .embla__dots {
  display: none;
}
@media (max-width: 767px) {
  .embla[data-items="2"] .embla__navigation,
  .embla[data-items="2"] .embla__dots {
    display: flex;
  }
}

.embla[data-items="3"] .embla__navigation,
.embla[data-items="3"] .embla__dots {
  display: none;
}
@media (max-width: 1023px) {
  .embla[data-items="3"] .embla__navigation,
  .embla[data-items="3"] .embla__dots {
    display: flex;
  }
}

.bc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 36px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
}
.bc-button__text {
  line-height: 24px;
}
.bc-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-button__icon svg {
  width: 13px;
  height: 10px;
  transition: color 0.3s ease;
}
.bc-button--light.bc-button--primary {
  background-color: #00609C;
  border-color: #00609C;
  color: #F5F5F5;
}
.bc-button--light.bc-button--primary .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--primary:hover:not(:disabled) {
  background-color: #11547E;
  border-color: #11547E;
  text-decoration: underline;
}
.bc-button--light.bc-button--primary:active:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  text-decoration: none;
}
.bc-button--light.bc-button--primary:focus-visible:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  outline: 2px solid #12355B;
  outline-offset: 2px;
}
.bc-button--light.bc-button--primary:disabled {
  background-color: #00609C;
  border-color: #00609C;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--light.bc-button--primary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--dark.bc-button--primary {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
}
.bc-button--dark.bc-button--primary .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--primary:hover:not(:disabled) {
  background-color: #32BFD3;
  border-color: #32BFD3;
  text-decoration: underline;
}
.bc-button--dark.bc-button--primary:active:not(:disabled) {
  background-color: #2C9EAF;
  border-color: #2C9EAF;
  color: #F5F5F5;
  text-decoration: none;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--primary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--dark.bc-button--primary:focus-visible:not(:disabled) {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--primary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--primary:disabled {
  background-color: #00609C;
  border-color: #00609C;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--dark.bc-button--primary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--light.bc-button--secondary {
  background-color: transparent;
  border: 3px solid #00609C;
  color: #00609C;
}
.bc-button--light.bc-button--secondary .bc-button__icon svg {
  color: #00609C;
}
.bc-button--light.bc-button--secondary:hover:not(:disabled) {
  color: #12355B;
  border-color: #12355B;
  text-decoration: underline;
}
.bc-button--light.bc-button--secondary:hover:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--light.bc-button--secondary:active:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  color: #F5F5F5;
}
.bc-button--light.bc-button--secondary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--secondary:focus-visible:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  color: #F5F5F5;
  outline: 2px solid #12355B;
  outline-offset: 2px;
}
.bc-button--light.bc-button--secondary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--secondary:disabled {
  background-color: transparent;
  border-color: #A2A4A3;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--light.bc-button--secondary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--dark.bc-button--secondary {
  background-color: transparent;
  border: 3px solid #8EE3EF;
  color: #8EE3EF;
}
.bc-button--dark.bc-button--secondary .bc-button__icon svg {
  color: #8EE3EF;
}
.bc-button--dark.bc-button--secondary:hover:not(:disabled) {
  background-color: #32BFD3;
  border-color: #32BFD3;
  color: #12355B;
  text-decoration: underline;
}
.bc-button--dark.bc-button--secondary:hover:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--secondary:active:not(:disabled) {
  background-color: #2C9EAF;
  border-color: #2C9EAF;
  color: #F5F5F5;
  text-decoration: none;
}
.bc-button--dark.bc-button--secondary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--dark.bc-button--secondary:focus-visible:not(:disabled) {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--secondary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--secondary:disabled {
  background-color: transparent;
  border-color: #A2A4A3;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--dark.bc-button--secondary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}

.typography--h1 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h1.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h1 {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 1px;
  }
}
.typography--h1.typography--eyebrow {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00609C;
  margin: 0;
}
.typography--h1.typography--eyebrow.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--h1.typography--eyebrow {
    font-size: 18px;
  }
}

.typography--h2 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h2.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h2 {
    font-size: 54px;
    line-height: 60px;
    letter-spacing: 1px;
  }
}

.typography--h3 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h3.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 1px;
  }
}

.typography--h4 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #12355B;
}
.typography--h4.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h4 {
    font-size: 22px;
  }
}

.typography--h5 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0;
}
.typography--h5.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
  }
}

.typography--p.typography--eyebrow {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00609C;
}
.typography--p.typography--eyebrow.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--p.typography--eyebrow {
    font-size: 18px;
  }
}
.typography--p.typography--primary {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #50585E;
}
.typography--p.typography--primary.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--p.typography--primary {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
  }
}
.typography--p.typography--secondary {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #50585E;
}
.typography--p.typography--secondary.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--p.typography--secondary {
    font-size: 15px;
    line-height: 24px;
  }
}

/**
 * Card Carousel Styles
 * Using Embla Carousel - 4 per view desktop, 1 per view mobile
 */
.card-carousel {
  width: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
}

.card-carousel__container {
  max-width: 1280px;
  margin: 0 auto;
}
.card-carousel__container .full-width-text .full-width-text__container .full-width-text__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-carousel__container .full-width-text .full-width-text__container .full-width-text__content h2 {
  padding-bottom: 12px;
}
.card-carousel__container .full-width-text .full-width-text__container .full-width-text__buttons {
  padding-top: 0 !important;
}

.card-carousel__embla {
  position: relative;
}

.card-carousel__viewport {
  overflow: hidden;
}

.card-carousel__container-slides {
  display: flex;
  gap: 1.5rem;
}

.card-carousel__slide {
  flex: 0 0 85%;
  min-width: 0;
}
@media (min-width: 768px) {
  .card-carousel__slide {
    flex: 0 0 calc((100% - 1.5rem) / 2.15);
  }
}
@media (min-width: 1024px) {
  .card-carousel__slide {
    flex: 0 0 calc((100% - 4.5rem) / 4.15);
  }
}

.card-carousel__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.card-carousel__card-image {
  width: 100%;
  height: 288px;
  overflow: hidden;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .card-carousel__card-image {
    height: 384px;
  }
}
.card-carousel__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.card-carousel__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.card-carousel__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #12355B;
  margin: 0;
  text-transform: uppercase;
}

.card-carousel__card-description {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #71717A;
  flex: 1;
}
@media (min-width: 768px) {
  .card-carousel__card-description {
    font-size: 15px;
    line-height: 24px;
  }
}
.card-carousel__card-description p {
  margin: 0 0 0.75rem 0;
}
.card-carousel__card-description p:last-child {
  margin-bottom: 0;
}
.card-carousel__card-description a {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: #00609C;
  text-decoration: none;
  transition: color 0.2s;
}
.card-carousel__card-description a:hover {
  color: #12355B;
  text-decoration: underline;
}
.card-carousel__card-description a::after {
  content: " >";
}

.card-carousel__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00609C;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
  padding-top: 4px;
}
.card-carousel__card-link:hover {
  text-decoration: underline;
  color: #12355B;
}

/*# sourceMappingURL=card-carousel.css.map */
