/* === Basic Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Navbar === */
.navbar {
  position: fixed; /* Changed from relative to fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 110;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* === Underline === */
.navbar-underline {
  width: 100%;
  height: 2px;
  background-color: #08178a;

}

.logo-button {
  height: 100%;
  background-color: white;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #004094;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.logo-button:hover {
  background-color: #dee6ff;;
  box-shadow: inset 0 2px 4px #08178a;
}


/* === Navbar Container === */
.nav-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: padding 0.3s ease;
  border-bottom: solid 2px #08178a;
}

.nav-right-container {
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: padding 0.3s ease;
}

/* === Shrink + White Scroll Style === */
.navbar.scrolled {
  background-color: white;
  height: 70px;
}


.navbar.scrolled .all-links a {
  color: #08178a;
}

.navbar.scrolled .icon-stroke {
  stroke: #08178a;
}

.navbar.scrolled .search-form input {
  color: #08178a;
  border-color: #08178a;
}

.navbar.scrolled .search-toggle:hover .search-icon-bg {
  fill: #cbd4ed;
}

/* === Logo === */
.nav-logo {
  height: 35px;
  width: auto;
  overflow: visible;
  transition: filter 0.5s ease, transform 0.3s ease !important;
}

.nav-logo:hover {
  transition: filter 0.4s ease, transform 0.3s ease !important;
}

/* === Nav Links === */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
}

.all-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  padding-top: 3px;
}

.all-links a {
  text-decoration: none;
  color: #000233; 
  font-weight: 400;
  font-size: 18px;
  font-family: 'Saira', arial, sans-serif;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

/* === Hover Effect === */
.all-links a:hover {
  color: #004094; /* keep your hover color */
}

.all-links a::after {
  content: '';
  position: absolute;
  left: 50%;                /* center under the text */
  bottom: -26px;             /* start below the link, at bottom of nav bar */
  width: 2px;                /* thickness of vertical line */
  height: 0;                 /* start hidden */
  background-color: #08178a; /* line color */
  transform: translateX(-50%); /* center horizontally */
  transition: height 0.3s ease-in-out; /* animate line growing */
}

.all-links a:hover::after {
  height: 20px; /* grow from bottom to top of link */
}

.nav-divider {
  border: solid 1px;
  height: 100%;
  color: #163e9b;
}

/* === hamburger === */

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden by default, shows at mobile breakpoint */
}

.hamburger-icon rect {
  fill: white;
}

.mobile-menu {
  display: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.translate-wrapper {
  padding: 0px 40px 0px 40px;
}

.translate-button {
  background-color: transparent;
  padding: 5px;
  border: solid 2px #004094;
  cursor: pointer;
  height: 42px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.translate-button:hover {
  background-color: #dee6ff;
}

.translate-button-text {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  color: #004094;
  font-size: 20px;
  line-height: 26px;
}


/* Hide nav links & show hamburger on mobile */

/* === Shared Nav Icon Toggle Button === */
.nav-icon-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #08178a;
}

.nav-icon-svg {
  width: 100%;
  height: auto;
}

.icon-stroke {
  fill: none;
  stroke: #08178a;
  stroke-width: 30px;
  stroke-miterlimit: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.icon-bg {
  fill: transparent;
  transition: fill 0.3s ease;
}

/* Hover state (same as your search hover) */
.nav-icon-toggle:hover .icon-bg {
  fill: #dee6ff;
}

/* Show only magnifying glass on desktop */
.icon-magnify,
.icon-hamburger {
  display: none;
}

@media (min-width: 1081px) {
  .icon-magnify {
    display: block;
  }
}

@media (max-width: 1080px) {
  .icon-hamburger {
    display: block;
  }
}



@media (max-width: 1080px) {
  .nav-links,
  .search-form {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: fixed;
    top: 90px; /* cover the screen from very top */
    left: 0;
    right: 0;
    bottom: 0; /* stretch all the way down */
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 100;
    overflow-y: auto;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-spacer {
    height: 15%;
    background-color: #f0f0f0;
  }

  .mobile-menu-top {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: hidden;
    border-bottom: solid 2px #004094;
    border-top: solid 2px #004094;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 200;
  }

  .mobile-menu .menu-number {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #004094;
    font-weight: 400;
    letter-spacing: 1px;
    vertical-align: 9px;
    padding-right: 10px;
  }

  .mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .mobile-nav-links a {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 55px;
    border-bottom: solid 2px #08178a;
    color: #000233;
    font-size: clamp(20px, 60px, 60px);
    text-decoration: none;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 200;
  }

  .mobile-nav-links a:last-child {
    border-bottom: none;
  }

  .vertical-marquee-container {
    width: 30%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: solid 2px #08178a;
  }

  .vertical-marquee-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: scroll-vertical 500s linear infinite;
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 2px #004094;
    white-space: nowrap;
    transform: translateY(100%);
    top: 100%;
  }

  @keyframes scroll-vertical {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-50%);
    }
  }

}


.mobile-menu-image {
  width: 100%;
  height: auto;
  max-height: 20vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: solid 2px #08178a;
}

/* The mask holds the stacked slideshow images */
.mobile-menu-image-mask {
  width: 100%;
  height: 300px;
  position: relative;
}

.mobile-menu-image-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0); /* start hidden (masked from left) */
}

/* Stack order */
.mobile-menu-image-mask img:nth-child(1) {
  z-index: 1;
}
.mobile-menu-image-mask img:nth-child(2) {
  z-index: 2;
}
.mobile-menu-image-mask img:nth-child(3) {
  z-index: 3;
}


.mobile-menu-footer {
  background-color: white;
  height: 9%;
  width: 100%;
  border-top: solid 2px #08178a;
  display: flex;
  align-items: center;
  flex-direction: row;
  
}

.mobile-menu-footer a {
  color: #8eaaff;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 25px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 20px 0px 20px 50px;
}


/* === Search === */
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0px 40px 0px 20px;
}

.search-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  width: 100%;
  height: auto;
}

.icon-stroke {
  fill: none;
  stroke: #08178a;
  stroke-width: 30px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.search-icon-bg {
  fill: transparent;
  transition: fill 0.3s ease;
}

.search-toggle:hover .search-icon-bg {
  fill: #7E98CB;
}

.icon-close {
  display: none;
}

.search-wrapper.active .icon-magnify {
  display: none;
}

.search-wrapper.active .icon-close {
  display: block;
}

.search-form {
  opacity: 0;
  width: 0;
  height: 42px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #08178a;
  background: transparent;
}

.search-form.dark-border {
  border-color: #08178a;
}

.search-form input {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 12px;
  width: 180px;
  font-size: 16px;
  outline: none;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.search-wrapper.active .search-form {
  opacity: 1;
  width: auto;
  margin-left: 20px;
}

@media (max-width: 1080px) {
  .search-wrapper {
    padding: 0px 40px 0px 40px;
  }
}

@media (max-width: 768px) {

  .nav-container {
    height: 100%;
    flex-wrap: nowrap;
  }

  .logo-button {
    padding: 0px 50px 0px 50px;
    flex-shrink: 0;
  }

  .vertical-marquee-text {
    font-size: 130px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: fixed;
    top: 90px; /* cover the screen from very top */
    left: 0;
    right: 0;
    bottom: 0; /* stretch all the way down */
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 100;
    overflow: hidden;
  }

  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu-footer a {
    font-size: 20px;
  }
}


@media (max-width: 760px) {
  .navbar {
    height: 70px;
  }
  .mobile-nav-links a {
    font-size: 25px;
    padding-left: 30px;
  }
  .vertical-marquee-text {
    font-size: 100px;
  }
  .logo-button {
    padding: 0px 30px;
  }
  .nav-logo {
    height: 28px;
  }
  .mobile-menu-footer .mobile-footer-link {
    font-size: 17px;
    padding: 12px 0px 12px 30px;
    color: #000233;
  }
  .mobile-menu {
    top: 70px;
    height: calc(100dvh - 70px);
  }
  .search-wrapper {
    padding: 0px 30px 0px 30px;
  }
  .translate-wrapper {
    display: none !important;
  }

  .nav-divider {
    display: none ;
  }
  .mobile-menu-footer .mobile-footer-link {
    padding: 15px 0px 15px 40px;
  }

}

body {
    background-color: rgb(255, 255, 255);
}



::selection {
  background-color: #004094;
  color: white;            
}

/* For Firefox (requires vendor prefix) */
::-moz-selection {
  background-color: #004094;
  color: white;
}



/* CURSOR DOT STYLING */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #a3baff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}






/* =========================
   Barba Transition Overlay
   ========================= */
#barba-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* fallback background color */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999; /* above everything */
  pointer-events: none; /* allow clicks to pass when hidden */
  opacity: 0;
  transition: opacity 0.5s ease;
  border-bottom: solid 2px #004094;
}

/* Visible state */
#barba-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.transition-logo-container {
  background-color: #181C41;
  border: solid 2px #004094;
  border-left: none;
  margin-bottom: 90px;
}

/* Logo in the center */
#barba-transition-overlay .barba-logo {
  padding: 40px;
  height: auto;
  width: 380px;
  margin-left: 70px;
}

.loading-row-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  width: 100%;
}

.loading-copy-container {
  margin-top: 40px 0px;
   overflow: hidden;
}

.loading-copy {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 200;
  color: #181C41;
  padding: 40px 100px 40px 90px;
}

.loading-copy .line {
  display: block;
  overflow: hidden;
}

.loading-copy .line span {
  display: inline-block; /* allow GSAP y animations */
}

/* Thin loading bar */
#barba-transition-overlay .loading-bar {
  width: 0%; /* animate width with JS/GSAP */
  height: 2px;
  background: #004094;/* or your brand color */
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: width 0.3s ease;
  margin-top: 100px;  
}

.loading-counter-wrapper {
  width: 200px;
  height: 100%;
  border-left: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading counter */
#barba-transition-overlay .loading-counter {
  color: #829cea;
  font-size: 45px;
  font-weight: 200;
  letter-spacing: 1px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  padding: 40px 90px 40px 90px;
}

/* Optional canvas for gradient behind overlay */
#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100; /* below overlay */
  pointer-events: none;
}

/* Optional: fade-out animation using class */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}


#barba-shutter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 9999;
}

.shutter-row {
  flex: 1;
  background-color: #004094; /* your blue shade */
  transform: scaleY(0);       /* start collapsed */
  transform-origin: bottom center; /* grow from bottom */
}

.site-info, .powered-by-wordpress, .footer-credit {
    display: none !important;
}







@media (max-width: 420px) {
  #barba-transition-overlay .barba-logo {
    width: 250px;
    margin-left: 0px;
    padding: 20px !important;
  }
  .transition-logo-container {
    margin-bottom: 40px;
  }

  .loading-copy {
    font-size: 24px;
    font-weight: 300;
    padding: 15px 20px 15px 30px;
  }
  .loading-counter-wrapper {
    width: 100px;
  }
  #barba-transition-overlay .loading-counter {
    font-size: 25px;
    padding: 15px 90px 15px 90px;
  }
  #barba-transition-overlay .loading-bar {
    margin-top: 50px;  
  }

}


@media (max-width: 760px) {
  .news-template-hero {
    height: auto !important;
    display: block !important;
    min-height: 0px !important;
  }
  .news-template-hero-inner {
    flex-direction: column-reverse !important;
    height: auto !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
  .news-template-hero-content {
    min-width: 20px !important;
    border-right: none !important;
    border-top: solid 2px #004090;
  }
  .news-template-hero-content-inner {
    padding: 40px 30px !important;
  }
  .news-template-hero-title {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .news-template-hero-summary {
    font-size: 16px !important;
  }
  .news-template-contact-text {
    font-size: 16px !important;
    margin: 7px 15px !important;
  }
  .news-template-contact-arrow-container {
    padding: 10px 12px !important;
  }
  .news-template-contact-divider {
    height: 42px !important;
  }
  .news-template-hero-image-wrapper {
    margin-top: 70px !important;
    width: 100% !important;
    height: auto !important;  /* Remove fixed height */
    aspect-ratio: 16/9;      /* Maintain aspect ratio */
    overflow: hidden;
    position: relative;      /* For absolute positioning of the image */
  }
  .news-template-hero-image {
     position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }

  .news-template-bottom-bar-wrapper {
    height: 150px !important;
    display: inline !important;
  }
  .news-template-hero-bottom-spacer1, 
  .news-template-hero-bottom-spacer2, 
  .news-template-hero-bottom-socialbar {
    height: 60px !important;
  }
  .news-template-bottombar-social-header {
    padding: 0px 30px !important;
  }
  .news-bottombar-social-header {
    font-size: 15px !important;
  }
  .news-bottombar-social-icon-container {
    padding: 0px 30px !important;
  }
  .news-template-body-copy-section {
    flex-direction: column !important;
  }
  .news-template-entry-headline { 
    max-width: 100% !important;
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .news-template-body-copy-wrapper {
    padding: 60px 30px !important;
    border-bottom: solid 2px #004090 !important;
  }
  .news-template-sidebars-container {
    border-top: solid 2px #004090;
    padding: 0px !important;
    margin: 0px 30px !important;
    min-width: 0px !important; 
    border-top: 0px !important;
  }
  .news-template-sidebar-top {
    margin-bottom: 50px ;
  }
  





  .news-template-share-middle-wrapper  {
    flex-direction: column-reverse !important;
    height: auto !important;
  }
  .news-template-share-middle-left {
    margin: 50px 30px !important;
    width: 100% !important;
  }
  .news-template-share-middle-left-wrapper {
    align-items: flex-start !important;
    min-width: 0px !important;
    width: 100% !important;
    height: 470px !important;
    border-right: 0px !important;
  }
  .news-template-share-header {
    width: 80% !important;
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .news-template-share-middle-right-wrapper {
    border-bottom: solid 2px #004090;
    height: 400px !important;
  }
  .news-template-share-line-spacer {
    width: 30px !important;
  }
  .news-template-share-right-image-container {
    width: 90% !important;
  }

}



/* NEWS ENTRY TEMPLATE HERO STYLINGS */

.news-template-hero {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 900px;
  background-color: white;
}

.news-template-hero-inner {
  display: flex;
  height: 70%;
}

.news-template-hero-content {
  flex: 1;
  border-right: solid 2px #004094;
  display: flex;
  align-items: center;
  max-width: 900px;
  min-width: 700px;
}

.news-template-hero-content-inner {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 90px;
}

.news-template-hero-date {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #004094;
  padding-bottom: 25px;
}

.news-template-hero-title {
  font-size: 40px;
  font-weight: 200;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  line-height: 43px;
  padding-bottom: 25px;
}

.news-template-hero-content-inner p {
  color: #004094;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding-bottom: 25px;
  font-weight: 200;
  line-height: 25px;
}

.news-template-contact-button {
  display: inline-flex;   /* mimic button layout */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;         
  border: solid 2px #004094;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;  /* remove underline for links */
  cursor: pointer;        /* show pointer */
  color: #000233;
}

.news-template-contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #dee6ff;
  z-index: -1;
  transition: left 0.4s ease;
}

.news-template-contact-button:hover::before {
  left: 0;              
}

.news-template-contact-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.news-template-contact-text {
  margin: 10px 15px;
  font-size: 18px;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.news-template-contact-divider {
  width: 2px;
  color: #163e9b;
  background-color: #163e9b;
  height: 48px;
}

.news-template-contact-arrow-container {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-template-contact-arrow-svg {
  width: 18px;
  height: 18px;
}

.news-template-contact-arrow-line {
  fill: none;
  stroke: #004094;
  stroke-miterlimit: 10;
  stroke-width: 40px;
}

.news-template-hero-image-wrapper {
  flex: 1;
  overflow: hidden;
}

.news-template-hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-template-bottom-bar-wrapper {
  display: flex;
  flex: 1; /* Fills remaining 30% of height */
  flex-direction: column;
  width: 100%;
}

.news-template-hero-bottom-spacer1 {
  flex: 1;
  height: auto;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
}

.news-template-hero-bottom-spacer2 {
  flex: 1;
  height: auto;
  background-color: #f0f0f0;
  border-bottom: solid 2px #004094;
}

.news-template-hero-bottom-socialbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: solid 2px #004094;
  flex: 1;
  height: auto;
}

.news-template-bottombar-social-header {
  height: 100%;
  border-right: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 90px;
}

.news-bottombar-social-header {
  font-family: 'Gotham',Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #000233;
  font-weight: 200;
}


.news-bottombar-social-icon-container {
  padding: 0px 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  height: 100%;
  border-right: solid 2px #004094;
}

.news-template-facebook-icon-svg {
  width: 30px;
  height: 30px;
}

.news-template-facebook-icon {
  fill:none;
  stroke:#1B449C;
  stroke-width: 45.0;
  stroke-miterlimit:10;
}

.news-template-xicon-svg {
  width: 30px;
  height: 30px;
}

.news-template-xicon {
  fill:none;
  stroke:#1B449C;
  stroke-width: 45.0;
  stroke-miterlimit:10;
}

.news-template-linkedinicon-svg {
  width: 30px;
  height: 30px;
}

.news-template-linkedinicon {
  fill:none;
  stroke:#1B449C;
  stroke-width: 45.0;
  stroke-miterlimit:10;
}

.news-template-mailicon-svg {
  width: 30px;
  height: 30px;
  margin-top: 5px;
}

.news-template-mailicon {
  fill:none;
  stroke:#1B449C;
  stroke-width: 45.0;
  stroke-miterlimit:10;
}

.news-template-facebook-icon-svg:hover .news-template-facebook-icon {
  stroke: #000233;
}

.news-template-xicon-svg:hover .news-template-xicon {
  stroke: #000233;
}

.news-template-linkedinicon-svg:hover .news-template-linkedinicon {
  stroke: #000233;
}

.news-template-mailicon-svg:hover .news-template-mailicon {
  stroke: #000233;
}




/* BODY COPY STYLINGS SECTION */

.news-template-body-copy-section {
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: auto;
  min-height: 550px;
}

.news-template-body-copy-wrapper {
  flex: 2 1 auto;
  padding: 90px 90px;
  min-height: 0;
}

.news-template-entry-headline {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 200;
  max-width: 70%;
  line-height: 45px;
  padding-bottom: 25px;
}

.news-template-entry-date {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 40px;
  color: #004094;
}

.news-template-entry-bodycopy p {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.5;
  color: #000233;
  padding-bottom: 10px;
}

.news-template-entry-bodycopy img {
  border: solid 2px #004094;
  margin: 30px 0px;
}

.news-template-entry-bodycopy figure {
  gap: 10px;
}

.news-template-sidebars-container {
  flex: 1;
  display: flex;
  flex-direction: row;
  min-width: 450px;
  padding-right: 90px;
}

.news-template-bodycopy-side-bar {
  width: 50%;
  height: 100%;
  background-color: #f0f0f0;
  border-left: solid 2px #004094;
  border-right: solid 2px #004094;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-template-sidebar-top {
  margin-top: 90px;
}

.news-template-sidebar-bottom {
  margin-bottom: 90px;
}

.news-template-author-container,
.news-template-publisher-container {
  height: 50px;
  width: 100%;
  background-color: white;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-self: flex-start;
}

.news-template-author-copy,
.news-template-publisher-copy {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  color: #000233;
  font-size: 17px;
  font-weight: 400;
  padding-left: 15px;
}

.news-template-author-name-container,
.news-template-publish-date-container {
  height: 50px;
  width: 100%;
  background-color: white;
  border-bottom: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-self: flex-start;
}

.news-template-author-name, 
.news-template-publish-date-copy {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #004094;
  padding-left: 15px;
}

.news-template-title-marquee-container {
    position: relative;
    display: flex;
    flex: 1 0 50%;
    align-items: center;
    justify-content: center;
    border-right: solid 2px #08178a;
    overflow: hidden;
    min-height: 0;
  }

.news-template-title-marquee-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation: scroll-vertical 900s linear infinite;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 130px;
  color: transparent;
  -webkit-text-stroke: 2px #004094;
  white-space: nowrap;
  transform: translateY(100%);
  top: 0;
  padding: 0px 20px;
  vertical-align: -10em;
}

@keyframes scroll-vertical {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-100%);
    }
  }

.news-template-bodycopy-bottom-spacer {
  height: 80px;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  background-color: white;
}









/* SHARE STORY SECTION STYLES */

.news-template-share-section {
  height: auto;
  width: 100%;
}

.news-template-share-spacer {
  background-color: white;
  border-bottom: solid 2px #004094;
  height: 10vh;
  width: 100%;
}

.news-template-share-middle-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: solid 2px #004094;
  height: 70vh;
  width: 100%;
  background-color: white;
}

.news-template-share-middle-left-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-right: solid 2px #004094;
  height: 100%;
  width: 50%;
  min-width: 680px;
}

.news-template-share-middle-left {
  width: 70%;
  height: auto;
  margin-left: 90px;
}

.news-template-share-top-header {
  font-size: 17px;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #004094;
  padding-bottom: 20px;
}

.news-template-share-header {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 40px;
  color: #000233;
  padding-bottom: 25px;
  line-height: 47px;
  width: 80%;
}

.news-template-share-bodycopy {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #004094;
  padding-bottom: 30px;
  line-height: 24px;
}

.news-template-share-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border: solid 2px #004094;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
  color: #000233;
}

.news-template-share-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #dee6ff;
  z-index: -1;
  transition: left 0.4s ease;
}

.news-template-share-button:hover::before {
  left: 0;
}

.news-template-share-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.news-template-share-text {
  margin: 8px 15px;
  font-size: 18px;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.news-template-share-divider {
  width: 2px;
  color: #163e9b;
  background-color: #163e9b;
  height: 44px;
}

.news-template-share-arrow-container {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-template-share-arrow-svg {
  width: 18px;
  height: 18px;
}

.news-template-share-arrow-line {
  fill: none;
  stroke: #004094;
  stroke-miterlimit: 10;
  stroke-width: 40px;
}

.news-template-share-middle-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.news-template-share-line-spacer {
  width: 10%;
  height: 2px;
  background-color: #000233;
}

.news-template-share-right-image-container {
  position: relative;
  overflow: hidden;
  height: 80%;
  width: 80%;
  border: solid 2px #004094;
}

.news-template-share-right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100; 
  width:100%;
  height:100%;
  --gradient-color-1: #004094; 
  --gradient-color-2: #000233; 
  --gradient-color-3: #000319;  
  --gradient-color-4: #000000;
}

* Footer element positioning */
.site-footer {
 position: relative;
 z-index: 1;
 pointer-events: none;
 transition: pointer-events 0s ease 0s;
}
/* Make footer interactive when active */
.site-footer.footer-active {
 pointer-events: auto;
 z-index: 10;
}

.footer-top {
    display: flex;
    border-bottom: solid 2px #163e9b;
}

.footer-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-right: solid 2px #163e9b;
    width: 550px;
    padding-left: 90px;
    padding-right: 250px;
    flex: 1;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-middle {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    display: flex;
    flex-direction: row;
    width: 100vw;
}

.contact-header,
.location-header,
.certifications-header,
.getintouch-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    color: white;
    font-size: clamp(25px, 1.5vw, 40px);
    font-weight: 300;
    border-bottom: solid 2px #163e9b;
}

.contact-column,
.location-column,
.certifications-column {
    border-right: solid 2px #163e9b;
    width: 25%;
}

.getintouch-column {
    width: 25%;
}

.contact-header {
    padding-left: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.location-header-copy,
.certifications-header-copy,
.getintouch-header-copy {
    padding: 30px;
}

.contact-header-copy {
    padding: 30px 30px 30px 0px;
}

.contact-column {
   display: flex;
   flex-direction: column;
}

.contact-bullets {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    padding: 30px 30px 30px 90px;
}

.contact-item {
    padding-bottom: 10px;
}

.contact-item a {
  text-decoration: none;
  color: #8eaaff;
}

.contact-item a:hover {
  color: white;
}

/* Ensure all footer links are clickable */
.footer a,
.footer-apply-link,
.linkedin-link,
.map-link {
 pointer-events: auto;
 position: relative;
 z-index: 10;
} 

.linkedin-link {
  color: #8eaaff;
  text-decoration: none;
}


.location-one {
    display: flex;
    padding: 30px 30px 30px 30px;
}

.location-two {
    display: flex;
    padding: 0px 30px 30px 30px;
}

.location-number {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    padding-right: 20px;
}

.location-one-address,
.location-two-address {
    color: #8eaaff;
    font-family: 'Saira',Arial, Helvetica, sans-serif;
    font-weight: 200;
}

.map-link {
  text-decoration: none; 
  color: inherit;        
  cursor: pointer;       
}

.map-link:hover {
  text-decoration: none; 
  color: white;
}

.footer-bottom {
    border-top: solid 2px #163e9b;
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 90px;
}

.rights-reserved {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
}

.footer-bottom-right {
    color: #8eaaff;
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.privacy-policy {
    padding-right: 40px;
}

.certifications-bullets {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.certifications-item {
    padding-bottom: 10px;
}

.getintouch-bottom {
    padding: 30px;
}

.line-one {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
}

.getintouch-message {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
    margin-top: 10px;
}

/* Ensure footer form elements are clickable */
.footer-form,
.footer-input,
.footer-submit,
.footer-form-container {
  pointer-events: auto;
  position: relative;
  z-index: 10; 
}

.footer-form-container {
  margin-top: 10px;
  max-width: 200px;
}

.footer-form {
  display: flex;
  align-items: center;
  border: 2px solid #163e9b;
  background-color: transparent;
  height: 42px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
}

.footer-input {
  background: transparent;
  border: none;
  color: #8eaaff;
  padding: 8px 12px;
  width: 100%;
  font-size: 16px;
  outline: none;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

/* Button reset & styling */
.footer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-left: 2px solid #163e9b;
  height: 100%;
  width: 60px; /* adjust as needed for spacing */
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

/* Optional hover background or lighten border */
.footer-submit:hover {
  background-color: #8eaaff;
}

/* Arrow SVG */
.arrow-svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 25px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.footer-submit:hover .arrow-svg {
  stroke: #7E98CB;
}

.footer-link {
  color: #8eaaff;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 15px;
  text-decoration: none;
  margin-right: 40px;
  position: relative;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 10;
}

.footer-link:last-child {
  margin-right: 0;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #8eaaff;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* looping text Marquee */



.footer-marquee-container {
  width: 100%;
  overflow: hidden; /* Clip overflow */
  position: relative;  /* Adjust as needed */
  white-space: nowrap;
  padding: 30px 0px;
}

.footer-marquee {
  display: inline-block;
  font-size: 100px; 
  font-weight: 900;
  font-family: 'Gotham', Arial, sans-serif;
  font-style: uppercase;
  -webkit-text-stroke: 2px white;
  animation: scroll-left 200s linear infinite !important;
  color: transparent;
}

.footer-marquee .highlight { 
  color: transparent;
  -webkit-text-stroke: 2px #677BB8; 
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
    .footer-logo-container {
        padding-right: 90px;
    }
   .footer-middle {
        flex-direction: column;
   }
  .contact-column,
  .location-column,
  .certifications-column,
  .getintouch-column {
    width: 100%;
    border-right: none;
  }
  .location-header,
  .certifications-header,
  .getintouch-header {
    padding-left: 90px;
    border-top: solid 2px #163e9b;
  }
  .location-header-copy,
  .certifications-header-copy,
  .getintouch-header-copy,
  .contact-header-copy {
     padding: 20px 20px 20px 0px;
   }
   .location-one {
    padding: 30px 90px 30px 90px;
   }
   .location-two {
    padding: 0px 90px 30px 90px
   }
   .certifications-bullets {
    padding: 30px 90px;
   }
   .getintouch-bottom {
    padding: 30px 90px;
   }
   .footer-bottom-right {
    display: none;
   }
}

@media (max-width: 760px) {
    .footer-logo-container {
        padding-left: 30px;
        padding-right: 30px !important;
    }
    .footer-logo {
        width: 160px;
    }
    .footer-marquee-container {
        padding: 10px 0px;
    }
    .footer-marquee {
        font-size: 80px;
    }
    .location-header-copy,
    .certifications-header-copy,
    .getintouch-header-copy,
    .contact-header-copy {
        padding: 15px 15px 15px 0px;
    }
    .contact-header,
    .location-header,
    .certifications-header,
    .getintouch-header {
    padding-left: 30px;
    }
    .contact-bullets {
        padding: 30px 30px 30px 30px;
    }
    .contact-item {
        padding-bottom: 5px;
    }
    .certifications-column {
        display: none;
    }
    .location-number {
      display: block !important;
    }
    .location-one {
    padding: 30px 30px 15px 30px;
   }
   .location-two {
    padding: 0px 30px 30px 30px
   }
   .getintouch-bottom {
    padding: 30px;
   }
   .footer-bottom-wrapper {
    padding: 30px;
   }
}




@media (max-width: 1080px) {
  .footer-logo-container {
    padding-right: 100px;
  }
  .location-number {
    display: none ;
  }
}
