@charset "UTF-8";
/* CSS Document */

:root {
  --navy: #023047;
  --navy-deep: #01202f;
  --teal: #219EBC;
  --teal-soft: #6dcff6;
  --teal-pale: #e7f4f9;
  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --ink-faint: rgba(255, 255, 255, 0.42);
}

/* style.css points body/headings at the template's placeholder "Maison"/"Eina"
   families, which were never licensed — that was silently falling back to
   the browser default sans-serif. Montserrat is the only font we actually
   load (see layout.tsx), so use it. */
body {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Reveal-on-scroll rest state for useWow's IntersectionObserver (replaces
   WOW.js, which injected this same rule at runtime). visibility, not
   opacity: the bundled `zoomIn` keyframe (vendors.css) has no 100% stop for
   opacity, so the browser synthesizes that missing endpoint from this rule
   — with opacity:0 here, `wow zoomIn` elements would animate in and then
   settle right back to invisible. Gated behind prefers-reduced-motion so
   those users just see the content immediately. */
@media (prefers-reduced-motion: no-preference) {
  .wow {
    visibility: hidden;
  }
}

/* ---------- Home hero ---------- */
.hero-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 50% 18%, rgba(33, 158, 188, 0.28), transparent 60%),
    var(--navy-deep);
}

.hero-stage__inner {
  width: 100%;
  max-width: 640px;
  padding: 64px 32px 56px;
  margin: 0 auto;
  text-align: center;
}

.hero-wordmark {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 40px;
  font-weight: 500;
}

.hero-mark-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 40px;
}

.hero-mark-ring {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(109, 207, 246, 0.25);
  animation: heroRingPulse 3.2s ease-in-out infinite;
}

.hero-mark-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 158, 188, 0.28) 0%, rgba(109, 207, 246, 0.12) 45%, transparent 72%);
  filter: blur(2px);
  animation: heroGlowPulse 3.2s ease-in-out infinite;
}

.hero-mark-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: heroMarkFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

@keyframes heroRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.15; }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes heroMarkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mark-ring,
  .hero-mark-glow,
  .hero-mark-img {
    animation: none;
  }
}

.hero-heading {
  font-size: clamp(28px, 4.6vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-accent {
  color: var(--teal-soft);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 24px rgba(33, 158, 188, 0.28);
}

.hero-cta:hover {
  background: var(--teal-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(33, 158, 188, 0.38);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* The floating phone-mockup ".flow" widget (shared with decision-making-stress,
   see flow-slideshow/FlowSlideshow.tsx) starts 500px from the document top by
   default — tuned for the old officer-photo hero. Scoped to just this page
   (via :has, since .hero-stage only exists here) so it starts clear of the
   new hero instead of overlapping its centered content. */
body:has(.hero-stage) .flow {
  margin-top: 100vh;
}

/* Needed because the rule above, being more specific than plain `.flow.sticky`
   (extra `body` type selector), would otherwise also win there and stack its
   100vh on top of the sticky state's own `top: 90px`. */
body:has(.hero-stage) .flow.sticky {
  margin-top: 0;
}

.mobile-slide {


  /* transform: translate(-50%, 0%); */
}

.flat-call-back {
  padding: 80px 0;
}

.flat-call-back {
  padding: 100px 0 100px;
  background: url(../images/call-action.jpg) center center no-repeat;
  position: relative;
  z-index: 99;
}

.flat-call-back:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #023047;
}

.flat-call-back .title {
  float: left;
}

.flat-call-back .title h1 {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding-left: 111px;
  position: relative;
}

.flat-call-back p {
  color: #fff;

}

.flat-call-back .title h1:before {
  content: '';
  position: absolute;
  /* top: -16px; */
  left: 0;
  width: 60px;
  height: 60px;
  background: url(../img/light-bulb-14.png) center center no-repeat;
  background-color: #fff;
  background-size: cover;
  background-size: 85% 85%;
  line-height: 60px;
  border-radius: 3px;
}

.button-call-back {
  float: right;
  margin-top: 15px;
}

.button-call-back a {
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  background-color: var(--teal);
  width: 100px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0px 10px 39.6px 0.4px rgba(0, 0, 0, 0.3);
}

.sticky .button-call-back {
  margin-top: 5px;
}

.sticky .button-call-back a {
  background-color: var(--teal);
  color: var(--navy-deep);
}

.button-call-back a:hover {
  color: var(--navy-deep);
  background-color: var(--teal-soft);
}

/* ---------- Header & footer: stay navy in every state ---------- */
header.sticky {
  background-color: var(--navy-deep);
}

.sticky .main-menu > ul > li > a {
  color: var(--ink);
}

.sticky .main-menu > ul > li:hover > a {
  color: var(--teal-soft);
}

/* Sticky header background is navy now (not white), so it needs the white
   logo variant instead of style.css's navy-on-white default. */
header.sticky #logo_home h1 a {
  background-image: url(../img/logo_2x.png);
}

footer {
  background: var(--navy-deep);
}

a#email_footer {
  color: var(--teal-soft);
}


.img_sticky {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
}

#sticky {
  position: absolute;
  right: 5%;
  z-index: 1001;
  margin-top: -400px;
}

#sticky.fixed {
  position: fixed;
  top: 50px;
  right: 5%;
  margin-top: 0;
}

.main_li {
  font-size: 20px;
  font-weight: 300;
  color: #555;
}

.p-56 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}


.mobile-slide .image {
  filter: blur(30px);
  opacity: 0;
  mix-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: filter 0.5s ease, opacity 0.5s ease;
}

.mobile-slide .image.active {
  opacity: 1;
  filter: blur(0);
}


.intro_title {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  margin-top: 40%;
  text-shadow: horizontal-shadow vertical-shadow blur black;

}


.intro_title_2 {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  margin-top: 30%;
}

.intro_title_2 h3 {
  font-size: 45px;
  margin-bottom: 5px;
  color: white;
  width: 45%;
  /* margin-left: 12px; */
}


.textwrapper {
  margin: 400px 0 400px 0;
  /* padding-left: 100px; */
}


.textwrapper_0 {
  margin-top: 200px;
  margin-bottom: 200px;
}


.textwrapper_1 {
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  background: #efefef;
  width: 100%;
  padding: 200px 0;
  padding-left: 100px;
}


.textwrapper_2 {
  margin-top: 200px;
  margin-bottom: 200px;
}

.flow {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 1001;
  margin-top: 500px;
  pointer-events: none;

}

.flow.sticky {
  position: fixed;
  top: 90px;
  margin-top: 0;
}

.image-container {
  display: flex;
  flex-direction: column;
}


.image {
  filter: blur(30px);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: filter 1s ease, opacity 1s ease;
}

.image1 {
  position: relative;
  top: 0;
  left: 0;

}

.image2 {
  position: absolute;
  top: 0;
  left: 0;
}


.image.active {
  opacity: 1;
  filter: blur(0);

}

.feature {
  display: flex;
}

.feature__left {
  position: relative;
  width: 40%;
  z-index: 2;
}

.feature__text {
  margin: auto;
  width: 80%;
  scroll-snap-type: y proximity;
}

.feature__info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

.feature__num {
  display: block;
  line-height: 0;
  text-align: right;
  font-size: 18px;
  transform: skewX(-20deg);
  color: #219EBC;
}

.title {
  text-align: right;
  font-size: 42px;
  /* text-transform: uppercase; */
  color: #023047;
}

.title .stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px #023047;
}

.feature__link {
  display: block;
  width: 280px;
  margin-top: 50px;
  margin-left: auto;
  padding: 12px 0;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
  border: 2px solid #023047;
  color: black;
}


.feature__link-small {
  display: block;
  width: 120px;
  margin-top: 0px;
  margin-left: auto;
  padding: 6px 0;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
  border: 2px solid #023047;
  color: black;
}

.feature__link-small:hover,
.feature__link:hover {
  background-color: #219EBC;
  border: 2px solid #219EBC;

  color: #fff;
  letter-spacing: 6px;
}

.feature__right {
  width: 60%;
  height: auto;
}

.feature__right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  top: 0;
}

.feature__photo {
  width: 50vw;
  height: 60vh;
  position: relative;
}

.feature__photo-item {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  border-radius: 50px;
  overflow: hidden;
}

.feature__photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.logo-slides {
  max-width: 80vw;
  overflow: hidden;
  --webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  margin: auto;
}

.slides_inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-slides img {
  width: 9rem;
  aspect-ratio: 3/2;
  object-fit: contain;
  margin: 0 20px;
  mix-blend-mode: color-burn;
  filter: grayscale(60%);
}


#search_container_2.solutions {
  position: relative;
  height: 100vh;
  background: #4d536d url(../assets/images/officer-image-1.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
  width: 100%;
  display: table;
  z-index: 99;
}

.image-container.solutions img {
  object-fit: contain;
  transition: margin 0.8s ease;
}

.image-container.solutions img:hover {
  margin-top: -20px;
}


#search_container_2.science {
  position: relative;
  height: 100vh;
  background: #4d536d url(../assets/images/strees-relief.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
  width: 100%;
  display: table;
  z-index: 99;
}

.parallax-window h1 {
  color: #fff !important;
}

.parallax-window-new {
  min-height: 75vh;
  background: transparent;
  position: relative;
  object-fit: cover;
}

.parallax-window-new h1 {
  color: #fff !important;
}


.page__content__banner {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page__content__banner img {
  z-index: -1;
  object-fit: contain;
  width: 100%;
  position: absolute;
  opacity: 0.2;
  scale: 0.6;
}

.teams {
  display: flex;
}

.team-left {
  width: 50%;
}

.team-details-wrapper {
  margin: auto;
  width: 80%;
  position: relative
}


.team-details {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.team-right {
  width: 100% !important;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}



.photos {
  position: absolute;
  width: 100%;
  height: 100%;
}

.steve {
  background: url("../assets/images/teams/steve.jpeg") no-repeat;
  /* background-size: contain; */
  background-position: center center;
  padding: 25vh;
  background-size: 300px;
  box-sizing: border-box;
  background-origin: content-box
}

.danish {
  background: url("../assets/images/teams/danish.jpg") no-repeat;
  /* background-size: contain; */
  background-position: center center;
  padding: 25vh;
  background-size: 300px;
  box-sizing: border-box;
  background-origin: content-box
}

.john {
  background: url("../assets/images/teams/john.jpg") no-repeat;
  /* background-size: contain; */
  background-position: center center;
  padding: 25vh;
  background-size: 300px;
  box-sizing: border-box;
  background-origin: content-box
}

.mike {
  background: url("../assets/images/teams/mike.jpg") no-repeat;
  /* background-size: contain; */
  background-position: center center;
  padding: 25vh;
  background-size: 300px;
  box-sizing: border-box;
  background-origin: content-box
}

.maria {
  background: url("../assets/images/teams/maria.jpg") no-repeat;
  /* background-size: contain; */
  background-position: center center;
  background-size: 300px;
  padding: 25vh;
  box-sizing: border-box;
  background-origin: content-box
}

.parallax-content-1 div p {
  font-size: 18px;
}


/* .gsap-marker-scroller-end, .gsap-marker-scroller-start {
  display: none !important;
} */

.left-inner-content {
  width: 50%;
  padding-left: 100px;
}

.zoom-out-image {
  width: 50%;
  height: 50vh;
  z-index: 99;
}

.zoom-out-image img {
  width: 100%;
  height: 60vh;
}

.law-enforcement a {
  color: #219EBC !important;
  font-style: italic;
}

.textwrapper-new {
  margin: 2rem 6rem;
}

.error,
.success {
  display: none;
}

.zoom-out-text {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.anchor {
  text-align: left;
  margin: 6rem;
  margin-top: 5rem;
}

.textwrapper.anchor {
  margin: 400px 0;
}

.gsap-animation {
  display: flex;
  margin: 0 2rem;
}

@media (max-width: 768px) {
  .zoom-out-image {
    display: none;
  }

  .zoom-out-text {
    width: 100%;
    margin: 0
  }

  .anchor {
    margin: 2rem;
  }

  .gsap-animation {
    margin: 0;
  }

  .main_li {
    font-size: 16px;
  }

  figure img {
    width: 100%;
  }

  .main_li {
    font-size: 16px;
  }

  .danish {
    background-size: 250px;
  }

  .steve {
    background-size: 250px;
  }

  .maria {
    background-size: 250px;
  }

  .john {
    background-size: 250px;
  }

  .mike {
    background-size: 250px;
  }
}


@media (max-width: 992px) {
  .zoom-out-image img {
    /* display: none; */
    object-fit: contain;
    height: 50vh;
  }

  .zoom-out-text {
    margin: 0
  }

  .anchor {
    margin: 3rem;
  }

  .textwrapper.anchor {
    margin: 0;
  }

  .gsap-animation {
    margin: 0;
  }

  .danish {
    background-size: 250px;
  }

  .steve {
    background-size: 250px;
  }

  .maria {
    background-size: 250px;
  }

  .john {
    background-size: 250px;
  }

  .mike {
    background-size: 250px;
  }

}


.section-left img,
.section-right img {
  width: 100%;
}

.banner-content {
  clear: both;
  padding-left: 111px
}


.intro_title_h3 {
  padding-left: 50px;
}

.show-on-mobile {
  display: none;
  width: 100%;
  padding-top: 20px;
}


.photos.mobile {
  display: none;
  height: 40vh;
  position: relative;
}

.section-right.mobile {
  display: none;
}

@media only screen and (max-width: 480px) {
  .login-button {
    display: none;
  }

  .intro_title_2 h3 {
    margin-left: 0;
  }

  .mobile-slide,
  .flow,
  .flow.sticky,
  .image.active {
    display: none;
  }

  .left-inner-content {
    width: 100%;
    padding: 30px;
  }

  .textwrapper,
  .textwrapper_0,
  .textwrapper_1,
  .textwrapper_2 {
    margin: 40px 0;
    padding: 0;
    width: 100%;
  }

  .flat-call-back .title h1 {
    padding-left: 80px;
    padding-right: 10px;
    text-align: left;
  }

  .banner-content {
    padding-left: 80px;
    padding-right: 10px;
    text-align: left;
  }

  .feature {
    padding: 10px;
  }

  .feature__left {
    width: 100% !important;
  }

  .feature__right {
    display: none;
  }

  .feature__text {
    width: 100%;
  }

  .feature__info {
    height: auto;
  }

  .intro_title {
    margin-top: 80%
  }

  .img-scroll {
    margin-bottom: 60px;
    margin-top: 0px;
    padding-top: 10px;
  }

  .intro_title_h3 {
    width: 100%;
    padding-left: 0px;
    padding-right: 10px;
  }

  .show-on-mobile {
    display: block;
  }

  .team-right {
    display: none;
  }

  .photos.mobile {
    display: block;
    padding: 0;
    margin: 2rem 0;
  }

  .team-left {
    width: 100%;
  }

  .team-details-wrapper {
    width: 100%;
  }

  .team-details {
    justify-content: space-around;
    align-items: center;
  }

  .section-right.mobile {
    display: block;
  }
  .section-right.remove {
    display: none;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 0.2em solid rgba(0, 0, 0, 0.2);
  border-top-color: #333;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 0.5em;
}

.submenu.dropdown-mobile {
  display: none;
}

.submenu.dropdown {
  display: inline-block;
}

.submenu.dropdown-mobile.show {
  display: block;
}

.submenu.dropdown.hide {
  display: none;
}

.message-button.disabled {
  cursor: not-allowed;
}

.message-button.disabled a {
  pointer-events: none;
}

.message-button.remove {
  display: none;
}
