/* line 36, app/assets/stylesheets/application.scss */
*, *::before, *::after {
  box-sizing: border-box;
}

/* line 38, app/assets/stylesheets/application.scss */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

/* line 40, app/assets/stylesheets/application.scss */
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #6c6d6d;
  line-height: 1.6;
  font-size: 17px;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* line 51, app/assets/stylesheets/application.scss */
body.no-scroll {
  overflow: hidden;
}

/* line 53, app/assets/stylesheets/application.scss */
img {
  max-width: 100%;
  display: block;
}

/* line 54, app/assets/stylesheets/application.scss */
a {
  color: #2a6f8e;
  text-decoration: none;
}

/* line 55, app/assets/stylesheets/application.scss */
a:hover {
  text-decoration: underline;
}

/* line 57, app/assets/stylesheets/application.scss */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* line 63, app/assets/stylesheets/application.scss */
.container--narrow {
  max-width: 820px;
}

/* line 66, app/assets/stylesheets/application.scss */
.section {
  padding-block: 72px;
}

@media (max-width: 768px) {
  /* line 70, app/assets/stylesheets/application.scss */
  .section {
    padding-block: 48px;
  }
}

/* line 75, app/assets/stylesheets/application.scss */
.section-title {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #5d5d5d;
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.15;
  margin: 0 0 28px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-align: center;
}

/* line 89, app/assets/stylesheets/application.scss */
.section-title::after {
  content: "";
  display: block;
  width: 3px;
  height: 34px;
  margin: 14px auto 0;
  background: #5d5d5d;
}

/* line 97, app/assets/stylesheets/application.scss */
.section-title--light {
  color: #ffffff;
}

/* line 98, app/assets/stylesheets/application.scss */
.section-title--light::after {
  background: rgba(255, 255, 255, 0.6);
}

/* line 100, app/assets/stylesheets/application.scss */
.section-intro {
  text-align: center;
  margin-bottom: 32px;
}

/* line 103, app/assets/stylesheets/application.scss */
.rich {
  max-width: 820px;
  margin: 0 auto;
}

/* line 104, app/assets/stylesheets/application.scss */
.rich p {
  margin: 0 0 1em;
}

/* line 105, app/assets/stylesheets/application.scss */
.rich h4 {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  color: #5d5d5d;
  margin: 1.4em 0 0.4em;
}

/* line 106, app/assets/stylesheets/application.scss */
.rich ul {
  padding-left: 1.2em;
}

/* line 111, app/assets/stylesheets/application.scss */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

/* line 119, app/assets/stylesheets/application.scss */
.site-header--scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* line 121, app/assets/stylesheets/application.scss */
.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* line 131, app/assets/stylesheets/application.scss */
.site-header__logo {
  height: 52px;
  width: auto;
}

/* line 132, app/assets/stylesheets/application.scss */
.site-header__wordmark {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #5d5d5d;
}

/* line 139, app/assets/stylesheets/application.scss */
.nav__list {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* line 146, app/assets/stylesheets/application.scss */
.nav__link {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #5d5d5d;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}

/* line 154, app/assets/stylesheets/application.scss */
.nav__link:hover {
  text-decoration: none;
}

/* line 155, app/assets/stylesheets/application.scss */
.nav__link--active {
  border-bottom-color: #5d5d5d;
}

/* line 158, app/assets/stylesheets/application.scss */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* line 170, app/assets/stylesheets/application.scss */
.nav__toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #5d5d5d;
  border-radius: 2px;
  margin: 0 auto;
}

/* line 180, app/assets/stylesheets/application.scss */
.mobile-nav {
  position: fixed;
  top: 84px;
  right: 0;
  width: min(320px, 85vw);
  height: calc(100vh - 84px);
  background: #ffffff;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.18);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}

/* line 192, app/assets/stylesheets/application.scss */
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 193, app/assets/stylesheets/application.scss */
.mobile-nav__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 194, app/assets/stylesheets/application.scss */
.mobile-nav__link {
  display: block;
  padding: 16px 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #5d5d5d;
}

/* line 202, app/assets/stylesheets/application.scss */
.mobile-nav__backdrop {
  position: fixed;
  inset: 84px 0 0 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
}

/* line 212, app/assets/stylesheets/application.scss */
.hero {
  position: relative;
  width: 100%;
  height: min(70vh, 620px);
  overflow: hidden;
  background: #2b3b40;
}

/* line 219, app/assets/stylesheets/application.scss */
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 226, app/assets/stylesheets/application.scss */
.hero__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
}

/* line 238, app/assets/stylesheets/application.scss */
.hero__title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(28px, 5vw, 42px);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* line 246, app/assets/stylesheets/application.scss */
.hero__tagline {
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 12px 0 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* line 256, app/assets/stylesheets/application.scss */
.grid {
  display: grid;
  gap: 32px;
}

/* line 259, app/assets/stylesheets/application.scss */
.grid--services {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  /* line 260, app/assets/stylesheets/application.scss */
  .grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 261, app/assets/stylesheets/application.scss */
  .grid--services {
    grid-template-columns: 1fr;
  }
}

/* line 264, app/assets/stylesheets/application.scss */
.grid--team {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

@media (max-width: 768px) {
  /* line 265, app/assets/stylesheets/application.scss */
  .grid--team {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 266, app/assets/stylesheets/application.scss */
  .grid--team {
    grid-template-columns: 1fr;
  }
}

/* line 269, app/assets/stylesheets/application.scss */
.service-card {
  position: relative;
  text-align: center;
  padding: 24px 16px 40px;
  transition: background 0.6s ease;
}

/* line 275, app/assets/stylesheets/application.scss */
.service-card--interactive {
  cursor: pointer;
}

/* line 276, app/assets/stylesheets/application.scss */
.service-card--interactive:hover {
  background: #719cff;
}

/* line 279, app/assets/stylesheets/application.scss */
.service-card--interactive:hover .service-card__title,
.service-card--interactive:hover .service-card__blurb,
.service-card--interactive:hover .service-card__icon,
.service-card--interactive:hover .service-card__icon i {
  color: #ffffff;
}

/* line 285, app/assets/stylesheets/application.scss */
.service-card--interactive:hover .service-card__icon img {
  filter: brightness(1.5);
}

/* line 288, app/assets/stylesheets/application.scss */
.service-card--interactive:hover .service-card__learn {
  visibility: visible;
  opacity: 0.4;
  right: 16px;
}

/* line 294, app/assets/stylesheets/application.scss */
.service-card__hit {
  appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* line 308, app/assets/stylesheets/application.scss */
.service-card__hit:focus-visible {
  outline: 2px solid #719cff;
  outline-offset: 4px;
}

/* line 313, app/assets/stylesheets/application.scss */
.service-card__learn {
  position: absolute;
  top: 18px;
  right: 30%;
  z-index: 2;
  font-size: 13px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, right 0.9s ease;
}

/* line 326, app/assets/stylesheets/application.scss */
.service-card__icon {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #b0bec5;
  font-size: 35px;
  transition: color 0.9s ease;
}

/* line 337, app/assets/stylesheets/application.scss */
.service-card__icon img {
  max-width: 35px;
  height: auto;
  transition: filter 0.9s ease;
}

/* line 343, app/assets/stylesheets/application.scss */
.service-card__title {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #5d5d5d;
  font-size: 18px;
  text-transform: uppercase;
  margin: 20px 0;
  min-height: 48px;
  transition: color 0.3s ease;
}

/* line 353, app/assets/stylesheets/application.scss */
.service-card__blurb {
  margin: 0 0 12px;
  padding-top: 4px;
  font-size: 14px;
  line-height: 21px;
  color: #161d21;
  transition: color 0.3s ease;
}

/* line 363, app/assets/stylesheets/application.scss */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1045;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #e1eaff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 375, app/assets/stylesheets/application.scss */
.service-modal[hidden] {
  display: none;
}

/* line 377, app/assets/stylesheets/application.scss */
.service-modal__frame {
  position: relative;
  width: 100%;
  max-width: 1650px;
  margin: auto;
  padding: 0 40px;
  background: #e1eaff;
}

/* line 386, app/assets/stylesheets/application.scss */
.service-modal__panel {
  display: flex;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 42px 80px -28px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

/* line 394, app/assets/stylesheets/application.scss */
.service-modal__left,
.service-modal__right {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  text-align: left;
  overflow: hidden;
}

/* line 403, app/assets/stylesheets/application.scss */
.service-modal__left {
  padding: 80px 40px 80px 70px;
  opacity: 0.9;
  color: #ffffff;
}

/* line 408, app/assets/stylesheets/application.scss */
.service-modal__left::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 300%;
  background: #03458c;
  z-index: 0;
}

/* line 419, app/assets/stylesheets/application.scss */
.service-modal__right {
  padding: 80px 40px;
  background: #f6f6f6;
  color: #2d4055;
}

/* line 425, app/assets/stylesheets/application.scss */
.service-modal__title {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  color: #97c8ee;
  margin: 0 0 30px;
  line-height: 1.25;
  padding-bottom: 5px;
}

/* line 438, app/assets/stylesheets/application.scss */
.service-modal__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #e5edff;
}

/* line 448, app/assets/stylesheets/application.scss */
.service-modal__icon {
  display: block;
  margin: 0 0 18px;
  font-size: 40px;
  color: #a1cdef;
}

/* line 455, app/assets/stylesheets/application.scss */
.service-modal__rich {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

/* line 462, app/assets/stylesheets/application.scss */
.service-modal__rich--left {
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
}

/* line 467, app/assets/stylesheets/application.scss */
.service-modal__rich--left p,
.service-modal__rich--left li {
  color: #ffffff;
}

/* line 471, app/assets/stylesheets/application.scss */
.service-modal__rich--left a {
  color: #97c8ee;
  font-weight: 700;
}

/* line 476, app/assets/stylesheets/application.scss */
.service-modal__rich--right {
  font-size: 16px;
  line-height: 24px;
  color: #2d4055;
  opacity: 0.8;
}

/* line 482, app/assets/stylesheets/application.scss */
.service-modal__rich--right h3,
.service-modal__rich--right h4 {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #5d5d5d;
  font-size: 23px;
  line-height: 30px;
  margin: 0 0 20px;
  text-transform: none;
  opacity: 0.8;
}

/* line 493, app/assets/stylesheets/application.scss */
.service-modal__rich--right p {
  margin: 0 0 1em;
  color: #2d4055;
}

/* line 494, app/assets/stylesheets/application.scss */
.service-modal__rich--right ul {
  padding-left: 22px;
  margin: 0 0 1em;
}

/* line 495, app/assets/stylesheets/application.scss */
.service-modal__rich--right li {
  margin-top: 14px;
  font-weight: 400;
  font-size: 16px;
}

/* line 496, app/assets/stylesheets/application.scss */
.service-modal__rich--right a {
  font-weight: 700;
  color: #03458c;
}

/* line 498, app/assets/stylesheets/application.scss */
.service-modal__close {
  position: absolute;
  top: 8px;
  right: 16px;
  z-index: 2;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 4px 8px;
  font-size: 36px;
  line-height: 1;
  color: #333;
  cursor: pointer;
}

/* line 512, app/assets/stylesheets/application.scss */
.service-modal__close:hover {
  color: #000;
}

@media (max-width: 768px) {
  /* line 515, app/assets/stylesheets/application.scss */
  .service-modal__frame {
    padding: 0 12px;
  }
  /* line 516, app/assets/stylesheets/application.scss */
  .service-modal__panel {
    flex-direction: column;
  }
  /* line 517, app/assets/stylesheets/application.scss */
  .service-modal__left,
.service-modal__right {
    flex: 1 1 auto;
    padding: 40px 24px;
  }
  /* line 522, app/assets/stylesheets/application.scss */
  .service-modal__icon {
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 30px;
    vertical-align: middle;
  }
}

/* line 531, app/assets/stylesheets/application.scss */
.team-card {
  text-align: center;
}

/* line 532, app/assets/stylesheets/application.scss */
.team-card__photo {
  width: 100%;
  max-width: 263px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 14px;
  border-radius: 2px;
}

/* line 540, app/assets/stylesheets/application.scss */
.team-card__photo--placeholder {
  background: #e6e8e8;
  display: block;
}

/* line 541, app/assets/stylesheets/application.scss */
.team-card__name {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
}

/* line 547, app/assets/stylesheets/application.scss */
.team-card__name a {
  color: #5d5d5d;
}

/* line 548, app/assets/stylesheets/application.scss */
.team-card__role {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* line 553, app/assets/stylesheets/application.scss */
.divider {
  width: 100%;
  height: clamp(220px, 30vw, 420px);
  overflow: hidden;
}

/* line 558, app/assets/stylesheets/application.scss */
.divider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 560, app/assets/stylesheets/application.scss */
.section--social {
  text-align: center;
}

/* line 561, app/assets/stylesheets/application.scss */
.social__contact {
  margin-top: 20px;
}

/* line 566, app/assets/stylesheets/application.scss */
.section--bio {
  padding-block: 56px;
}

/* line 567, app/assets/stylesheets/application.scss */
.bio__eyebrow {
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  letter-spacing: 0.08em;
  color: #8b8c8c;
  margin: 0 0 4px;
}

/* line 574, app/assets/stylesheets/application.scss */
.bio__name {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #5d5d5d;
  font-size: clamp(30px, 5vw, 44px);
  margin: 0 0 24px;
}

/* line 581, app/assets/stylesheets/application.scss */
.bio__header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* line 582, app/assets/stylesheets/application.scss */
.bio__photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
}

/* line 583, app/assets/stylesheets/application.scss */
.bio__role {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #5d5d5d;
  font-size: 20px;
  margin: 0;
}

/* line 584, app/assets/stylesheets/application.scss */
.bio__credentials {
  margin: 6px 0 0;
  font-style: italic;
}

/* line 585, app/assets/stylesheets/application.scss */
.bio__scholar {
  margin-top: 20px;
  font-weight: 700;
}

/* line 586, app/assets/stylesheets/application.scss */
.bio__contacts {
  margin-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

/* line 587, app/assets/stylesheets/application.scss */
.bio__contacts-title {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  color: #5d5d5d;
  font-size: 20px;
}

/* line 588, app/assets/stylesheets/application.scss */
.bio__social {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

/* line 589, app/assets/stylesheets/application.scss */
.bio__back {
  margin-top: 32px;
}

/* line 594, app/assets/stylesheets/application.scss */
.site-footer {
  background: #0c1a1e;
  color: #6c6d6d;
  padding-block: 64px;
}

/* line 599, app/assets/stylesheets/application.scss */
.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* line 600, app/assets/stylesheets/application.scss */
.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  /* line 606, app/assets/stylesheets/application.scss */
  .offices {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

/* line 607, app/assets/stylesheets/application.scss */
.office__country {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 10px;
}

/* line 615, app/assets/stylesheets/application.scss */
.office p {
  margin: 4px 0;
  font-size: 15px;
}

/* line 616, app/assets/stylesheets/application.scss */
.office a {
  color: #6c6d6d;
}

/* line 617, app/assets/stylesheets/application.scss */
.site-footer__copyright {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: rgba(108, 109, 109, 0.8);
}

@media (max-width: 768px) {
  /* line 628, app/assets/stylesheets/application.scss */
  .nav {
    display: none;
  }
  /* line 629, app/assets/stylesheets/application.scss */
  .nav__toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  /* line 632, app/assets/stylesheets/application.scss */
  .mobile-nav, .mobile-nav__backdrop {
    display: none !important;
  }
}
