/* Home styles. Enqueued only for this page type in functions.php. */
.c-hero {
  position: relative;
  overflow: hidden;
  height: 100svh;
  min-height: 520px;
  background: #0b1220;
}

.c-hero {
  width: 100svw;
  margin-left: calc(50% - 50svw);
  margin-right: calc(50% - 50svw);
}

.home #primary.site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 80px !important;
}

.home #page {
	position: static;
}

.home .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	background: transparent;
}

.home .c-hero {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.admin-bar.home .c-hero {
  height: calc(100svh - 32px);
  min-height: calc(100svh - 32px);
}

@media (max-width: 782px) {.admin-bar.home .c-hero {
    height: calc(100svh - 46px);
    min-height: calc(100svh - 46px);
  }

}

.c-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.c-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.65;
  display: block;
}

.c-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.c-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: #000;
  transition: opacity 1050ms ease;
  will-change: opacity;
}

.c-hero__fade.is-visible {
  opacity: 1;
}

.c-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
}

.c-hero__content .c-container {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: clamp(84px, 10vh, 140px);
  padding-left: calc(var(--container-pad) + var(--hero-nav-left-offset, 0px));
  padding-right: var(--container-pad);
  box-sizing: border-box;
}

body:has(.nav.nav--compact) .c-hero__content .c-container {
  padding-top: 0;
}

.c-hero__content-inner {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transform: none;
  padding: 0;
}

.c-hero__title {
  font-size: clamp(3rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  max-width: 20ch;
}

.c-hero__type {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
}

.c-hero__type-text {
  font-weight: 500;
}

.c-hero__type-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  background: currentColor;
  flex-shrink: 0;
  transform: translateY(0.12em);
}

@media (max-width: 526px) {.c-hero__type {
    display: block;
  }

}

@media (prefers-reduced-motion: reduce) {.c-hero__type-cursor {
    display: none;
  }

}

.hero-seo-heading + .c-hero__lead {
  margin-top: 0;
}

.c-hero__lead {
  margin: 1rem 0 2rem;
  font-size: clamp(1.2rem, 1.2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

@media (max-height: 880px) {.c-hero__content {
    padding-bottom: 0;
  }

.c-hero__content .c-container {
    padding-bottom: clamp(64px, 9vh, 110px);
  }

.c-hero__content-inner {
    margin-top: auto;
  }

.c-hero__content-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transform: none !important;
  }

.c-hero__title {
    font-size: clamp(2.45rem, 3vw, 2.65rem);
    max-width: 22ch;
  }

.c-hero__lead {
    font-size: clamp(1rem, 1vw, 1.1rem);
    max-width: 65ch;
  }

}

@media (max-height: 444px) {body:has(.nav.nav--compact) .c-hero__title {
    font-size: clamp(2.1rem, 2.8vw, 2.1rem);
    margin: 0;
  }

body:has(.nav.nav--compact) .c-hero__lead {
    font-size: clamp(0.73rem, 0.84vw, 0.88rem);
    margin: 0;
  }

body:has(.nav.nav--compact) .c-hero__ctas {
    margin-top: 0.9rem;
  }

}

.c-hero__ctas .c-button {
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.75);
}

.c-hero__ctas .c-button--primary {
  border-color: #ffffff;
}

.c-hero__ctas .c-button--secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.c-hero__ctas button.c-button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.c-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.c-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.c-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1;
}

.c-hero__scroll-icon {
  width: 18px;
  height: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}

.c-hero__scroll:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
  border-radius: 6px;
}

.c-hero__scroll:hover {
  color: #ffffff;
}

@media (max-height: 376px) {.c-hero__scroll {
    display: none !important;
  }

}

.c-hero.c-hero--hide-scroll .c-hero__scroll {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-hero.c-hero--hide-scroll .c-hero__content .c-container {
  padding-bottom: var(--container-pad);
}

@media (max-width: 900px) {.c-hero__ctas {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
	}

.c-hero__ctas .c-button {
		width: 100%;
		height: 100%;
		min-width: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

}

@media (max-width: 430px) {.c-hero .c-button,
	.c-hero a.c-button {
		padding: 12px 16px;
		font-size: 16px;
		line-height: 1.2;
	}

}

@media (max-width: 420px) {.c-hero__ctas {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		align-items: stretch;
	}

.c-hero__ctas .c-button {
		width: 100%;
		height: 100%;
		min-height: 88px;
		min-width: 0;
		padding: 12px 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 4px;
		line-height: 1.15;
		font-size: clamp(12px, 3.2vw, 14px);
		word-break: break-word;
	}

}

@media (max-width: 430px) and (max-height: 780px) {.c-hero .c-hero__scroll {
		display: none !important;
	}

}

.home-b2b-quote {
  padding-bottom: clamp(40px, 6vw, 84px);
}

.home-b2b-quote__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.home-b2b-quote__author {
  display: flex;
  justify-content: center;
}

.home-b2b-quote__author-card {
  text-align: center;
  max-width: 260px;
}

.home-b2b-quote__headshot {
  width: clamp(120px, 15vw, 164px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.home-b2b-quote__name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
}

.home-b2b-quote__role {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
}

.home-b2b-quote__content {
  max-width: 900px;
}

.home-b2b-quote__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  color: #0f2940;
  margin-bottom: 0.9rem;
}

.home-b2b-quote__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.home-b2b-quote__headline {
  margin: 0 0 1.05rem;
  color: #00566D;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.18;
  font-weight: 500;
  max-width: 24ch;
}

.home-b2b-quote__content p {
  max-width: 62ch;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.home-b2b-quote__content p:last-child {
  margin-bottom: 0;
}

.home-gradient-services {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  box-sizing: border-box;
  overflow-x: clip;
  background: linear-gradient(90deg, #0f2940 0%, #0f2940 50%, #00566d 100%);
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

@supports not (overflow: clip) {.home-gradient-services {
    overflow-x: hidden;
  }

}

.home-gradient-services__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 36px;
  font-weight: 300;
}

.home-gradient-services__intro {
  max-width: 68rem;
  margin-top: 0;
  margin-bottom: 2.25rem;
}

.home-gradient-services__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.home-gradient-services__item-title {
  margin: 0;
  font-size: 1.45em;
  font-weight: 450;
  line-height: 1.2;
}

.home-gradient-services__item {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem 1.4rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.home-gradient-services__item p {
  margin: 0.95rem 0 0;
  max-width: 22rem;
  line-height: 1.5;
}

.home-gradient-services__service-links {
  margin-top: auto;
  padding-top: 1.25rem;
}

.home-gradient-services__item-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.home-gradient-services__item-links li {
  position: relative;
  padding-left: 0.85rem;
  margin: 0;
}

.home-gradient-services__item-links li::before {
  content: "\00B7";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 0.45rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.home-gradient-services__item-links a,
.home-gradient-services__item-links span {
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
}

.home-gradient-services__item-links a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 160ms ease-in-out, border-bottom-color 160ms ease-in-out;
}

.home-gradient-services__item-links a:hover,
.home-gradient-services__item-links a:focus-visible {
  color: #f88650;
  border-bottom-color: rgba(248, 134, 80, 0.8);
}

.home-gradient-services__item-links a:focus-visible {
  outline: 2px solid #f88650;
  outline-offset: 2px;
}

.home-gradient-services__cta {
  margin-top: 2.25rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 1.17em;
}

.home-gradient-services__cta a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 160ms ease-in-out, border-bottom-color 160ms ease-in-out;
}

.home-gradient-services__cta a svg {
  fill: currentColor;
}

.home-gradient-services__cta a:hover,
.home-gradient-services__cta a:focus-visible {
  color: #f88650;
  border-bottom-color: rgba(248, 134, 80, 0.8);
}

@media (max-width: 1100px) {.home-b2b-quote__layout {
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
    gap: 0;
  }

.home-b2b-quote__author-card {
    max-width: 210px;
  }

.home-b2b-quote__headshot {
    width: clamp(112px, 14vw, 148px);
  }

.home-b2b-quote__headline {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  }

.home-gradient-services__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

}

@media (max-width: 781px) {.home-b2b-quote {
    padding-bottom: 48px;
  }

.home-b2b-quote__layout {
    grid-template-columns: minmax(112px, 136px) minmax(0, 1fr);
    gap: 0;
    align-items: start;
  }

.home-b2b-quote__author {
    justify-content: flex-start;
    align-items: flex-start;
  }

.home-b2b-quote__author-card {
    text-align: left;
    max-width: 136px;
  }

.home-b2b-quote__headshot {
    width: clamp(88px, 20vw, 114px);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }

.home-b2b-quote__name {
    font-size: 0.98rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }

.home-b2b-quote__role {
    font-size: 0.84rem;
    line-height: 1.2;
  }

.home-b2b-quote__headline {
    max-width: 100%;
    font-size: clamp(1.35rem, 5.2vw, 1.9rem);
    line-height: 1.2;
  }

.home-b2b-quote__content p {
    max-width: 100%;
  }

.home-gradient-services {
    padding-top: 56px;
    padding-bottom: 56px;
  }

.home-gradient-services__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

.home-gradient-services__item {
    position: relative;
    padding: 1.35rem 1.2rem 1.25rem;
  }

.home-gradient-services__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

.home-gradient-services__intro {
    margin-bottom: 2rem;
  }

.home-gradient-services__item p {
    max-width: none;
  }

}

.c-home-clients-heading__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
  color: #00566D;
}

.c-home-clients-heading__icon svg {
  width: clamp(56px, 7vw, 92px);
  height: clamp(56px, 7vw, 92px);
  fill: currentColor;
}

@media (max-width: 781px) {.c-home-clients-heading__icon {
    display: none;
  }

.home-clients-static__layout {
    display: block;
    grid-template-columns: 1fr !important;
    gap: 0;
  }

.home-clients-static__intro {
    display: flex;
    padding-right: 0;
    padding-bottom: clamp(30px, 5.625vw, 67.5px);
  }

.home-clients-static__title {
    margin-bottom: 0;
    text-align: left;
  }

.home-clients-static__carousel .wp-block-cognita-testimonials-carousel {
    padding-top: 8px !important;
    padding-bottom: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

.home-clients-static__carousel .wp-block-cognita-testimonials-carousel > .content-container,
  .home-clients-static__carousel .wp-block-cognita-testimonials-carousel .cognita-testimonials-carousel__frame,
  .home-clients-static__carousel .wp-block-cognita-testimonials-carousel .cognita-testimonials-carousel__viewport {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

}

.home-clients-static {
    padding: clamp(30px, 5.625vw, 67.5px) 0;
}

.home-clients-static__layout {
  display: grid;
  grid-template-columns: 33% minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.home-clients-static__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 24px;
}

.home-clients-static__title {
  margin: 0;
  color: #0f2940;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.home-clients-static__carousel {
  min-width: 0;
}

.home-clients-static__carousel .cognita-testimonials-carousel,
.home-clients-static__carousel .wp-block-cognita-testimonials-carousel,
.home-clients-static__carousel .cognita-testimonials-carousel > .content-container,
.home-clients-static__carousel .cognita-testimonials-carousel__frame,
.home-clients-static__carousel .cognita-testimonials-carousel__viewport {
  padding: 0 !important;
}

.home-segmentfit-static .c-segmentfit {
    margin: 0;
    padding: clamp(30px, 5.625vw, 67.5px) 0;
  }

@media (max-width: 781px) {.home-segmentfit-static .c-segmentfit {
    padding: clamp(15px, 2.8125vw, 33.75px) 0;
  }

}

.home-news-static .news-archive {
    margin-top: 0;
  }

.c-hero__ctas .c-button--primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.c-hero__ctas .c-button--primary:focus,
.c-hero__ctas .c-button--primary:focus-visible {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  outline: none;
}

.c-hero__ctas .c-button--primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.c-hero__ctas .c-button--secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.c-hero__ctas .c-button--secondary:focus,
.c-hero__ctas .c-button--secondary:focus-visible {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  outline: none;
}

.c-hero__ctas .c-button--secondary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.home .news-archive .content-column,
.front-page .news-archive .content-column {
  max-width: var(--container-max, 1320px);
  width: 100%;
}

@media (max-width: 900px) {.home .news-archive .news-grid .news-card:nth-child(n+3),
  .front-page .news-archive .news-grid .news-card:nth-child(n+3) {
    display: none;
  }

}

.home .site-header {
	margin-bottom: 0;
}

