/* Services page — built from the homepage's language rather than alongside it.

   Palette, taken verbatim from the homepage:
     dark sections  var(--background-color-gray) #2c2c2c, never #000
     light sections var(--secondary-color) #fff
     rules          var(--primary-color) at .4, filling to 1 on hover

   The dusty red is deliberately absent here — no glows, numbers, borders or
   button fills carry it. Everything reads as charcoal, white, and a rule that
   fills, which is what makes the homepage's darks feel soft rather than stark. */

/* Labels are set in wide-tracked caps, which costs legibility at small sizes.
   They are kept a step larger and a step tighter than a normal caption so the
   tracking stays a style choice rather than something you have to squint past. */
.services_eyebrow,
.sector_label,
.service_number {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Century Gothic", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ---------- hero ---------- */

/* Takes .section_reimagine's arrangement — white ground, contour pattern
   behind — with .section_storytelling's headline-left / copy-right split. */
.services_hero {
  z-index: 5;
  background-color: var(--secondary-color);
  align-items: flex-end;
  width: 100%;
  /* Sized to its content rather than the viewport: a full-height hero pushes
     everything below the fold on short screens. 52vh is a floor, not a target —
     the padding and copy set the real height. */
  min-height: 100vh;
  /* clears the 5rem sticky navbar */
  padding-top: 9rem;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Bled 10% past the top and bottom edges, the way .about_pattern is. The
   [data-drift] parallax slides this up by 8% on scroll, so a wrapper sized to
   exactly the section would uncover a strip of bare background along the
   bottom — the overhang is what the drift eats into. */
.services_pattern {
  z-index: 0;
  position: absolute;
  inset: -10% 0;
  overflow: hidden;
}

.services_pattern img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* The contour SVG is drawn in white strokes for the dark sections. Inverting it
   turns those strokes charcoal so the same full-bleed artwork works on white.
   The artwork already carries its own nested opacities (.3 over .2 on most
   groups), so it is left at full strength here — dimming it further is what
   made the contours disappear on white. */
.services_pattern.is-dark-lines img {
  filter: invert(1);
}

.services_hero > .container-large,
.services_index > .container-large,
.services_sectors > .container-large,
.services_cta > .container-large {
  z-index: 5;
  position: relative;
}

.services_hero > .container-large {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

/* Two-column split, as .storytelling_content-wrapper-2grid */
.services_hero-content {
  grid-template-columns: 1fr;
  align-items: end;
  width: 100%;
  display: grid;
}

.services_eyebrow {
  color: rgba(44, 44, 44, 0.82);
  margin-bottom: 1rem;
}

.services_title {
  /* Webflow's base h1/h2 rules add 20px top + 10px bottom; the section head
     owns this spacing instead, as .about_title / .about_heading do. */
  margin: 0;
  color: var(--primary-color);
  font-family: "Century Gothic", sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1.04;
}

/* .storytelling_subtext — right aligned, held to a readable measure */
.services_subtext {
  color: var(--primary-color);
  text-align: right;
  max-width: 45ch;
  margin-left: auto;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
}

.services_subtext:not(.is-lead) {
  color: rgba(44, 44, 44, 0.82);
}

.services_subtext.is-lead {
  margin-bottom: 1rem;
  font-weight: 700;
}

/* SplitType line masks */
.services_eyebrow .line,
.services_subtext .line {
  padding-bottom: 0.1rem;
  overflow: hidden;
}

.services_title .line {
  padding-bottom: 0.4rem;
  overflow: hidden;
}

/* ---------- services index ---------- */

.services_index {
  background-color: var(--secondary-color);
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.services_section-head {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

.services_section-head .services_eyebrow {
  color: rgba(44, 44, 44, 0.82);
}

.services_heading {
  margin: 0;
  color: var(--primary-color);
  font-family: "Century Gothic", sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.06;
}

.services_heading.is-light {
  color: var(--secondary-color);
}

.services_sectors .services_eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.service_row {
  position: relative;
}

.service_row-head {
  color: inherit;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  grid-column-gap: 2rem;
  grid-template-columns: 4rem minmax(10rem, 16rem) 1fr 2rem;
  align-items: center;
  width: 100%;
  padding: 1.8rem 0;
  text-align: left;
  display: grid;
}

/* .expertise_list-item-number — charcoal held back, not an accent */
.service_number {
  color: var(--primary-color);
  opacity: 0.6;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s;
  display: block;
}

/* .expertise_list-item-text — weight 600, not 900. The homepage saves 900 for
   section headlines, which is what keeps this list from reading as heavy black. */
.service_name {
  color: var(--primary-color);
  font-family: "Century Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service_summary {
  color: rgba(44, 44, 44, 0.85);
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.service_summary-mobile {
  display: none;
}

/* plus / minus toggle drawn with two hairlines */
.service_toggle {
  justify-self: end;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
}

.service_toggle:before,
.service_toggle:after {
  content: "";
  background-color: var(--primary-color);
  opacity: 0.4;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.service_toggle:after {
  transform: rotate(90deg);
}

.service_row.is-open .service_toggle:after,
.service_row:hover .service_toggle:after {
  transform: rotate(0);
}

.service_row:hover .service_toggle:before,
.service_row:hover .service_toggle:after,
.service_row.is-open .service_toggle:before,
.service_row.is-open .service_toggle:after {
  opacity: 1;
}

.service_row:hover .service_name,
.service_row.is-open .service_name {
  transform: translateX(0.6rem);
}

.service_row:hover .service_number,
.service_row.is-open .service_number {
  opacity: 1;
  transform: translateX(0.3rem);
}

.service_row-body {
  height: 0;
  overflow: hidden;
}

.service_row-body-inner {
  grid-column-gap: 2rem;
  grid-template-columns: 4rem 1fr;
  padding-bottom: 2rem;
  display: grid;
}

.service_points {
  grid-column: 2;
  grid-column-gap: 2rem;
  grid-row-gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.service_point {
  color: rgba(44, 44, 44, 0.88);
  border-top: 1px solid rgba(44, 44, 44, 0.22);
  padding-top: 0.8rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* .expertise_list-item-line / -line-overlay: a 2px charcoal rule at .4 that a
   full-strength charcoal rule wipes across on hover. */
.service_row-line {
  background-color: var(--primary-color);
  opacity: 0.4;
  width: 100%;
  height: 2px;
  transition: opacity 0.5s;
  position: relative;
  overflow: hidden;
}

.service_row-line-overlay {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  inset: 0;
  transform: scaleX(0);
}

.service_row:hover .service_row-line,
.service_row.is-open .service_row-line {
  opacity: 1;
}

.service_row:hover .service_row-line-overlay,
.service_row.is-open .service_row-line-overlay {
  transform: scaleX(1);
}

/* ---------- sector grid ---------- */

.services_sectors {
  z-index: 5;
  background-color: var(--background-color-gray);
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.services_sector-grid {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.sector_card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.3rem;
  padding: 1.6rem 1.5rem 1.8rem;
  transition:
    border-color 0.5s,
    background-color 0.5s,
    transform 0.5s;
  position: relative;
  overflow: hidden;
}

.sector_card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.sector_label {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
  transition: color 0.5s;
  display: block;
}

.sector_card:hover .sector_label {
  color: var(--secondary-color);
}

.sector_name {
  color: var(--secondary-color);
  margin: 0 0 0.8rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.sector_text {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-family: "Century Gothic", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* corner bracket that draws itself on hover */
.sector_corner {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  width: 1.4rem;
  height: 1.4rem;
  opacity: 0;
  transition:
    opacity 0.5s,
    transform 0.5s;
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  transform: translate(-0.4rem, 0.4rem);
}

.sector_card:hover .sector_corner {
  opacity: 1;
  transform: translate(0);
}

/* ---------- homepage expertise UI ---------- */

.services_expertise.section_expertise {
  min-height: 100vh;
  margin: 0;
  background-color: var(--secondary-color);
}

.services_expertise.section_expertise.is-expertise-scrollable {
  min-height: calc(100vh + var(--expertise-scroll-distance, 35vh));
}

.services_expertise .expertise_wrapper,
.services_expertise .expertise_wrapper.overflow-hidden {
  position: relative;
  min-height: 100vh;
  height: auto;
}

.services_expertise .padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.services_expertise .expertise_grid-container {
  grid-template-columns: minmax(20rem, 1fr) minmax(30rem, 0.95fr);
}

.services_expertise .expertise_left-col-wrapper {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: min(62vh, 34rem);
  flex-direction: column;
  justify-content: flex-start;
}

.services_expertise .home_expertise-title {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: 100%;
}

.services_expertise .home_expertise-subtext {
  margin: clamp(2rem, 6vh, 4rem) 0 0;
  color: var(--primary-color);
  font-size: clamp(1.75rem, 3vw, 3.5rem);
  line-height: 1.15;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.services_expertise:not(.is-expertise-hovering) .home_expertise-subtext {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.services_expertise .home_expertise-media {
  position: absolute;
  top: clamp(8rem, 22%, 11rem);
  left: 0;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity 0.2s ease;
  background-color: transparent;
}

.services_expertise .home_expertise-image {
  display: block;
  width: 100%;
  height: 100%;
  /* Show the whole expertise image instead of cropping it to fill the 4:3
     box — these renders aren't all 4:3, so "cover" was cutting them off. */
  object-fit: contain;
}

.services_expertise.is-expertise-hovering .home_expertise-subtext {
  opacity: 0;
  transform: translateY(0.75rem);
}

.services_expertise.is-expertise-hovering .home_expertise-media {
  opacity: 1;
  transform: none;
}

.services_expertise .expertise_list-wrapper {
  position: relative;
  height: auto;
  max-height: none;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.services_expertise .expertise_list-track {
  width: 100%;
  transform: none !important;
}

.services_expertise .expertise_list-item,
.services_expertise .expertise_list-item.is-alternate {
  display: block;
  appearance: none;
  width: 100%;
  min-height: 4.25rem;
  margin: 0;
  padding: 0.7rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}

.services_expertise .expertise_list-item-content-wrapper {
  width: 100%;
}

.services_expertise .expertise_list-item-text-wrapper {
  align-items: baseline;
  opacity: 0.42 !important;
  transform: none !important;
  transition: opacity 0.3s ease;
}

.services_expertise .expertise_list-item-number,
.services_expertise .expertise_list-item-number.is-alternate {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1.25;
}

.services_expertise .expertise_list-item-text,
.services_expertise .expertise_list-item-text.is-alternate {
  min-width: 0;
  padding-left: 1rem;
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 2.5vw, 2.75rem);
  line-height: 1.15;
  text-align: right;
}

.services_expertise .expertise_list-item-line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color) !important;
  opacity: 1 !important;
  transition: height 0.3s ease;
}

.services_expertise .expertise_list-item-line-overlay {
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color) !important;
  opacity: 1 !important;
  transform: none !important;
}

.services_expertise .expertise_list-item-line-wrapper,
.services_expertise .expertise-list-item-line-wrapper {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.services_expertise .expertise_list-item-image {
  display: none !important;
}

.services_expertise
  .expertise_list-item.is-active
  .expertise_list-item-text-wrapper,
.services_expertise
  .expertise_list-item:hover
  .expertise_list-item-text-wrapper,
.services_expertise
  .expertise_list-item:focus-visible
  .expertise_list-item-text-wrapper {
  opacity: 1 !important;
}

.services_expertise .expertise_list-item:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 0.25rem;
}

@media screen and (max-width: 991px) {
  .services_expertise.section_expertise {
    min-height: 75vh;
  }

  .services_expertise .expertise_wrapper,
  .services_expertise .expertise_wrapper.overflow-hidden {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .services_expertise .expertise_grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .services_expertise .expertise_grid-container .spacer-huge.instance {
    display: none;
  }

  .services_expertise .expertise_left-col-wrapper {
    display: block;
    min-height: 0;
  }

  .services_expertise .home_expertise-title {
    opacity: 1 !important;
    transform: none !important;
  }

  .services_expertise .home_expertise-media {
    display: none;
  }

  .services_expertise .expertise_list-wrapper {
    height: auto;
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .services_expertise .expertise_list-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    transform: none !important;
  }

  .services_expertise .expertise_list-item,
  .services_expertise .expertise_list-item.is-alternate {
    min-height: 0;
    padding-top: 1rem;
    /* padding-bottom: 2rem; */
  }

  .services_expertise .expertise_list-item-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
    opacity: 1 !important;
  }

  .services_expertise .expertise_list-item-number,
  .services_expertise .expertise_list-item-number.is-alternate {
    font-size: 0.95rem;
    opacity: 0.6;
  }

  .services_expertise .expertise_list-item-text,
  .services_expertise .expertise_list-item-text.is-alternate {
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 2.3em;
    align-self: flex-start;
    padding-left: 0;
    text-align: left;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .services_expertise .expertise_list-item-image {
    display: block !important;
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 1.25rem;
    object-fit: contain;
    background-color: transparent;
  }
}

@media screen and (max-width: 479px) {
  .services_expertise .expertise_list-item-number,
  .services_expertise .expertise_list-item-number.is-alternate,
  .services_expertise .expertise_list-item-text,
  .services_expertise .expertise_list-item-text.is-alternate {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services_expertise .home_expertise-title,
  .services_expertise .home_expertise-media,
  .services_expertise .expertise_list-track,
  .services_expertise .expertise_list-item-text-wrapper,
  .services_expertise .expertise_list-item-line {
    transition: none;
  }
}

/* ---------- closing CTA ---------- */

.services_cta {
  z-index: 5;
  background-color: var(--secondary-color);
  padding-top: 7rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.services_cta-grid {
  grid-column-gap: 3rem;
  grid-template-columns: 1fr auto;
  align-items: end;
  display: grid;
}

.services_cta-content {
  max-width: 40rem;
}

.services_cta-text {
  color: rgba(44, 44, 44, 0.82);
  margin-top: 1.6rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
}

.services_buttons {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  display: flex;
}

/* The homepage's .hero_primary-button is reused verbatim in the markup. There
   the two arrows are swapped by a Webflow IX2 hover interaction; this page
   drives the same swap in CSS so it works without the Webflow runtime. */
.services_buttons .hero_primary-button {
  align-items: center;
  transition: transform 0.4s;
}

.services_buttons .hero_primary-button:hover {
  transform: translateY(-2px);
}

.services_buttons .primary-button_arrow-icon,
.services_buttons .primary-button_arrow-icon-hidden {
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services_buttons .primary-button_arrow-icon-hidden {
  transform: translate3d(-2.4rem, 0, 0);
}

/* Inverted for the white CTA: charcoal pill, white icon disc. The arrow SVG is
   stroked white, so it is inverted too to stay visible on that disc. */
.services_buttons .hero_primary-button {
  background-color: var(--primary-color);
}

.services_buttons .primary-button_text {
  color: var(--secondary-color);
}

.services_buttons .primary-button_icon-wrapper {
  background-color: var(--secondary-color);
}

.services_buttons .primary-button_arrow-icon,
.services_buttons .primary-button_arrow-icon-hidden {
  filter: invert(1);
}

.services_buttons .hero_primary-button:hover .primary-button_arrow-icon {
  transform: translate3d(2.4rem, 0, 0);
}

.services_buttons .hero_primary-button:hover .primary-button_arrow-icon-hidden {
  transform: translate3d(0, 0, 0);
}

/* Ghost variant sitting beside it, on the same white ground. */
.services_button {
  color: var(--primary-color);
  border: 1px solid rgba(44, 44, 44, 0.45);
  border-radius: var(--corner-radius);
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5em 1.6rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 0.4s,
    color 0.4s,
    background-color 0.4s,
    transform 0.4s;
  display: flex;
}

.services_button:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Compact footer: the homepage footer reveals itself over 200vh of scroll,
   which this page does not need. */
.footer.is-simple {
  min-height: auto;
  margin-top: 0;
}

.footer.is-simple .footer_wrapper {
  min-height: auto;
  position: static;
}

@media screen and (max-width: 991px) {
  .services_title {
    font-size: 4.5rem;
  }

  .services_heading {
    font-size: 2.6rem;
  }

  .services_hero {
    min-height: 100vh;
    padding-top: 8rem;
  }

  /* headline over copy once the split gets too narrow to read */
  .services_hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services_subtext {
    text-align: left;
    margin-left: 0;
  }

  .services_sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service_row-head {
    grid-template-columns: 3.4rem 1fr 2rem;
  }

  .service_summary {
    display: none;
  }

  .service_summary-mobile {
    color: rgba(44, 44, 44, 0.85);
    margin: 0 0 1.2rem;
    font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    display: block;
  }

  .service_points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .services_hero {
    display: none;
  }

  .services_expertise .padding-section-large {
    padding-top: calc(var(--navbar-height) + 1rem);
    padding-bottom: 2.5rem;
  }

  .services_expertise .expertise_grid-container {
    gap: 1.5rem;
  }

  .services_expertise .home_expertise-subtext {
    margin-top: 1.25rem;
  }

  .services_expertise .expertise_list-item,
  .services_expertise .expertise_list-item.is-alternate {
    padding-top: 0.5rem;
  }

  .services_expertise .expertise_list-item-image {
    margin-top: 0.75rem;
  }

  .services_title {
    font-size: 4rem;
  }

  .services_heading {
    font-size: 2.1rem;
  }

  .services_index,
  .services_sectors,
  .services_cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service_name {
    font-size: 1.5rem;
  }

  /* CTA buttons drop below the copy */
  .services_cta-grid {
    grid-row-gap: 2.4rem;
    grid-template-columns: 1fr;
  }

  .services_buttons {
    justify-content: flex-start;
  }

  .service_row-body-inner,
  .service_points {
    grid-template-columns: 1fr;
  }

  .service_row-body-inner {
    grid-column-gap: 0;
  }

  .service_points {
    grid-column: 1;
  }
}

@media screen and (max-width: 479px) {
  .services_title {
    font-size: 3.4rem;
  }

  .services_expertise .expertise_list-track {
    column-gap: 0.85rem;
  }

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

  .service_row-head {
    grid-column-gap: 1rem;
    grid-template-columns: 2.6rem 1fr 1.4rem;
  }

  .services_buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .services_button {
    justify-content: center;
  }
}
