/* Homepage-only refinements. */

/* Slightly overscan the hero artwork so subpixel rounding cannot expose a
   one-pixel seam along the right or bottom edge. */
.hero_image-wrapper.overflow-hidden {
  background-color: #fff;
  /* .hero_image-wrapper is absolutely positioned inside .hero_container,
     which sits inside .padding-global (side padding: var(--padding-global)).
     Break out of that padding so the background spans the full viewport
     width instead of insetting like the rest of the hero content. */
  width: 100vw;
  max-width: none;
  left: 50%;
  right: auto;
  margin-left: -50vw;
  /* Webflow drives a scroll-linked scale/translate on this element via an
     inline style. Left enabled on purpose: because the wrapper above is now
     full viewport width, the zoom scales outward from that full-width image
     instead of from the narrower, inset box it used to sit in. */
  will-change: transform;
}

.hero_bg-image,
.hero_bg-image-mobile {
  background-color: #fff;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
}

/* Hero heading, restored opposite the Contact button. The base template's
   .hero_content-wrapper stacks everything bottom-right for a dark photo
   hero; ours is a light line-art background, so the title sits bottom-left
   in dark text and the row splits to hold both ends. */
.hero_content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 2rem;
}

.hero_title {
  color: var(--primary-color);
  text-transform: none;
  font-weight: 500;
  max-width: 20ch;
  /* Big screens: fixed at 7rem. */
  font-size: 7rem;
  line-height: 1.05;
}

.hero_mobile-break {
  display: none;
}

/* Tablets and laptops: fixed, reduced size (not fluid vw/vh scaling) so it
   stays clear of the logo/CTA in this range. Mobile (below) is untouched. */
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .hero_title {
    font-size: 4.5rem;
  }
}

/* Logo mark: big screens keep it centered near the top, clear of the
   heading below it (same spot as before). */
@media screen and (min-width: 1441px) {
  .hero_logo.is-absolute {
    top: 5rem;
    bottom: auto;
  }
}

/* Tablets and laptops: centered horizontally like the big-screen version,
   but sat lower — about a quarter of the way down the section, clearing
   the navbar above and the (smaller, fixed-size) heading below it — instead
   of top: 5rem, which put it too close to "Advancing" at this width. */
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .hero_logo.is-absolute {
    top: 25%;
    bottom: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: clamp(4rem, 12vw, 7rem);
  }
}

@media screen and (max-width: 767px) {
  .navbar_logo-fixed {
    left: var(--padding-global);
    width: min(48vw, 11rem);
    transform: none;
  }

  .hero_container {
    padding: 0 1.5rem;
  }

  .hero_content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(1.75rem, 5vh, 3rem);
    width: auto;
    height: auto;
    padding-top: 0;
    position: absolute;
    top: clamp(18rem, 43vh, 24rem);
    bottom: auto;
    left: 1.5rem;
    right: 1.5rem;
  }

  .hero_title {
    font-size: clamp(3.1rem, 12.4vw, 4.25rem);
    line-height: 1.15;
    max-width: 10ch;
  }

  .hero_mobile-break {
    display: block;
  }

  .hero_primary-button {
    align-self: flex-end;
    margin-top: 0;
  }

  .hero_logo.is-absolute {
    top: calc(var(--navbar-height) + clamp(2rem, 6vh, 3.5rem));
    bottom: auto;
    left: 50%;
    right: auto;
    width: clamp(8.5rem, 36vw, 11rem);
    margin: 0;
    transform: translateX(-50%);
  }
}

/* "Designing Stories" background now swaps to a dedicated mobile crop via
   <picture>. picture has no intrinsic size of its own, so it needs the same
   fill sizing the <img> already had to keep the sticky flex layout intact. */
.inspiration_image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mouse-follow glow, homepage only. "lighten" keeps whichever is lighter,
   pixel by pixel: over the white section background gold (191,153,83) is
   darker than white, so white wins and the circle stays invisible there;
   over the black heading text gold is lighter than black, so gold wins —
   the glyphs recolor gold as the circle passes over them, with no visible
   disc shape anywhere else. */
.global_bg-circle-interaction {
  background-color: #bf9953;
  mix-blend-mode: lighten;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

/* The cursor glow is painted as a paragraph background and clipped to the
   glyphs, so no shape is visible around or over the text. */
@property --story-lens-size {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

.story_liquid-section {
  --story-lens-x: 50%;
  --story-lens-y: 50%;
  --story-lens-size: 0px;
}

.story_liquid-section.is-story-lens-active {
  --story-lens-size: 20rem;
}

.story_liquid-section .story_title-2 {
  background-image:
    radial-gradient(
      circle var(--story-lens-size) at var(--story-lens-x) var(--story-lens-y),
      #d6b36d 0%,
      #bf9953 52%,
      rgba(191, 153, 83, 0) 76%
    ),
    linear-gradient(290deg, #484747, #484747);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: --story-lens-size 1000ms cubic-bezier(0.36, 1, 0.36, 1);
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .story_liquid-section {
    --story-lens-size: 0px;
  }
}

/* Story section — two-part text: the existing intro copy on the left, a
   second line of copy on the right. Background/pattern is untouched, this
   only lays out the text. */
.story_grid {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: 3fr 7fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.story_col-right {
  padding-top: 0.4rem;
}

.story_right-heading {
  color: var(--primary-color);
  margin: 0;
  font-family: "Century Gothic", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

/* Gradient text on the intro paragraph only — "Over 30 years..." keeps its
   solid color above. Background stays white; just the type itself carries
   the gradient, clipped to the glyphs. */
.story_title-2 {
  background-image: linear-gradient(290deg, #484747);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 991px) {
  .story_grid {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}

/* Formula/story section — static layout matching the About page's "Our
   Approach" block: image beside copy, dark ground, no scroll animation. */
.section_formula {
  min-height: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color-gray);
}

.formula_static-pattern {
  z-index: 0;
  position: absolute;
  inset: -10% 0;
}

.formula_static-pattern-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.formula_static-grid {
  z-index: 1;
  position: relative;
  grid-column-gap: 4rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  display: grid;
}

.formula_static-media {
  border-radius: 0.3rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 1.6rem 3rem rgba(0, 0, 0, 0.3);
}

.formula_static-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.formula_static-text p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-family: "Century Gothic", sans-serif;
  font-size: clamp(1.75rem, 2vw, 2rem);
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .formula_static-grid {
    grid-column-gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .formula_static-text p {
    font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  }
}

.showcase_view-more-wrapper {
  display: none;
}

.showcase_view-more-wrapper[hidden] {
  display: none !important;
}

.featured-projects-heading {
  font-size: clamp(3.2rem, 4.5vw, 5.25rem);
  line-height: 1.05;
}

.showcase_image_container.is-1 {
  --showcase-image: url("../images/project/project-images/gldc-buisness-centre.webp");
}

.showcase_image_container.is-2 {
  --showcase-image: url("../images/project/project-images/arvel-palm-spirng.webp");
}

.showcase_image_container.is-3 {
  --showcase-image: url("../images/project/project-images/arvel-zenith.webp");
}

.showcase_image_container.is-4 {
  --showcase-image: url("../images/project/project-images/luxuria.webp");
}

.showcase_image_container.is-5 {
  --showcase-image: url("../images/project/project-images/posh-arcade.webp");
}

.showcase_image_container.is-6 {
  --showcase-image: url("../images/project/project-images/upper-west.webp");
}

.showcase_image_container.is-7 {
  --showcase-image: url("../images/project/project-images/sdsm-law-college.webp");
}

.showcase_image_container.is-8 {
  --showcase-image: url("../images/project/project-images/sdsm-school.webp");
}

.showcase_image_container.is-9 {
  --showcase-image: url("../images/project/project-images/INDUSTRY/abby-lighting-industry.webp");
}

.showcase_image_container.is-10 {
  --showcase-image: url("../images/project/project-images/INDUSTRY/surya-industrial-park-1.webp");
}

.section_showcase .showcase_image_container {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 14%),
    var(--showcase-image);
  background-position: center;
  background-size: auto, cover;
}

@media screen and (max-width: 767px) {
  .featured-projects-heading {
    font-size: clamp(2.25rem, 9vw, 3rem);
    line-height: 1.1;
  }
}

@media screen and (max-width: 479px) {
  .section_showcase .showcase_image_container {
    background-image:
      linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 41%),
      var(--showcase-image);
  }
}

@media screen and (max-width: 767px) {
  .section_inspiration,
  .section_inspiration .inspiration_content-wrapper,
  .section_inspiration .inspiration_content-wrapper.overflow-hidden,
  .section_inspiration .inspiration_image-wrapper {
    height: 100vh;
    height: 100svh;
  }

  .section_inspiration {
    min-height: 100vh;
    min-height: 100svh;
  }

  .section_inspiration .inspiration_bg-image {
    height: 100vh;
    height: 100svh;
  }

  .section_inspiration .inspiration_text-wrapper {
    top: auto;
    bottom: clamp(1.5rem, 6svh, 3rem);
    z-index: 5;
  }

  .section_inspiration .inspiration_text-wrapper .padding-section-small {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .formula_static-grid {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1.5rem;
  }

  .formula_static-media {
    grid-row: 1;
  }

  .formula_static-text {
    grid-row: 2;
  }

  .formula_static-text p {
    font-size: clamp(0.95rem, 5.6vw, 1.3rem);
  }
}

.footer {
  min-height: auto;
  margin-top: 0;
  background-color: var(--primary-color);
}

.footer_spacer {
  display: none;
}

.footer_wrapper {
  position: relative;
  bottom: auto;
  display: block;
  min-height: 0;
  padding-top: 0;
  background-color: var(--primary-color);
}

.footer_wrapper > .padding-global {
  display: none;
}

.home-footer {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem) 1.75rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  font-family: "Century Gothic", sans-serif;
  will-change: transform;
}

.home-footer__shell {
  display: flex;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  flex-direction: column;
  row-gap: clamp(2.5rem, 4vw, 3.5rem);
  will-change: opacity, transform;
}

.home_latest-news .heading-style-h2 {
  will-change: opacity, transform;
}

.home-footer__top,
.home-footer__bottom {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(25rem, 1fr);
  column-gap: clamp(4rem, 10vw, 11rem);
}

.home-footer__logo {
  display: block;
  width: min(17rem, 78%);
}

.home-footer__badge {
  display: block;
  width: min(11rem, 48%);
  margin-top: 1.75rem;
}

.home-footer__socials {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
}

.home-footer__socials a {
  display: grid;
  width: 2rem;
  height: 2rem;
  color: var(--secondary-color);
  place-items: center;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.home-footer__socials a:hover,
.home-footer__socials a:focus-visible {
  color: var(--accent-color);
  transform: translateY(-0.2rem);
}

.home-footer__socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-footer__socials svg path:first-child,
.home-footer__socials .is-filled {
  fill: currentColor;
  stroke: none;
}

.home-footer__enquiries {
  padding-top: 0.25rem;
}

.home-footer__enquiries p {
  margin: 0 0 1.35rem;
  color: var(--secondary-color);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.45;
}

.home-footer__enquiries a,
.home-footer__address a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s ease;
}

.home-footer__enquiries a:hover,
.home-footer__enquiries a:focus-visible,
.home-footer__address a:hover,
.home-footer__address a:focus-visible {
  color: var(--accent-color);
}

.home-footer__bottom {
  align-items: end;
}

.home-footer__nav,
.home-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-footer__nav {
  gap: 0.75rem 1.75rem;
}

.home-footer__nav a {
  color: var(--secondary-color);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.home-footer__nav a:hover,
.home-footer__nav a:focus-visible {
  color: var(--accent-color);
}

.home-footer__legal {
  gap: 0.55rem 1.4rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
}

.home-footer__legal a {
  color: inherit;
  text-decoration: none;
}

.home-footer__legal a:hover,
.home-footer__legal a:focus-visible {
  color: var(--secondary-color);
}

.home-footer__address {
  margin: 0;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.45;
}

.home-footer__address strong {
  font-weight: 600;
}

.home-footer__to-top {
  position: absolute;
  top: clamp(2.5rem, 5vw, 4.75rem);
  right: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--secondary-color);
  place-items: center;
}

.home-footer__to-top span {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(0.3rem) rotate(45deg);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.home-footer__to-top:hover span,
.home-footer__to-top:focus-visible span {
  color: var(--accent-color);
  transform: translateY(0) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .home-footer {
    padding-top: 3rem;
  }

  .home-footer__top,
  .home-footer__bottom {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.5rem;
  }

  .home-footer__enquiries {
    padding-top: 0;
  }

  .home-footer__address {
    grid-row: 1;
  }

  .home-footer__to-top {
    top: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .section_expertise {
    min-height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

  .section_expertise .expertise_list-wrapper {
    height: auto;
    max-height: none;
  }
}

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

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

.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;
}

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

.home_expertise-eyebrow {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.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;
}

.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;
}

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

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

.expertise_list-wrapper {
  position: relative;
  height: min(62vh, 34rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

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

.expertise_list-item,
.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;
}

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

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

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

.expertise_list-item-text,
.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;
}

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

.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;
}

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

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

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

.expertise_list-item.is-active .expertise_list-item-line,
.expertise_list-item:hover .expertise_list-item-line,
.expertise_list-item:focus-visible .expertise_list-item-line {
  height: 2px;
}

.expertise_list-item.is-active .expertise_list-item-line-overlay,
.expertise_list-item:hover .expertise_list-item-line-overlay,
.expertise_list-item:focus-visible .expertise_list-item-line-overlay {
  opacity: 1;
}

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

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

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

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

  /* The grid's own gap already spaces the title from the list — Webflow's
     generic mobile breakpoint turns this spacer back to display:block for
     other uses on the page, but here it just adds an extra empty gap. */
  .expertise_grid-container .spacer-huge.instance {
    display: none;
  }

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

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

  .home_expertise-media {
    display: none;
  }

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

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

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

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

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

  .expertise_list-item-text,
  .expertise_list-item-text.is-alternate {
    padding-left: 0;
    text-align: left;
    align-self: flex-start;
    font-size: clamp(1.15rem, 3.2vw, 1.6rem);
  }

  /* Each row's image, hidden on desktop for the hover-preview instead,
     shows stacked below its title here — touch has no hover to swap it in. */
  .expertise_list-item-image {
    display: block !important;
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: transparent;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .showcase_image_container.is-mobile-collapsed {
    display: none;
  }

  .showcase_view-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    background-color: #121212;
  }

  .showcase_view-more {
    appearance: none;
    min-width: 9rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    background: transparent;
    color: var(--secondary-color);
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .showcase_view-more:hover,
  .showcase_view-more:focus-visible {
    background-color: var(--secondary-color);
    color: #121212;
  }

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

  .expertise_list-item-number,
  .expertise_list-item-number.is-alternate,
  .expertise_list-item-text,
  .expertise_list-item-text.is-alternate {
    font-size: 1.3rem;
  }

  .expertise_list-item-text,
  .expertise_list-item-text.is-alternate {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pre-loader {
    display: none;
  }

  .home_expertise-title,
  .home_expertise-media,
  .expertise_list-track,
  .expertise_list-item-text-wrapper,
  .expertise_list-item-line {
    transition: none;
  }

  .home_latest-news .heading-style-h2,
  .footer_wrapper,
  .home-footer__shell {
    opacity: 1 !important;
    transform: none !important;
  }
}
