@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #333333;
  font-family: "Carlito", "Georgia", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  left: 0;
  padding: 1.25rem 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.main-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.main-nav .brand img {
  height: 80px;
  width: auto;
}
.main-nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-links li a {
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.9;
  text-decoration: none;
}
.main-nav .nav-links li a:hover {
  opacity: 1;
}
.main-nav .nav-links .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
}

.hero-section.is-loaded {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=1080&fit=crop") center/cover no-repeat;
  color: #ffffff;
  display: flex;
  filter: blur(6px);
  justify-content: center;
  min-height: 100vh;
  opacity: 0;
  position: relative;
  text-align: center;
  transform: scale(0.985);
  transition: opacity 1000ms ease-out, transition 1000ms ease-out, filter 1000ms ease-out;
}
.hero-section .hero-content {
  max-width: 640px;
  padding: 2.5rem 1.25rem 2.5rem 0;
  text-align: left;
}
.hero-section .hero-eyebrow {
  font-family: "Source Sans 3", "Georgia", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.hero-section .hero-title {
  font-family: "Source Sans 3", "Georgia", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
.hero-section .hero-description {
  font-family: "Source Sans 3", "Georgia", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0.85;
}
.hero-section .hero-clients {
  background-color: #ffffff;
  margin-left: calc(50% - 50vw);
  padding: 0.25rem 0;
  width: 100vw;
}

.hero-with-logos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-with-logos > .hero-inner {
  align-items: center;
  display: flex;
  flex: 1;
}

.logo-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Safari-only: disable mask to prevent progressive clipping bug */
@supports (-webkit-touch-callout: none) {
  .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.logo-track {
  align-items: center;
  animation: logo-scroll 30s linear infinite;
  display: flex;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.logo-item {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 80px;
  justify-content: center;
  line-height: 0;
  padding: 0 3.5rem;
  width: -moz-max-content;
  width: max-content;
}
.logo-item img {
  display: block;
  height: auto;
  max-height: 60px;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
.logo-item:first-child {
  margin-left: 0;
}

@keyframes logo-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50.0001%, 0, 0);
  }
}
@media (max-width: 992px) {
  .logo-item img {
    max-height: 50px;
  }
}
@media (max-width: 576px) {
  .logo-track {
    animation-duration: 45s;
  }
}
.our-services {
  font-size: 1rem;
}
.our-services h2 {
  margin-bottom: 2rem;
}

.services-heading {
  font-family: "Source Sans 3", "Georgia", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.services-panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .services-panels {
    padding-right: 1.5rem;
  }
}

.service-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 200ms ease-out, transform 200ms ease-out;
}
.service-panel:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.service-panel:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.service-panel .service-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
}
.service-panel .service-title::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 200ms ease-out;
}
.service-panel:not(.collapsed) .service-title::after {
  content: "–";
}
.service-panel:hover .service-title::after {
  transform: translateX(4px);
}
.service-panel ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}
.service-panel ul li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
}

.contact-form-wrapper {
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}

.btn-submit-white {
  background-color: #ffffff;
  color: #0d4d5c;
}

.split-section {
  padding: 0;
}
.split-section > .container-fluid {
  padding: 0;
}
.split-section .row {
  align-items: stretch;
  margin: 0;
}
.split-section [class^=col-] {
  padding: 0;
}
.split-section .content-box {
  padding: 5rem 2rem;
}
@media (max-width: 992px) {
  .split-section .content-box {
    padding: 3.75rem 1.25rem;
  }
}
.split-section .section-title {
  font-family: "Source Sans 3", "Georgia", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.split-section .title-underline {
  height: 0.1875rem;
  margin-bottom: 1.875rem;
  width: 3.75rem;
}
.split-section .section-text {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 56.25rem;
}

.section-image {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.bg-teal {
  background-color: #0d4d5c;
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
  color: #0d4d5c;
}

.testimonials-section {
  background-color: #0d4d5c;
  color: #ffffff;
  overflow: hidden;
}
.testimonials-section .testimonials-inner {
  max-width: 640px;
}
.testimonials-section .eyebrow {
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.testimonials-section .section-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
.testimonials-section .testimonial-group {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.testimonials-section .testimonial {
  margin: 0;
  padding-left: 1.75rem;
  position: relative;
}
.testimonials-section .testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 3px;
  height: calc(100% - 0.5rem);
  background: rgba(255, 255, 255, 0.35);
}
.testimonials-section .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}
.testimonials-section .testimonial-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}
.testimonials-section .testimonial-meta strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.testimonials-section .testimonial-meta span {
  display: block;
}
.testimonials-section .testimonial-divider {
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  margin: 0;
}
.testimonials-section .testimonial-image-wrap {
  position: absolute;
  top: 0;
  right: calc(-1 * (100vw - 100%));
  height: 100%;
  width: calc(100% + 100vw - 100%);
}
.testimonials-section .testimonial-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-footer {
  background-color: #0b3f4c;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer .footer-logo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.site-footer .footer-description {
  max-width: 360px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.site-footer .footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
}
.site-footer .footer-links,
.site-footer .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li,
.site-footer .footer-legal li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.site-footer .footer-contact li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #ffffff;
}
.site-footer .footer-bottom {
  padding: 1.5rem 0;
}
.site-footer .footer-copy {
  font-size: 0.85rem;
  margin: 0;
}
.site-footer .footer-legal {
  display: inline-flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}/*# sourceMappingURL=styles.css.map */