:root {
  --navy: #003b4a;
  --gold: #b3a07c;
  --gray: #d9d9d9;
  --white: #ffffff;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  line-height: 24px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.site-header .container,
.about-header .container,
.services-header .container,
.contact-header .container {
  width: min(1720px, calc(100% - 64px));
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
}

.brand {
  flex-shrink: 0;
}

.logo-img {
  width: 143px;
  height: 30px;
  object-fit: contain;
}

.logo-img--light {
  filter: none;
}

.logo-img--dark {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav .mobile-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav .mobile-nav-extra {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  width: 23px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
}

.site-nav a,
.footer-nav a {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--white);
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.25s ease;
}

.site-nav a:hover {
  border-color: var(--white);
}

.site-header .site-nav .is-active,
.site-header .site-nav a[aria-current="page"] {
  border-bottom-color: var(--white);
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  padding-bottom: 8px;
  transition: color 0.25s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 16px 35px;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 864px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 623px;
  margin-left: 120px;
  padding-top: 192px;
  padding-bottom: 70px;
}

.hero h1 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 62px;
}

.hero p {
  margin: 130px 0 0;
  max-width: 451px;
  border-top: 1px solid var(--white);
  padding-top: 22px;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 159px;
  height: 159px;
  border: 1px solid;
  border-radius: 79.5px;
  padding: 51px;
}

.round-icon img {
  width: auto;
  height: auto;
  max-width: 57px;
  max-height: 56px;
  object-fit: contain;
}

.round-icon--hero {
  margin-top: 28px;
  border-color: var(--gold);
}

.round-icon--primary {
  border-color: var(--navy);
}

.about-intro-icon {
  grid-area: 1 / 1;
  transition: opacity 0.3s ease;
}

.about-intro-icon--hover {
  opacity: 0;
}

.about-left .round-icon--primary {
  transition: border-color 0.3s ease;
}

.about-left .round-icon--primary:hover {
  border-color: var(--gold);
}

.about-left .round-icon--primary:hover .about-intro-icon--default {
  opacity: 0;
}

.about-left .round-icon--primary:hover .about-intro-icon--hover {
  opacity: 1;
}

.section {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 548px minmax(0, 614px);
  justify-content: space-between;
  gap: 56px;
}

.about-left {
  position: sticky;
  top: 48px;
  align-self: start;
}

.about-left h2 {
  margin: 0 0 52px;
  font-family: "Titillium Web", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  color: var(--navy);
}

.about-right p {
  margin: 0 0 16px;
}

.about-right .about-highlight {
  margin-bottom: 24px;
  font-weight: 700;
}

.about-photo {
  margin: 28px 0 24px;
  width: 100%;
  aspect-ratio: 628 / 418;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta {
  align-self: flex-start;
}

.pillars {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.pillar {
  min-height: 216px;
  padding-right: 12px;
}

.pillar:not(:first-child) {
  border-left: 1px solid rgba(0, 59, 74, 0.5);
  padding-left: 34px;
}

.pillar h3 {
  margin: 0 0 16px;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}

.pillar p {
  margin: 0;
}

.services {
  padding-top: 20px;
}

.section-kicker {
  margin: 0;
  max-width: 735px;
}

.section-title {
  margin: 6px 0 29px;
  font-family: "Titillium Web", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 41px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 475px;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  padding: 50px;
}

.service-icon {
  width: auto;
  height: auto;
  max-width: 90px;
  max-height: 90px;
  align-self: flex-start;
  flex-shrink: 0;
  object-fit: contain;
}

.service-card h4 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.service-card p {
  margin: 0;
}

.solutions-wrap {
  background: var(--gray);
  padding: 70px 39px 10px;
}

.solutions-shell {
  max-width: 1362px;
  margin: 0 auto;
}

.solutions-card {
  border-radius: 5px;
  background: var(--gold);
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  grid-template-areas:
    "symbol title"
    "symbol lists";
  column-gap: 222px;
  row-gap: 105px;
  padding: 110px 25px;
}

.solutions-intro {
  display: contents;
}

.solutions-intro h2 {
  grid-area: title;
  margin: 0;
  max-width: 501px;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 62px;
  color: var(--white);
}

.solutions-symbol {
  grid-area: symbol;
  width: 291px;
  height: 164px;
  display: grid;
  place-items: center;
  align-self: center;
}

.solutions-symbol .symbol-group {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.solutions-symbol .symbol-group--hover {
  opacity: 0;
}

.solutions-symbol:hover .symbol-group--default {
  opacity: 0;
}

.solutions-symbol:hover .symbol-group--hover {
  opacity: 1;
}

.solutions-lists {
  grid-area: lists;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 378.833px));
  justify-content: space-between;
  gap: 42px;
}

.solutions-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  row-gap: 46px;
}

.solutions-lists li {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0;
  margin: 0;
  transition: border-color 0.35s ease;
}

.solutions-lists li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.35s ease;
}

.solutions-lists li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  color: var(--white);
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 72px 0 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.solutions-lists li a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: var(--navy);
  opacity: 0;
  transform: translateX(22px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.solutions-lists li a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 23px;
  background: url("./assets/Group 2.png") center / contain no-repeat;
  opacity: 0;
  transform: translate(22px, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.solutions-lists li:hover::after,
.solutions-lists li:focus-within::after {
  width: 100%;
}

.solutions-lists li:hover,
.solutions-lists li:focus-within {
  border-bottom-color: var(--navy);
}

.solutions-lists li:hover a,
.solutions-lists li a:focus-visible {
  color: var(--navy);
}

.solutions-lists li:hover a::before,
.solutions-lists li a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.solutions-lists li:hover a::after,
.solutions-lists li a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.contact-cta {
  background: var(--gray);
  padding: 110px 110px 60px;
}

.contact-row {
  width: min(1219px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 286px;
}

.contact-row h3 {
  margin: 0;
  max-width: 750px;
  font-family: "Titillium Web", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  transition: color 0.3s ease;
}

.contact-row .round-icon {
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-cta-icon {
  grid-area: 1 / 1;
  transition: opacity 0.3s ease;
}

.contact-cta-icon--hover {
  opacity: 0;
}

.contact-cta:hover .contact-row h3,
.contact-cta:focus-within .contact-row h3 {
  color: var(--gold);
}

.contact-cta:hover .contact-row .round-icon,
.contact-cta:focus-within .contact-row .round-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-cta:hover .contact-cta-icon--default,
.contact-cta:focus-within .contact-cta-icon--default {
  opacity: 0;
}

.contact-cta:hover .contact-cta-icon--hover,
.contact-cta:focus-within .contact-cta-icon--hover {
  opacity: 1;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 25px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}

.footer-right {
  flex: 1;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(9vw, 153px);
}

.footer-address {
  margin: 26px 0 0;
  text-align: right;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--white);
  margin-top: 60px;
  padding: 10px 10px 25px;
  transition: border-color 0.3s ease;
}

.footer-cta h2 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(48px, 8.5vw, 96px);
  font-weight: 700;
  line-height: 0.83;
  color: var(--white);
  transition: color 0.3s ease;
}

.round-icon--footer {
  width: 113px;
  height: 112px;
  border-color: var(--white);
  padding: 28px;
  transition: border-color 0.3s ease;
}

.footer-cta-logo {
  grid-area: 1 / 1;
  transition: opacity 0.3s ease;
}

.footer-cta-logo--hover {
  opacity: 0;
}

.footer-cta:hover,
.footer-cta:focus-within {
  border-bottom-color: var(--gold);
}

.footer-cta:hover h2,
.footer-cta:focus-within h2 {
  color: var(--gold);
}

.footer-cta:hover .round-icon--footer,
.footer-cta:focus-within .round-icon--footer {
  border-color: var(--gold);
}

.footer-cta:hover .footer-cta-logo--default,
.footer-cta:focus-within .footer-cta-logo--default {
  opacity: 0;
}

.footer-cta:hover .footer-cta-logo--hover,
.footer-cta:focus-within .footer-cta-logo--hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom a img {
  width: 9px;
  height: 1px;
}

@media (max-width: 1120px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-left {
    position: static;
  }

  .about-left .round-icon {
    margin-bottom: 24px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pillar {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(0, 59, 74, 0.5);
    padding: 22px 0 0;
  }

  .pillar:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .solutions-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "symbol"
      "lists";
    column-gap: 0;
    row-gap: 44px;
    padding: 56px 24px;
  }

  .solutions-lists {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
  }

  .contact-cta {
    padding: 70px 24px 60px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    border-bottom: 0;
    background: rgba(0, 59, 74, 0.95);
  }

  .site-header .container,
  .about-header .container,
  .services-header .container,
  .contact-header .container {
    width: min(var(--max-width), calc(100% - 48px));
  }

  .nav-row {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 72px;
    margin-left: 0;
  }

  .hero h1 {
    line-height: 1.15;
  }

  .hero p {
    margin-top: 52px;
  }

  .round-icon {
    width: 130px;
    height: 130px;
    padding: 35px;
  }

  .solutions-symbol {
    width: 230px;
    height: 130px;
  }

  .solutions-lists {
    gap: 22px;
  }

  .footer-top,
  .footer-nav,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-address {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }

  .btn {
    width: 100%;
  }

  .section,
  .solutions-wrap,
  .site-footer {
    padding-top: 48px;
  }

  .service-card {
    padding: 30px 24px;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .home-page .container {
    width: calc(100% - 28px);
  }

  .home-page .btn {
    width: auto;
  }

  .home-page .site-header {
    position: relative;
    z-index: 50;
    border-bottom: 0;
    background: var(--white);
  }

  .home-page .site-header .container {
    width: calc(100% - 28px);
  }

  .home-page .nav-row {
    position: relative;
    min-height: 78px;
    padding: 10px 0;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .home-page .brand {
    overflow: hidden;
    width: 143px;
  }

  .home-page .site-header .logo-img--light {
    display: none;
  }

  .home-page .site-header .logo-img--dark {
    display: block;
  }

  .home-page .site-footer .logo-img--light {
    display: block;
  }

  .home-page .mobile-menu-toggle {
    display: flex;
    height: 12px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 51;
  }

  .home-page .mobile-menu-toggle span {
    background: #878787;
  }

  .home-page .mobile-menu-toggle span:nth-child(2) {
    display: none;
  }

  .home-page .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .home-page .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .home-page .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    border: 0;
    padding: 0;
    background: rgba(20, 22, 26, 0.62);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .home-page .mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .home-page .site-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 45;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin: 0;
    padding: 91px 14px 10px;
    width: 237px;
    min-height: 100dvh;
    background: #d9d9d9;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-24px);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, visibility 0.24s ease;
  }

  .home-page .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .home-page .site-nav .mobile-nav-links {
    width: 210px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .home-page .site-nav a {
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--navy);
    border-bottom: 0;
  }

  .home-page .site-nav a::after {
    content: "";
    width: 5px;
    height: 11px;
    background: url("./assets/mobile-menu-arrow.svg") center / contain no-repeat;
    flex-shrink: 0;
  }

  .home-page .site-nav .mobile-nav-extra {
    width: 210px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .home-page .mobile-nav-address {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
    line-height: 24px;
  }

  .home-page .site-nav .mobile-nav-cta {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: none;
  }

  .home-page .site-nav .mobile-nav-cta:hover,
  .home-page .site-nav .mobile-nav-cta:focus-visible {
    background: var(--gold);
    border-color: transparent;
    color: var(--navy);
  }

  .home-page .site-nav .mobile-nav-cta::after {
    content: none;
  }

  .home-page .nav-row > .btn {
    display: none;
  }

  .home-page .hero {
    min-height: 773px;
  }

  .home-page .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .home-page .hero-content {
    display: flex;
    flex-direction: column;
    margin-left: 59px;
    max-width: 275px;
    width: 275px;
    padding-top: 117px;
    padding-bottom: 0;
  }

  .home-page .hero p {
    order: 1;
    margin: 0;
    max-width: 261px;
    border-top: 0;
    padding-top: 0;
  }

  .home-page .hero h1 {
    order: 2;
    margin-top: 40px;
    font-size: 42px;
    line-height: 45px;
  }

  .home-page .hero .round-icon--hero {
    order: 3;
    margin-top: 16px;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    padding: 0;
  }

.home-page .hero .round-icon--hero img {
  width: auto;
  height: auto;
  max-width: 31px;
  max-height: 31px;
}

  .home-page .section.about {
    padding: 50px 0 0;
  }

  .home-page .about-grid {
    display: block;
  }

  .home-page .about-left {
    margin-bottom: 30px;
  }

  .home-page .about-left h2 {
    margin: 0 0 40px;
    font-size: 38px;
    line-height: 42px;
  }

  .home-page .about-left .round-icon {
    margin: 0;
    width: 159px;
    height: 159px;
    padding: 51px;
  }

.home-page .about-left .round-icon img {
  width: auto;
  height: auto;
  max-width: 57px;
  max-height: 56px;
}

  .home-page .about-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .home-page .about-right p,
  .home-page .about-right .about-highlight {
    margin: 0;
  }

  .home-page .about-cta {
    width: auto;
    min-height: 50px;
    padding: 16px 35px;
    line-height: 1;
  }

  .home-page .about-photo {
    margin: 0;
  }

  .home-page .pillars {
    margin-top: 10px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .home-page .pillar,
  .home-page .pillar:not(:first-child) {
    min-height: auto;
    border: 0;
    padding: 0;
  }

  .home-page .pillar h3 {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 35px;
  }

  .home-page .services {
    padding: 10px 0 50px;
  }

  .home-page .section-kicker {
    margin: 0;
  }

  .home-page .section-title {
    margin: 6px 0 29px;
    font-size: 42px;
    line-height: 45px;
  }

  .home-page .services-grid {
    gap: 16px;
  }

  .home-page .service-card {
    min-height: 475px;
    padding: 50px;
    gap: 31px;
  }

  .home-page .services-grid .service-card:nth-child(2),
  .home-page .services-grid .service-card:nth-child(3) {
    min-height: 479px;
  }

  .home-page .solutions-wrap {
    padding: 50px 14px;
    background: var(--gold);
    border-radius: 5px;
  }

  .home-page .solutions-shell {
    max-width: none;
    width: 100%;
  }

  .home-page .solutions-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .home-page .solutions-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
  }

  .home-page .solutions-intro h2 {
    max-width: none;
    width: 100%;
    font-size: 52px;
    line-height: 62px;
  }

  .home-page .solutions-symbol {
    width: 290px;
    height: 164px;
  }

  .home-page .solutions-lists {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: 100%;
  }

  .home-page .solutions-lists ul {
    row-gap: 46px;
  }

  .home-page .solutions-lists li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  }

  .home-page .solutions-lists li::after,
  .home-page .solutions-lists li a::before,
  .home-page .solutions-lists li a::after {
    content: none;
  }

  .home-page .solutions-lists li a {
    min-height: 43px;
    padding: 0;
    align-items: flex-start;
    color: var(--white);
    font-size: 15px;
    line-height: 1.2;
  }

  .home-page .solutions-lists li:hover,
  .home-page .solutions-lists li:focus-within {
    border-bottom-color: rgba(255, 255, 255, 0.85);
  }

  .home-page .solutions-lists li:hover a,
  .home-page .solutions-lists li a:focus-visible {
    color: var(--white);
  }

  .home-page .contact-cta {
    display: none;
  }

  .home-page .site-footer {
    padding: 60px 14px 25px;
  }

  .home-page .site-footer .container {
    width: 100%;
  }

  .home-page .footer-top {
    gap: 40px;
  }

  .home-page .footer-right {
    flex: none;
    width: 100%;
  }

  .home-page .footer-nav {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .home-page .footer-nav a {
    padding-bottom: 0;
    color: var(--white);
  }

  .home-page .footer-nav a::after {
    content: none;
  }

  .home-page .footer-nav a:hover,
  .home-page .footer-nav a:focus-visible {
    color: var(--white);
  }

  .home-page .footer-nav a:hover::after,
  .home-page .footer-nav a:focus-visible::after {
    content: none;
  }

  .home-page .footer-address {
    margin: 23px 0 0;
    text-align: left;
  }

  .home-page .footer-cta {
    margin-top: 60px;
    gap: 40px;
    padding: 10px 10px 25px;
    align-items: flex-start;
  }

  .home-page .footer-cta h2 {
    width: 100%;
    font-size: 32px;
    line-height: 35px;
  }

  .home-page .round-icon--footer {
    width: 113px;
    height: 112px;
    padding: 28px;
  }

  .home-page .footer-bottom {
    margin-top: 40px;
    gap: 40px;
    align-items: flex-start;
  }

  .home-page .footer-bottom p {
    width: 100%;
  }

  .home-page .footer-bottom a {
    width: 198px;
    gap: 1px;
  }
}
