:root {
  --navy: #002554;
  --navy-2: #002454;
  --teal: #00cc99;
  --teal-2: #10c2a2;
  --gray: #f6f6f6;
  --footer: #f7f7f7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 22px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--gray);
  color: var(--navy);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 0.6rem;
}
h1:not(.site-title):before,
h2:before {
  content: '';
  display: block;
  height: 0;
  margin: 0;
}
p {
  margin: 0 0 1rem;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Header / Hero */
#masthead.site-header.featured-image {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-shadow: none;
  background-color: #002554;
  /* background-image: url('../img/banner-about.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}
#masthead:after {
  background: transparent;
}

#mysticky-nav {
  position: relative;
  z-index: 30;
  width: 100%;
  padding: 2.6rem 0 0.4rem;
}
#mysticky-nav.wrapfixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #002554;
  box-shadow: none;
  z-index: 10000;
  padding: 1.2rem 0 1.2rem;
}

.site-branding-container {
  position: relative;
  width: 1110px;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-side {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.nav-side.right {
  justify-content: flex-end;
  gap: 2rem;
}
.nav-side > li {
  position: relative;
  flex-shrink: 0;
}

.site-title {
  position: static;
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
}
.site-title img {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
}

/* Eyebrow */
#eyebrow-nav {
  position: absolute;
  top: -1.85rem;
  right: 0;
  z-index: 40;
}
.eyebrow-menu {
  display: flex;
  align-items: center;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.eyebrow-menu > li {
  margin-left: 2rem;
  position: relative;
}
.eyebrow-menu > li > a {
  opacity: 0.6;
  color: #fff;
}
.eyebrow-menu > li > a:hover,
.eyebrow-menu > li.current-menu-item > a {
  opacity: 1;
}
.eyebrow-menu .login > a {
  padding-bottom: 0.85rem;
  display: inline-block;
}

/* Primary nav */
.main-navigation {
  display: block;
  white-space: nowrap;
  width: 100%;
}
.main-navigation .nav-side > li > a,
.main-navigation .nav-side > li > button,
.main-navigation .main-menu > li > a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.02em;
  /* padding-bottom: 0.85rem; */
  display: inline-block;
}
.main-navigation .nav-side > li > button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.main-navigation .nav-side > li > a:hover,
.main-navigation .nav-side > li > button:hover {
  opacity: 0.6;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}
.lang-current:hover {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.7);
}
.lang-caret {
  font-size: 10px;
  line-height: 1;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1003;
  min-width: 150px;
  padding: 6px 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #002554;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-dropdown a:hover {
  background: #f0f4f8;
}
.lang-dropdown a.active {
  color: #0072ce;
}

/* Dropdown */
.nav-sub {
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 6px);
  left: -99999px;
  z-index: 1003;
  opacity: 0;
  white-space: nowrap;
  text-align: left;
  min-width: 210px;
  padding-top: 12px;
  background: transparent;
  transform: translate3d(0, 8px, 0);
  transition:
    left 0s 0.2s linear,
    transform 0s 0.2s linear,
    opacity 0.2s ease-in-out;
}
.nav-primary li:hover > .nav-sub,
.nav-secondary li:hover > .nav-sub,
.eyebrow-menu li:hover > .nav-sub,
.nav-side > li:hover > .nav-sub {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  transition:
    left 0s linear,
    transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}
.nav-sub-top {
  display: none;
}
.nav-sub-body {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 8px 0 10px;
  min-width: 210px;
}
.nav-sub-body::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px 0 0 0;
}
.nav-primary .nav-sub a,
.nav-secondary .nav-sub a,
.eyebrow-menu .nav-sub a {
  display: block;
  color: #002454;
  padding: 8px 16px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
}
.nav-primary .nav-sub a:hover,
.eyebrow-menu .nav-sub a:hover {
  background: #f4f7fb;
}
.eyebrow-menu .nav-sub {
  top: calc(100% - 4px);
  min-width: 170px;
}
.eyebrow-menu .nav-sub-body {
  min-width: 170px;
}

/* Hero copy */
.site-featured-image {
  position: relative;
  z-index: 9;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.site-header.featured-image .site-featured-image .entry-header {
  width: 24rem;
  max-width: calc(100% - 3rem);
  margin: 0 0 7vh;
  margin-left: max(2rem, calc((100vw - 1110px) / 2));
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  color: #fff !important;
  flex-shrink: 0;
}
.hero-large-logo {
  margin-left: auto;
  margin-right: max(2rem, calc((100vw - 1110px) / 2));
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-large-logo img {
  width: 420px;
  height: 374px;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.entry-header * {
  color: #fff !important;
}
.entry-header a.header-cta {
  color: var(--teal) !important;
}
h1.entry-title {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}
.entry-excerpt h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.entry-excerpt p {
  font-size: 0.7rem;
  line-height: 1.55;
  max-width: 22rem;
  margin-bottom: 1.1rem;
}
a.header-cta,
button.header-cta {
  display: inline-block;
  border: solid 2px var(--teal);
  background: transparent;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
}
a.header-cta:hover,
button.header-cta:hover {
  background: #0073aa;
  border-color: #0073aa;
  color: #fff !important;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  width: 32px;
  height: 16px;
  margin-left: -16px;
  z-index: 9;
}
.bounce {
  animation: bounce 2s infinite;
  display: block;
  width: 32px;
  height: 16px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-7px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Content */
.site-content {
  overflow: hidden;
}
.entry .entry-content {
  width: 1110px !important;
  margin: auto !important;
  padding: 0 !important;
  max-width: 100% !important;
}
.entry-content h3,
.entry-content h3.wp-block-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}
.entry-content h4,
.entry-content h4.wp-block-heading {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
  line-height: 1.45;
}
.entry-content h4 strong {
  font-weight: 700;
}
.wp-block-image img,
.wp-block-image figure img,
figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* Caxton */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.absolute--fill {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.wp-block-caxton-grid {
  position: relative;
}
.caxton-columns,
.caxton-grid-block {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  align-items: start;
}
.grid-gap-wider {
  gap: 8px 28px;
}
.vw-100-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.vw-100-bg > .caxton-grid-block {
  width: 1110px;
  max-width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}

.culture-photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.wp-block-video {
  margin: 0 auto 20px auto;
  max-width: 1100px;
}
.wp-block-video video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.team-row {
  align-items: center;
}
.team-icon {
  width: 118px;
  height: auto;
  margin-left: auto;
  margin-right: 0.4rem;
  display: block;
}
.team-icon.sm {
  width: 112px;
}
.team-icon.md {
  width: 126px;
}
.team-icon.lg {
  width: 132px;
}

/* Global teams (dark navy section) */
.global-team h4,
.global-team h4.wp-block-heading {
  color: var(--teal);
}
.global-team h4 strong {
  font-weight: 700;
}
.global-team p {
  color: #fff;
}
.global-team .team-icon {
  margin-left: auto;
  margin-right: 0.4rem;
}
.global-team-more {
  color: var(--teal);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

/* Global teams responsive grid — desktop: 1 per row; mobile: paired groups with white gaps */
.global-teams-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  background: #002554;
  display: grid;
  grid-template-columns: 1fr;
}
.global-teams-wrap > .global-team-group {
  position: relative;
}
.global-teams-wrap > .global-team-group > .wp-block-caxton-grid {
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
}
.global-teams-wrap > .global-team-group > .wp-block-caxton-grid > .absolute--fill {
  display: none;
}

.interns-photo {
  width: 427px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  display: block;
}

/* Client Solutions */
.client-solutions .caxton-grid-block {
  align-items: center;
  padding: 80px 0 !important;
}
.client-solutions-text {
  padding: 5px;
}
.client-solutions-text .eyebrow {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.7rem;
}
.client-solutions-text h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.8rem;
}
.client-solutions-text p {
  max-width: 28rem;
  margin: 0 0 1.2rem;
}
.client-solutions-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-solutions-image figure {
  margin: 0;
  width: 100%;
  max-width: 520px;
}
.client-solutions-image img {
  display: block;
  width: 100%;
  height: auto;
}

#job-postings {
  scroll-margin-top: 80px;
}
#grnhse_app {
  min-height: 280px;
  padding: 10px 0 40px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--footer);
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.8rem;
}
.site-footer a {
  color: var(--footer);
}
#colophon .widget-area {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
}
.footer-logo {
  width: 10rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.footer-logo img {
  max-width: 80%;
  height: auto;
}
#menu-footer-nav-menu {
  display: flex;
  justify-content: space-evenly;
  width: 760px;
  max-width: 100%;
}
#menu-footer-nav-menu > li {
  width: 7.2rem;
  margin: 0;
}
#menu-footer-nav-menu > li:nth-child(2),
#menu-footer-nav-menu > li:nth-child(3) {
  margin-right: 3rem;
}
#menu-footer-nav-menu > li > a {
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.45rem;
}
#menu-footer-nav-menu .sub-menu a {
  display: block;
  color: var(--footer);
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 0.95rem;
}
#menu-footer-nav-menu .sub-menu a:hover {
  opacity: 0.7;
}

#colophon .site-info {
  color: var(--footer);
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem 1.6rem;
  align-items: center;
  font-size: 0.55rem;
}
#colophon .site-info .copyright {
  width: 10rem;
  flex-shrink: 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.footer-menu li {
  margin-right: 0;
  display: inline-flex;
  width: 7rem;
}
.footer-menu li:nth-child(2),
.footer-menu li:nth-child(3) {
  margin-right: 3rem;
}
.footer-menu a {
  font-size: 0.55rem;
  opacity: 0.9;
}
.footer-menu a:hover {
  opacity: 1;
}
.social-navigation {
  margin-left: auto;
}
.social-navigation ul {
  display: flex;
  gap: 0.7rem;
}
.social-navigation a {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.social-navigation a:hover {
  opacity: 1;
}
.social-navigation svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Simple footer */
.footer-simple {
  padding: 3rem 0;
}
.footer-simple .widget-area,
.footer-simple .site-info {
  display: none;
}
.footer-simple-inner {
  width: 1110px;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-simple-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-simple-logo {
  display: block;
  line-height: 0;
}
.footer-simple-logo img {
  display: block;
  height: 56px;
  width: auto;
}
.footer-simple-icon {
  display: block;
  height: 150px;
  width: auto;
}
.footer-simple-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}
.footer-simple-right a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.footer-simple-right a:hover {
  opacity: 0.8;
}
/* Social links */
.social-links-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-links-menu .menu-item {
  margin: 0;
}
.social-links-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.social-links-menu .svg-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: opacity 0.2s ease;
}
.social-links-menu a:hover .svg-icon {
  opacity: 0.8;
}

a#scroll-to-top {
  background: url('../img/scroll-arrow.svg') no-repeat center center;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 13.7rem;
  bottom: 155px;
  text-indent: -9999px;
  font-size: 0;
  cursor: pointer;
  outline: 0;
  transform: rotate(180deg);
  z-index: 50;
  display: none;
}
a#scroll-to-top.is-visible {
  display: block;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  z-index: 60;
  width: 42px;
  height: 36px;
  background: var(--navy);
  border: 0;
  color: #fff;
  font-size: 18px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 20000;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  overflow: auto;
}
.mobile-drawer.open {
  display: block;
}
.mobile-drawer a {
  color: #fff;
  display: block;
  padding: 0.45rem 0;
}
.mobile-drawer .drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
}
.mobile-drawer .group {
  margin-bottom: 1.2rem;
}
.mobile-drawer .group > a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
.mobile-drawer .group .sub a {
  padding-left: 0.8rem;
  font-size: 13px;
  opacity: 0.85;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay.hidden {
  display: none;
}
.popup-card {
  background: #fff;
  max-width: 560px;
  width: 100%;
  padding: 1.6rem 1.8rem 1.4rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.popup-card h4 {
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 1.5rem 0 0;
}
.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  border: 0;
  background: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy);
}

@media (max-width: 1200px) {
  .site-branding-container {
    width: calc(100% - 3rem);
    max-width: 1110px;
  }
  .nav-side.left {
    padding-right: 1.6rem;
    gap: 2.4rem;
  }
  .nav-side.right {
    padding-left: 1.6rem;
    gap: 2.4rem;
  }
  .entry .entry-content {
    width: 96% !important;
  }
  .vw-100-bg > .caxton-grid-block {
    width: 96%;
  }
  a#scroll-to-top {
    right: 40px;
  }
  #colophon .widget-area,
  #colophon .site-info {
    width: 96%;
  }
  .site-header.featured-image .site-featured-image .entry-header {
    margin-left: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  #eyebrow-nav {
    display: none;
  }
  .nav-side.right {
    display: flex;
    gap: 1rem;
  }
  #mysticky-nav {
    padding: 1.1rem 0 0.6rem;
  }
  .header-row {
    justify-content: space-between;
  }
  .site-title {
    margin: 0;
  }
  .site-title img {
    height: 40px;
    max-width: 180px;
  }
  .site-header.featured-image .site-featured-image .entry-header {
    transform: none;
    width: 80%;
    margin: 2rem auto 4rem;
  }
  .hero-large-logo {
    display: none;
  }
  #mysticky-nav.wrapfixed {
    padding: 0.8rem 0 0.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
  #masthead.site-header.featured-image {
    min-height: auto;
    background-image: none !important;
    padding: 0 0 2rem;
  }
  .caxton-columns {
    display: block !important;
  }
  .wp-block-caxton-section {
    margin-bottom: 1rem;
  }
  .site-content {
    padding: 0 1rem;
  }
  .entry .entry-content {
    width: 100% !important;
  }
  .site-header.featured-image .site-featured-image .entry-header {
    width: 100%;
    padding: 0 0.3rem 0 0.3rem;
  }
  .site-title img {
    height: 32px;
  }
  .main-navigation .nav-side > li > a,
  .main-navigation .nav-side > li > button {
    font-size: 12px;
  }
  #menu-footer-nav-menu,
  .footer-navigation {
    display: none;
  }
  #colophon .widget-area {
    display: block;
  }
  .footer-logo {
    margin-bottom: 1rem;
  }
  a#scroll-to-top {
    right: 75px;
    bottom: 90px;
  }
  .interns-photo {
    margin: 0 auto;
  }
  .team-icon {
    margin: 0 auto;
    margin-right: auto !important;
  }
  /* Mobile: one per row, two teams per navy group, white gaps between groups */
  .global-teams-wrap {
    background: #fff;
  }
  .global-teams-wrap > .global-team-group {
    background: #002554;
    padding: 1.5rem 0;
  }
  .global-teams-wrap > .global-team-group + .global-team-group {
    margin-top: 1rem;
  }
  .global-teams-wrap > .global-team-group > .wp-block-caxton-grid > .caxton-grid-block {
    padding: 0 !important;
  }
  .global-teams-wrap .global-team-more {
    margin-top: 0.5rem;
  }
  .client-solutions .caxton-grid-block {
    padding: 3rem 0 !important;
  }
  .client-solutions-text p {
    max-width: 100%;
  }
  .client-solutions-image {
    margin-bottom: 2rem;
  }
  .client-solutions-image figure {
    max-width: 320px;
  }
  .footer-simple {
    padding: 1.6rem 0;
  }
  .footer-simple-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-simple-logo img {
    height: 44px;
  }
  .footer-simple-icon {
    height: 48px;
  }
  .footer-simple-right {
    align-items: flex-start;
  }
  .footer-simple-right a {
    font-size: 0.85rem;
  }
  .social-links-menu {
    gap: 0.9rem;
  }
  .social-links-menu .svg-icon {
    width: 26px;
    height: 26px;
  }
  .footer-simple-left {
    padding: 25px;
  }
}
