@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

img {
  width: 100%;
}

::-moz-selection {
  text-shadow: none;
}

::selection {
  text-shadow: none;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Bold.eot");
  src: url("assets/fonts/aniko/Aniko-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Bold.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Bold.woff") format("woff"), url("assets/fonts/aniko/Aniko-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Extrabold.eot");
  src: url("assets/fonts/aniko/Aniko-Extrabold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Extrabold.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Extrabold.woff") format("woff"), url("assets/fonts/aniko/Aniko-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Extralight.eot");
  src: url("assets/fonts/aniko/Aniko-Extralight.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Extralight.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Extralight.woff") format("woff"), url("assets/fonts/aniko/Aniko-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Light.eot");
  src: url("assets/fonts/aniko/Aniko-Light.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Light.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Light.woff") format("woff"), url("assets/fonts/aniko/Aniko-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Medium.eot");
  src: url("assets/fonts/aniko/Aniko-Medium.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Medium.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Medium.woff") format("woff"), url("assets/fonts/aniko/Aniko-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Regular.eot");
  src: url("assets/fonts/aniko/Aniko-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Regular.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Regular.woff") format("woff"), url("assets/fonts/aniko/Aniko-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Semibold.eot");
  src: url("assets/fonts/aniko/Aniko-Semibold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Semibold.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Semibold.woff") format("woff"), url("assets/fonts/aniko/Aniko-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aniko";
  src: url("assets/fonts/aniko/Aniko-Thin.eot");
  src: url("assets/fonts/aniko/Aniko-Thin.eot?#iefix") format("embedded-opentype"), url("assets/fonts/aniko/Aniko-Thin.woff2") format("woff2"), url("assets/fonts/aniko/Aniko-Thin.woff") format("woff"), url("assets/fonts/aniko/Aniko-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--HeadingFont);
}

body {
  font-family: var(--BodyFont);
}

html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}

:root {
  --SectionPadding: 70px 0;
  --HeadingFont: "Manrope";
  --BodyFont: "Manrope";
  --OutsetDisplayTitle: 82px;
  --OutsetSectionTitle: 72px;
  --OutsetSmallTitle: clamp(26px, 2.2vw, 40px);
  --BrandRed: #ec181b;
  --BrandBlack: #111111;
  --BrandDark: #1c1c1c;
  --BrandWhite: #ffffff;
  --BrandBackground: #f7f7f5;
  --BrandSoftBackground: #efefed;
  --BrandText: #171717;
  --BrandMuted: #696969;
  --BrandBorder: #dadad6;
}

.SubTitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #ec181b;
  font-family: var(--BodyFont);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.SubTitle::before {
  width: 26px;
  height: 2px;
  margin-right: 12px;
  background: var(--BrandRed);
  content: "";
}

.PrimaryBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: auto;
  padding: 10px;
  background: #ef2d38;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: 0.35s ease;
}
.PrimaryBtn .BtnIcon {
  width: 18px;
  height: 18px;
  background: #fff;
  transition: 0.35s;
}
.PrimaryBtn {
  /* Top Left */
}
.PrimaryBtn::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: -12px;
  left: -12px;
  border-top: 3px solid #111;
  border-left: 3px solid #111;
  transition: 0.35s;
}
.PrimaryBtn {
  /* Bottom Right */
}
.PrimaryBtn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -12px;
  right: -12px;
  border-bottom: 3px solid #111;
  border-right: 3px solid #111;
  transition: 0.35s;
}
.PrimaryBtn span:last-child {
  position: relative;
  z-index: 2;
}
.PrimaryBtn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
}
.PrimaryBtn:hover .BtnIcon {
  transform: rotate(45deg);
}
.PrimaryBtn:hover::before {
  top: -6px;
  left: -6px;
}
.PrimaryBtn:hover::after {
  bottom: -6px;
  right: -6px;
}

/* =====================================================
   COMMON TYPOGRAPHY
===================================================== */
.HeroTitle {
  margin: 0;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

/* =====================================================
   COMMON STEP NUMBER
===================================================== */
.StepNumber {
  display: inline-block;
  color: var(--BrandRed, #ec181b);
  font-weight: 800;
  line-height: 1;
}

/* ==========================================
   OUTSETBRIDGE HEADER - DESKTOP / COMMON
========================================== */
body.OutsetMenuOpen,
body.FullMenuOpen {
  overflow: hidden;
}

main#Main {
  margin-top: 80px;
}

#OutsetHeader {
  --OutsetHeaderHeight: 112px;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--BrandWhite, #ffffff);
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
#OutsetHeader *,
#OutsetHeader *::before,
#OutsetHeader *::after {
  box-sizing: border-box;
}
#OutsetHeader ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#OutsetHeader a {
  text-decoration: none;
}
#OutsetHeader > .container {
  position: relative;
  z-index: 3;
}
#OutsetHeader .OutsetHeader {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 54px;
  min-height: var(--OutsetHeaderHeight);
  transition: min-height 0.3s ease;
}
#OutsetHeader .OutsetHeaderLogo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
#OutsetHeader .OutsetHeaderLogo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  max-height: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
#OutsetHeader .OutsetHeaderNavigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
#OutsetHeader .OutsetHeaderMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
}
#OutsetHeader .OutsetHeaderMenuItem {
  display: flex;
}
#OutsetHeader .OutsetHeaderMenuLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
#OutsetHeader .OutsetHeaderMenuLink::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--BrandRed, #ec181b);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
#OutsetHeader .OutsetHeaderMenuLink:hover, #OutsetHeader .OutsetHeaderMenuLink[aria-current=page] {
  color: var(--BrandRed, #ec181b);
}
#OutsetHeader .OutsetHeaderMenuLink:hover::after, #OutsetHeader .OutsetHeaderMenuLink[aria-current=page]::after {
  transform: scaleX(1);
  transform-origin: left center;
}
#OutsetHeader .OutsetHeaderActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
#OutsetHeader .OutsetHeaderCTA {
  white-space: nowrap;
}
#OutsetHeader .OutsetHeaderMenuToggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  background: var(--BrandBlack, #111111);
  border: 0;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#OutsetHeader .OutsetHeaderMenuToggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--BrandWhite, #ffffff);
  transform: translateX(-50%);
  transition: top 0.3s ease, transform 0.3s ease;
}
#OutsetHeader .OutsetHeaderMenuToggle span:first-child {
  top: 21px;
}
#OutsetHeader .OutsetHeaderMenuToggle span:last-child {
  top: 28px;
}
#OutsetHeader .OutsetHeaderMenuToggle.is-active span:first-child {
  top: 25px;
  transform: translateX(-50%) rotate(45deg);
}
#OutsetHeader .OutsetHeaderMenuToggle.is-active span:last-child {
  top: 25px;
  transform: translateX(-50%) rotate(-45deg);
}
#OutsetHeader .OutsetMobileNavigation {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: var(--OutsetHeaderHeight);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  background: var(--BrandBackground, #f7f7f5);
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: visibility 0s linear 0.45s, opacity 0.35s ease, transform 0.45s ease;
}
#OutsetHeader .OutsetMobileNavigation.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
#OutsetHeader .OutsetMobileNavigation > .container {
  min-height: 100%;
}
#OutsetHeader .OutsetMobileNavigationInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - var(--OutsetHeaderHeight));
  padding: 44px 0 34px;
}
#OutsetHeader .OutsetMobileMenu {
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#OutsetHeader .OutsetMobileMenu li {
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
}
#OutsetHeader .OutsetMobileMenu a {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 0;
  color: var(--BrandText, #171717);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
#OutsetHeader .OutsetMobileMenu a > span {
  min-width: 22px;
  padding-top: 8px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
#OutsetHeader .OutsetMobileMenu a:hover {
  padding-left: 10px;
  color: var(--BrandRed, #ec181b);
}
#OutsetHeader .OutsetMobileNavigationFooter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
}
#OutsetHeader .OutsetMobileNavigationFooter p {
  max-width: 420px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  line-height: 1.65;
}
#OutsetHeader .OutsetMobileCTA {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 240px;
  min-height: 54px;
  padding: 15px 18px 15px 22px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: var(--BrandRed, #ec181b);
}
#OutsetHeader .OutsetMobileCTA svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
#OutsetHeader .OutsetMobileCTA:hover svg {
  transform: translate(3px, -3px);
}
#OutsetHeader .OutsetHeaderMenuLink:focus-visible,
#OutsetHeader .OutsetHeaderCTA:focus-visible,
#OutsetHeader .OutsetHeaderMenuToggle:focus-visible,
#OutsetHeader .OutsetMobileMenu a:focus-visible,
#OutsetHeader .OutsetMobileCTA:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 4px;
}
#OutsetHeader.is-sticky {
  --OutsetHeaderHeight: 82px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}
#OutsetHeader.is-sticky .OutsetHeaderLogo img {
  width: 190px;
  max-height: 56px;
}
#OutsetHeader.is-menu-open {
  background: var(--BrandBackground, #f7f7f5);
  box-shadow: none;
}

#IndustrialHeroSection {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--BrandBlack, #111111);
  color: var(--BrandWhite, #ffffff);
}
#IndustrialHeroSection::before, #IndustrialHeroSection::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#IndustrialHeroSection::before {
  z-index: -2;
  background-image: url("assets/images/HeroBG-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#IndustrialHeroSection::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.04) 45%, rgba(17, 17, 17, 0.18) 61%, rgba(17, 17, 17, 0.62) 82%, rgba(17, 17, 17, 0.94) 100%);
}
#IndustrialHeroSection .container {
  position: relative;
  z-index: 1;
  height: 100%;
}
#IndustrialHeroSection .IndustrialHero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: calc(100svh - 112px);
  min-height: 720px;
  max-height: 960px;
  padding: 170px 0 54px;
}
#IndustrialHeroSection .IndustrialHeroStages {
  position: absolute;
  top: 42%;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
#IndustrialHeroSection .IndustrialHeroStage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  text-align: center;
  isolation: isolate;
}
#IndustrialHeroSection .IndustrialHeroStage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 240px;
  height: 130px;
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0.26) 48%, rgba(17, 17, 17, 0) 76%);
  transform: translate(-50%, -50%);
}
#IndustrialHeroSection .IndustrialHeroStage .StepNumber {
  font-size: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}
#IndustrialHeroSection .IndustrialHeroStage h2 {
  margin: 12px 0 0;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.72), 0 4px 14px rgba(0, 0, 0, 0.42);
}
#IndustrialHeroSection .IndustrialHeroStageLine {
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}
#IndustrialHeroSection .IndustrialHeroContent {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
#IndustrialHeroSection .IndustrialHeroContent::before {
  content: "";
  display: block;
  width: 62px;
  height: 7px;
  margin-bottom: 25px;
  background: var(--BrandRed, #ec181b);
}
#IndustrialHeroSection .IndustrialHeroTitle {
  color: var(--BrandWhite, #ffffff);
  font-size: 60px;
  text-transform: capitalize;
  text-shadow: 0 4px 24px rgba(17, 17, 17, 0.38), 0 1px 3px rgba(17, 17, 17, 0.24);
}
#IndustrialHeroSection .IndustrialHeroTitle span {
  display: inline-block;
  white-space: nowrap;
}
#IndustrialHeroSection .PrimaryBtn {
  margin-top: 28px;
}

/*================================================
=            Industrial Story Section
================================================*/
#IndustrialStory {
  padding: 60px 0;
  background: #f7f7f5;
  overflow: hidden;
  position: relative;
}
#IndustrialStory .StoryTopBar {
  margin-bottom: 70px;
}
#IndustrialStory .StoryTopBar .TopRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 18px;
}
#IndustrialStory .StoryTopBar .TopRow:last-child {
  margin-bottom: 0;
}
#IndustrialStory .StoryTopBar .StoryTopItem {
  position: relative;
  font-family: "Aniko";
  font-size: 30px;
  text-transform: uppercase;
  color: #222;
  white-space: nowrap;
}
#IndustrialStory .StoryTopBar .StoryTopItem:not(:last-child)::after {
  content: "+";
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #ec181b;
  font-weight: 300;
}
#IndustrialStory .IndustrialGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  grid-template-areas: "image1 button image2" "about desc timeline" "img3 img4 timeline";
  gap: 48px;
  position: relative;
}
#IndustrialStory .IndustrialGrid .HugeTitle {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  font-size: clamp(90px, 14vw, 220px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -12px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}
#IndustrialStory .IndustrialGrid .GridItem {
  position: relative;
  z-index: 2;
}
#IndustrialStory .IndustrialGrid .GridImage {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
#IndustrialStory .IndustrialGrid .GridImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
#IndustrialStory .IndustrialGrid .GridImage:hover img {
  transform: scale(1.08);
}
#IndustrialStory .IndustrialGrid .GridButton {
  display: flex;
  justify-content: center;
  transform: translateY(0px);
  align-items: flex-start;
  margin-top: 10px;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 65px;
  padding: 10px;
  background: #ef2d38;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  text-transform: uppercase;
  transition: 0.35s ease;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn .BtnIcon {
  width: 18px;
  height: 18px;
  background: #fff;
  transition: 0.35s;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn {
  /* Top Left */
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: -12px;
  left: -12px;
  border-top: 3px solid #111;
  border-left: 3px solid #111;
  transition: 0.35s;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn {
  /* Bottom Right */
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -12px;
  right: -12px;
  border-bottom: 3px solid #111;
  border-right: 3px solid #111;
  transition: 0.35s;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn span:last-child {
  position: relative;
  z-index: 2;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn:hover .BtnIcon {
  transform: rotate(45deg);
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn:hover::before {
  top: -6px;
  left: -6px;
}
#IndustrialStory .IndustrialGrid .GridButton .PrimaryBtn:hover::after {
  bottom: -6px;
  right: -6px;
}
#IndustrialStory .IndustrialGrid .ImageOne {
  height: 284px;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
#IndustrialStory .IndustrialGrid .ImageOne:hover {
  filter: grayscale(0%);
}
#IndustrialStory .IndustrialGrid .ImageOne:hover img {
  transform: scale(1.08);
}
#IndustrialStory .IndustrialGrid .ImageTwo {
  height: 284px;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
#IndustrialStory .IndustrialGrid .ImageTwo:hover {
  filter: grayscale(0%);
}
#IndustrialStory .IndustrialGrid .ImageTwo:hover img {
  transform: scale(1.08);
}
#IndustrialStory .SectionTitle {
  margin: 60px 0px 16px;
}
#IndustrialStory .SectionTitle h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  font-family: "Manrope";
  font-size: clamp(34px, 0vw, 52px);
  text-transform: uppercase;
  color: #111;
  letter-spacing: 1px;
}
#IndustrialStory .SectionTitle h4 span {
  width: 60px;
  height: 2px;
  background: #ef2d38;
  display: block;
}
#IndustrialStory .IndustryBox {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: 0.35s ease;
}
#IndustrialStory .IndustryBox:hover {
  transform: translateY(-8px);
  border-color: #ef2d38;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
#IndustrialStory .IndustryBox:hover .IndustryIcon {
  background: #ef2d38;
}
#IndustrialStory .IndustryBox:hover .IndustryIcon img {
  filter: brightness(0) invert(1);
  transform: scale(1.08);
}
#IndustrialStory .IndustryBox:hover h4 {
  color: #ef2d38;
}
#IndustrialStory .IndustryBox .IndustryIcon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: 0.35s ease;
}
#IndustrialStory .IndustryBox .IndustryIcon img {
  width: 42px;
  transition: 0.35s ease;
}
#IndustrialStory .IndustryBox h4 {
  font-size: 18px;
  font-family: "Aniko";
  text-transform: uppercase;
  line-height: 1.4;
  color: #111;
  margin: 0;
  transition: 0.35s ease;
}
#IndustrialStory {
  /*=========================================
  =            Tablet
  =========================================*/
  /*=========================================
  =            Mobile
  =========================================*/
}

#ServiceList {
  padding: 60px 0;
  background: #f7f7f4;
}
#ServiceList .ServiceListTitle {
  margin-bottom: 75px;
  text-align: center;
}
#ServiceList .ServiceListTitle .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}
#ServiceList .ServiceListTitle .SubTitle::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: currentColor;
}
#ServiceList .ServiceListTitle h2 {
  font-size: 58px;
  line-height: 64px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #111111;
  margin: 0 0 22px;
}
#ServiceList .ServiceListTitle h2 span {
  display: block;
}
#ServiceList .ServiceListTitle p {
  font-size: 18px;
  line-height: 27px;
  color: #686868;
  margin: 0;
  text-align: center;
}
#ServiceList .ServiceListWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#ServiceList .ServiceListItem {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 300px 70px;
  align-items: center;
  min-height: 190px;
  padding: 35px 40px;
  background: #ffffff;
  border: 1px solid #e4e4e1;
  border-radius: 24px;
  color: #111111;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}
#ServiceList .ServiceListItem:hover {
  border-color: #d2d2ce;
  transform: translateY(-4px);
}
#ServiceList .ServiceListItem:hover .ServiceNumber {
  color: #ec181b;
}
#ServiceList .ServiceListItem:hover .ServiceIcon {
  background: #ec181b;
  border-color: #ec181b;
}
#ServiceList .ServiceListItem:hover .ServiceIcon img {
  filter: brightness(0) invert(1);
}
#ServiceList .ServiceListItem:hover .ServiceListContent h3 {
  color: #ec181b;
}
#ServiceList .ServiceListItem:hover .ServicePreview {
  opacity: 1;
}
#ServiceList .ServiceListItem:hover .ServicePreview img {
  transform: scale(1.05);
}
#ServiceList .ServiceListItem:hover .ServiceArrow {
  background: #ec181b;
  border-color: #ec181b;
  transform: rotate(45deg);
}
#ServiceList .ServiceListItem:hover .ServiceArrow svg {
  stroke: #ffffff;
}
#ServiceList .ServiceListMeta {
  display: flex;
  align-items: center;
  gap: 28px;
}
#ServiceList .ServiceNumber {
  min-width: 78px;
  font-size: 64px;
  line-height: 64px;
  font-weight: 600;
  letter-spacing: -4px;
  color: var(--BrandDark);
  transition: color 0.35s ease;
}
#ServiceList .ServiceIcon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f5;
  border: 1px solid #e6e6e2;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
#ServiceList .ServiceIcon img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
#ServiceList .ServiceListContent {
  padding: 0 55px 0 20px;
}
#ServiceList .ServiceListContent h3 {
  max-width: 550px;
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.7px;
  color: #111111;
  transition: color 0.3s ease;
}
#ServiceList .ServiceListContent p {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #707070;
}
#ServiceList .ServicePreview {
  width: 280px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0.75;
  transition: opacity 0.35s ease;
}
#ServiceList .ServicePreview img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#ServiceList .ServiceArrow {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid #d7d7d3;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
#ServiceList .ServiceArrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #111111;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

/*=========================================
=            WHO WE ARE
=========================================*/
#WhoWeAre {
  padding: 90px 0 60px;
  overflow: hidden;
}
#WhoWeAre .PrimaryBtn {
  margin-top: 22px;
}
#WhoWeAre .who-wrapper {
  display: flex;
  gap: 15px;
  align-items: start;
}
#WhoWeAre {
  /*=========================================
  =            Left Section
  =========================================*/
}
#WhoWeAre .WhoLeft {
  width: 70%;
}
#WhoWeAre .WhoLeft h2 {
  font-size: clamp(58px, 2vw, 88px);
  line-height: 68px;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 50px;
  font-weight: 700;
  max-width: 800px;
}
#WhoWeAre .WhoLeft .TitleLine {
  display: block;
  width: 70px;
  height: 4px;
  background: #ec1d24;
  margin-bottom: 30px;
}
#WhoWeAre {
  /*=========================================
  =            Statistics
  =========================================*/
}
#WhoWeAre .WhoStats {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}
#WhoWeAre .WhoStats .StatItem {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
#WhoWeAre .WhoStats .StatItem:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 6px;
  width: 1px;
  height: 55px;
  background: #dedede;
}
#WhoWeAre .WhoStats .StatItem .StatIcon img {
  width: 34px;
  display: block;
}
#WhoWeAre .WhoStats .StatItem .StatContent h4 {
  margin: 0 0 6px;
  font-family: "Manrope";
  font-size: 22px;
  color: #111;
  font-weight: 700;
}
#WhoWeAre .WhoStats .StatItem .StatContent p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}
#WhoWeAre {
  /*=========================================
  =            Middle Section
  =========================================*/
}
#WhoWeAre .WhoMiddle {
  width: 30%;
}
#WhoWeAre .WhoMiddle .InfoItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
#WhoWeAre .WhoMiddle .InfoItem:last-child {
  margin-bottom: 0;
}
#WhoWeAre .WhoMiddle .InfoItem .InfoIcon img {
  width: 36px;
  display: block;
}
#WhoWeAre .WhoMiddle .InfoItem .InfoText p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}
#WhoWeAre {
  /*=========================================
  =            Timeline Wrapper
  =========================================*/
}
#WhoWeAre .WhoTimeline {
  padding-left: 45px;
  border-left: 1px solid #e5e5e5;
}
#WhoWeAre {
  /*=========================================
  =            Image Grid
  =========================================*/
}
#WhoWeAre .ImageFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#WhoWeAre .RightCards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 25%;
}
#WhoWeAre {
  /*=========================================
  =            Image Cards
  =========================================*/
}
#WhoWeAre .ImageCard {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}
#WhoWeAre .ImageCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
#WhoWeAre .ImageCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.05));
  z-index: 1;
}
#WhoWeAre .ImageCard:hover img {
  transform: scale(1.08);
}
#WhoWeAre .LargeCard {
  width: 50%;
}
#WhoWeAre .ImageCard {
  height: 400px;
}
#WhoWeAre {
  /*=========================================
  =            Card Overlay
  =========================================*/
}
#WhoWeAre .CardOverlay {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 20px;
  z-index: 5;
}
#WhoWeAre .CardOverlay h5 {
  margin: 0 0 4px;
  color: #fff;
  font-family: "Manrope";
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 900;
}
#WhoWeAre .CardOverlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}
#WhoWeAre {
  /*=========================================
  =            Timeline
  =========================================*/
}
#WhoWeAre .WhoTimeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}
#WhoWeAre {
  /*=========================================
  =            Timeline Step
  =========================================*/
}
#WhoWeAre .TimelineStep {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}
#WhoWeAre .StepIcon {
  width: 105px;
  height: 105px;
  border: 2px solid #ec1d24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}
#WhoWeAre .StepIcon img {
  width: 48px;
}
#WhoWeAre .StepContent {
  padding-top: 12px;
}
#WhoWeAre .StepContent span {
  display: block;
  color: #ec1d24;
  font-size: 52px;
  font-family: "Aniko";
  line-height: 1;
  margin-bottom: 10px;
}
#WhoWeAre .StepContent h4 {
  margin: 0 0 12px;
  font-family: "Aniko";
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
  color: #111;
}
#WhoWeAre .StepContent p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 260px;
}
#WhoWeAre {
  /*=========================================
  =            Curved Arrow
  =========================================*/
}
#WhoWeAre .TimelineArrow {
  width: 140px;
  margin: -22px 0 -22px 65px;
  display: block;
}
#WhoWeAre .TimelineArrow:nth-of-type(2) {
  margin-left: 120px;
  transform: scaleX(-1);
}
#WhoWeAre {
  /*=========================================
  =            Small Premium Hover
  =========================================*/
}
#WhoWeAre .StepIcon,
#WhoWeAre .ImageCard,
#WhoWeAre .StatItem {
  transition: 0.4s;
}
#WhoWeAre .TimelineStep:hover .StepIcon {
  background: #ec1d24;
  transform: translateY(-6px);
}
#WhoWeAre .TimelineStep:hover .StepIcon img {
  filter: brightness(0) invert(1);
}
#WhoWeAre .ImageCard:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}
#WhoWeAre {
  /*=========================================
  =            Large Desktop
  =========================================*/
}

/*=========================================
=            Laptop
=========================================*/
/*=========================================
=            Tablet
=========================================*/
/*=========================================
=            Mobile
=========================================*/
#WhyChooseUsSection {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  overflow: clip;
  padding: 120px 0 0;
  background: radial-gradient(circle at 24% 32%, rgba(255, 247, 235, 0.82) 0%, rgba(247, 247, 245, 0.6) 34%, rgba(247, 247, 245, 0) 65%), var(--BrandBackground);
  color: var(--BrandText);
  font-family: var(--BodyFont);
  /* ==========================================
       LARGE BACKGROUND TEXT
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsBackgroundText {
  position: absolute;
  top: 38px;
  left: -10px;
  z-index: 0;
  color: rgba(17, 17, 17, 0.035);
  font-family: var(--HeadingFont);
  font-size: 295px;
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -8px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#WhyChooseUsSection {
  /* ==========================================
       BLUEPRINT DECORATION
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsBlueprint {
  position: absolute;
  right: -90px;
  bottom: -30px;
  z-index: 0;
  width: 430px;
  height: 560px;
  opacity: 0.1;
  background-image: linear-gradient(rgba(17, 17, 17, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.13) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, #000 30%, #000 100%);
}
#WhyChooseUsSection {
  /* ==========================================
       LEFT BACKGROUND IMAGE
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsImage {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 42%;
  pointer-events: none;
}
#WhyChooseUsSection .WhyChooseUsImage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, var(--BrandBackground) 0%, rgba(247, 247, 245, 0.78) 12%, rgba(247, 247, 245, 0.2) 40%, rgba(247, 247, 245, 0) 65%), linear-gradient(90deg, rgba(247, 247, 245, 0) 0%, rgba(247, 247, 245, 0) 65%, var(--BrandBackground) 100%);
}
#WhyChooseUsSection .WhyChooseUsImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(0.9);
}
#WhyChooseUsSection .container {
  position: relative;
  z-index: 3;
}
#WhyChooseUsSection {
  /* ==========================================
       MAIN LAYOUT
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsLayout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 43%) 6% minmax(0, 51%);
  min-height: 780px;
  align-items: stretch;
}
#WhyChooseUsSection {
  /* ==========================================
       LEFT SIDE
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsLeft {
  position: relative;
  padding-top: 40px;
  padding-right: 72px;
}
#WhyChooseUsSection .WhyChooseUsLeft .SectionTitle {
  max-width: 560px;
}
#WhyChooseUsSection .WhyChooseUsLeft .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--BrandRed);
  font-family: var(--BodyFont);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
#WhyChooseUsSection .WhyChooseUsLeft .SectionTitle h2 {
  max-width: 570px;
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-size: 66px;
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -1px;
  text-transform: uppercase;
}
#WhyChooseUsSection .WhyChooseUsLeft .SectionTitle h2 span {
  display: block;
  margin-top: 7px;
  color: var(--BrandRed);
}
#WhyChooseUsSection .WhyChooseUsLeft .SectionTitle p {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--BrandText);
  font-family: var(--BodyFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}
#WhyChooseUsSection .WhyChooseUsLeft .PrimaryBtn {
  margin-top: 32px;
}
#WhyChooseUsSection {
  /* ==========================================
       COORDINATES
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsCoordinates {
  position: absolute;
  left: 0;
  bottom: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--BrandWhite);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
#WhyChooseUsSection .WhyChooseUsCoordinateCross {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}
#WhyChooseUsSection .WhyChooseUsCoordinateCross::before,
#WhyChooseUsSection .WhyChooseUsCoordinateCross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
}
#WhyChooseUsSection .WhyChooseUsCoordinateCross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
#WhyChooseUsSection .WhyChooseUsCoordinateCross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}
#WhyChooseUsSection {
  /* ==========================================
       CENTER TIMELINE
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsTimeline {
  position: relative;
  top: 0px;
  align-self: start;
  height: calc(100vh - 100px);
}
#WhyChooseUsSection .WhyChooseUsTimelineBase,
#WhyChooseUsSection .WhyChooseUsTimelineProgress {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
#WhyChooseUsSection .WhyChooseUsTimelineBase {
  height: calc(100% - 150px);
  background: rgba(17, 17, 17, 0.2);
}
#WhyChooseUsSection .WhyChooseUsTimelineProgress {
  height: 0;
  background: linear-gradient(180deg, #ff7a32 0%, var(--BrandRed) 100%);
}
#WhyChooseUsSection .WhyChooseUsTimelineTopMarker {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--BrandRed);
  box-shadow: 0 0 0 4px var(--BrandBackground), 0 0 0 5px var(--BrandRed);
  transform: translateX(-50%);
}
#WhyChooseUsSection .WhyChooseUsTimelineTopMarker::before,
#WhyChooseUsSection .WhyChooseUsTimelineTopMarker::after {
  content: "";
  position: absolute;
  background: rgba(241, 118, 50, 0.55);
}
#WhyChooseUsSection .WhyChooseUsTimelineTopMarker::before {
  top: 50%;
  left: -30px;
  width: 78px;
  height: 1px;
}
#WhyChooseUsSection .WhyChooseUsTimelineTopMarker::after {
  top: -30px;
  left: 50%;
  width: 1px;
  height: 78px;
}
#WhyChooseUsSection .WhyChooseUsTimelineNode {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 3px solid var(--BrandBackground);
  border-radius: 50%;
  background: var(--BrandBlack);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12);
}
#WhyChooseUsSection .WhyChooseUsTimelineNode01 {
  top: 31%;
}
#WhyChooseUsSection .WhyChooseUsTimelineNode02 {
  top: 56%;
}
#WhyChooseUsSection .WhyChooseUsTimelineNode03 {
  top: 81%;
}
#WhyChooseUsSection {
  /* ==========================================
       RIGHT SIDE
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsProof {
  position: static;
  top: 100px;
  align-self: start;
  padding-left: 22px;
}
#WhyChooseUsSection .WhyChooseUsProofItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 185px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}
#WhyChooseUsSection .WhyChooseUsProofItem:first-child {
  padding-top: 0;
}
#WhyChooseUsSection {
  /* ==========================================
       NUMBER
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsNumber {
  flex: 0 0 90px;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -2px;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#WhyChooseUsSection .WhyChooseUsProofItem.is-active .WhyChooseUsNumber {
  color: var(--BrandRed);
}
#WhyChooseUsSection {
  /* ==========================================
       ICON
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsIcon {
  position: relative;
  flex: 0 0 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-height: 76px;
  color: var(--BrandRed);
}
#WhyChooseUsSection .WhyChooseUsIcon::before,
#WhyChooseUsSection .WhyChooseUsIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 70px;
  background: rgba(17, 17, 17, 0.18);
  transform: translateY(-50%);
}
#WhyChooseUsSection .WhyChooseUsIcon::before {
  left: 0;
}
#WhyChooseUsSection .WhyChooseUsIcon::after {
  right: 0;
}
#WhyChooseUsSection .WhyChooseUsIcon svg {
  display: block;
  width: 78px;
  height: 78px;
}
#WhyChooseUsSection {
  /* ==========================================
       RIGHT CONTENT
    ========================================== */
}
#WhyChooseUsSection .WhyChooseUsProofContent {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 32px;
}
#WhyChooseUsSection .WhyChooseUsProofContent h3 {
  max-width: 410px;
  margin: 0 0 12px;
  color: var(--BrandBlack);
  font-family: var(--BodyFont);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
#WhyChooseUsSection .WhyChooseUsProofContent p {
  max-width: 405px;
  margin: 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
}

/*=========================================
=            EXPERIENCE SECTION
=========================================*/
#ExperienceSection {
  position: relative;
  padding: 80px 0 160px;
  overflow: hidden;
  /*=========================
  Background Image
  =========================*/
}
#ExperienceSection .ExperienceBG {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
#ExperienceSection .ExperienceBG img {
  width: 100%;
  display: block;
  opacity: 0.22;
  -o-object-fit: cover;
     object-fit: cover;
}
#ExperienceSection .container {
  position: relative;
  z-index: 2;
}
#ExperienceSection {
  /*=========================
  Section Title
  =========================*/
}
#ExperienceSection .SectionTitle {
  text-align: center;
  margin-bottom: 20px;
}
#ExperienceSection .SectionTitle h2 {
  font-size: clamp(58px, 3vw, 86px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 28px;
  font-weight: 700;
}
#ExperienceSection .SectionTitle p {
  max-width: 760px;
  margin: auto;
  font-size: 21px;
  line-height: 1.8;
  color: #666;
}
#ExperienceSection {
  /*=========================
  Slider Wrapper
  =========================*/
}
#ExperienceSection .ExperienceSliderWrapper {
  position: relative;
  display: flex;
  align-items: center;
}
#ExperienceSection .ExperienceSlider {
  width: 100%;
}
#ExperienceSection {
  /*=========================
  Navigation Buttons
  =========================*/
}
#ExperienceSection .SliderNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 66px;
  height: 66px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s ease;
}
#ExperienceSection .SliderNav i {
  font-size: 20px;
  color: #ef2d38;
  transition: 0.35s;
}
#ExperienceSection .SliderNav:hover {
  background: #ef2d38;
  transform: translateY(-50%) scale(1.08);
}
#ExperienceSection .SliderNav:hover i {
  color: #fff;
}
#ExperienceSection .PrevBtn {
  left: -35px;
}
#ExperienceSection .NextBtn {
  right: -35px;
}
#ExperienceSection .ExperienceSlider .owl-stage {
  display: flex;
}
#ExperienceSection .ExperienceSlider .owl-item {
  display: flex;
  height: auto;
}
#ExperienceSection .ExperienceSlider .owl-stage-outer {
  overflow: visible;
}
#ExperienceSection .ExperienceSlider .owl-item.active {
  opacity: 1;
}
#ExperienceSection .ExperienceSlider .owl-item:not(.active) {
  opacity: 0.35;
}
#ExperienceSection .ExperienceItem {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 25px 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: 0.45s ease;
  overflow: hidden;
}
#ExperienceSection .ExperienceItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}
#ExperienceSection .QuoteIcon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#ExperienceSection .QuoteIcon i {
  font-size: 34px;
  color: #ef2d38;
}
#ExperienceSection .Review {
  font-size: 20px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}
#ExperienceSection .ClientInfo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}
#ExperienceSection .ClientImage {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
#ExperienceSection .ClientImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#ExperienceSection .ClientContent h5 {
  margin: 0 0 5px;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #111;
}
#ExperienceSection .ClientContent span {
  display: block;
  color: #888;
  font-size: 15px;
  letter-spacing: 0.5px;
}
#ExperienceSection .ExperienceItem:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 0;
  background: #ef2d38;
  transition: 0.45s;
}
#ExperienceSection .ExperienceItem:hover:before {
  height: 100%;
}
#ExperienceSection .ExperienceItem:hover .QuoteIcon {
  background: #ef2d38;
}
#ExperienceSection .ExperienceItem:hover .QuoteIcon i {
  color: #fff;
}
#ExperienceSection .ExperienceItem:hover .ClientImage {
  transform: scale(1.05);
}
#ExperienceSection .ClientImage {
  transition: 0.4s;
}
#ExperienceSection .QuoteIcon {
  transition: 0.4s;
}
#ExperienceSection .ExperienceSlider .owl-item {
  padding: 18px;
}

/*====================================
            FOOTER
====================================*/
#FooterSection {
  background: #111;
  padding-top: 180px;
  position: relative;
}
#FooterSection .FooterCTA {
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  margin-top: -110px;
  margin-bottom: 80px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}
#FooterSection .FooterCTA .FooterTag {
  display: inline-block;
  color: #c8102e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#FooterSection .FooterCTA h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
}
#FooterSection .FooterCTA p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  max-width: 520px;
}
#FooterSection .FooterCTA .NewsletterForm {
  display: flex;
  overflow: hidden;
  background: #f4f4f4;
}
#FooterSection .FooterCTA .NewsletterForm input {
  flex: 1;
  height: 52px;
  border: none;
  background: transparent;
  padding: 0 25px;
  outline: none;
  font-size: 15px;
}
#FooterSection .FooterCTA .NewsletterForm button {
  background: #ef2d38;
  color: #fff;
  border: none;
  padding: 0 35px;
  font-weight: 600;
  transition: 0.3s;
}
#FooterSection .FooterCTA .NewsletterForm button:hover {
  background: #111;
}
#FooterSection .FooterMain {
  color: #fff;
}
#FooterSection .FooterMain .FooterLogo {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 25px;
}
#FooterSection .FooterMain .FooterLogo span {
  color: #c8102e;
}
#FooterSection .FooterMain .FooterAbout {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  max-width: 360px;
}
#FooterSection .FooterMain h5 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
}
#FooterSection .FooterMain ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#FooterSection .FooterMain ul li {
  margin-bottom: 14px;
}
#FooterSection .FooterMain ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s;
  display: block;
}
#FooterSection .FooterMain ul li a:hover {
  color: #c8102e;
  padding-left: 6px;
}
#FooterSection .FooterMain .FooterSocial {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}
#FooterSection .FooterMain .FooterSocial a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}
#FooterSection .FooterMain .FooterSocial a:hover {
  background: #c8102e;
  transform: translateY(-5px);
}
#FooterSection .FooterMain .FooterContact {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
#FooterSection .FooterMain .FooterBottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#FooterSection .FooterMain .FooterBottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

#OutsetHowItWorks {
  position: relative;
  padding: 112px 0;
  overflow: clip;
  background: radial-gradient(circle at 48% 20%, rgba(237, 40, 56, 0.035), transparent 25%), #f7f5f0;
  color: #11181e;
}
#OutsetHowItWorks .PrimaryBtn {
  margin-top: 24px;
}
#OutsetHowItWorks .OutsetProcessLayout {
  display: grid;
  grid-template-columns: minmax(260px, 29%) minmax(360px, 38%) minmax(260px, 1fr);
  align-items: start;
  gap: 72px;
}
#OutsetHowItWorks {
  /* ==========================================
     LEFT STICKY INTRO
  ========================================== */
}
#OutsetHowItWorks .OutsetProcessIntro {
  position: sticky;
  top: 128px;
  min-width: 0;
}
#OutsetHowItWorks .OutsetProcessIntro h2 {
  margin: 0;
  color: #11181e;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 62px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
}
#OutsetHowItWorks .OutsetProcessIntro h2 span {
  color: var(--BrandRed, #ed2838);
}
#OutsetHowItWorks .OutsetProcessIntro p {
  max-width: 480px;
  margin: 32px 0 0;
  color: #606468;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  line-height: 1.7;
}
#OutsetHowItWorks .OutsetProcessIntroInner {
  position: relative;
}
#OutsetHowItWorks .OutsetProcessSubTitle {
  position: relative;
  display: inline-block;
  margin-bottom: 52px;
  color: var(--BrandRed, #ed2838);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#OutsetHowItWorks .OutsetProcessSubTitle::after {
  content: "";
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  width: 45px;
  height: 1px;
  background: currentColor;
}
#OutsetHowItWorks .OutsetProcessButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 34px;
  padding: 17px 24px;
  background: #10171d;
  color: #fff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#OutsetHowItWorks .OutsetProcessButton svg {
  flex: 0 0 auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#OutsetHowItWorks .OutsetProcessButton:hover {
  background: var(--BrandRed, #ed2838);
  transform: translateY(-3px);
}
#OutsetHowItWorks .OutsetProcessButton:hover svg {
  transform: translate(3px, -3px);
}
#OutsetHowItWorks .OutsetProcessButton:focus-visible {
  outline: 2px solid var(--BrandRed, #ed2838);
  outline-offset: 4px;
}
#OutsetHowItWorks .OutsetProcessProgress {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 192px;
  max-width: 100%;
  margin-top: 64px;
  color: #96999b;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
}
#OutsetHowItWorks .OutsetProcessProgress .CurrentStep {
  color: var(--BrandRed, #ed2838);
}
#OutsetHowItWorks .OutsetProcessProgress .ProgressLine {
  position: relative;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(17, 24, 30, 0.16);
}
#OutsetHowItWorks .OutsetProcessProgress .ProgressLine span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: var(--BrandRed, #ed2838);
}
#OutsetHowItWorks {
  /* ==========================================
     CENTER PROGRESSIVE IMAGE STACK
  ========================================== */
}
#OutsetHowItWorks .OutsetProcessVisualStack {
  position: relative;
  min-width: 0;
}
#OutsetHowItWorks .OutsetProcessPiece {
  position: sticky;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 34vh;
  pointer-events: none;
}
#OutsetHowItWorks .OutsetProcessPiece .OutsetProcessPieceInner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
#OutsetHowItWorks .OutsetProcessPiece .OutsetProcessPieceInner::after {
  content: "";
  position: absolute;
  bottom: 3%;
  left: 50%;
  z-index: -1;
  width: 52%;
  height: 10%;
  background: rgba(17, 24, 30, 0.13);
  border-radius: 50%;
  filter: blur(20px);
  transform: translateX(-50%);
}
#OutsetHowItWorks .OutsetProcessPiece img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#OutsetHowItWorks .OutsetProcessPieceLand {
  top: 72px;
  z-index: 6;
}
#OutsetHowItWorks .OutsetProcessPieceLand img {
  max-width: 448px;
}
#OutsetHowItWorks .OutsetProcessPiecePlan {
  top: 150px;
  z-index: 5;
}
#OutsetHowItWorks .OutsetProcessPiecePlan img {
  max-width: 464px;
}
#OutsetHowItWorks .OutsetProcessPieceBuild {
  top: 218px;
  z-index: 4;
}
#OutsetHowItWorks .OutsetProcessPieceBuild img {
  max-width: 480px;
}
#OutsetHowItWorks .OutsetProcessPiecePlant {
  top: 150px;
  z-index: 7;
  margin-bottom: 0;
  padding-bottom: 32vh;
  background: #f7f5f0;
}
#OutsetHowItWorks .OutsetProcessPiecePlant img {
  max-width: 512px;
}
#OutsetHowItWorks {
  /* ==========================================
     RIGHT SCROLLING STEPS
  ========================================== */
}
#OutsetHowItWorks .OutsetProcessSteps {
  min-width: 0;
}
#OutsetHowItWorks .OutsetProcessStep {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 75vh;
  padding: 72px 0;
  opacity: 0.38;
  transition: opacity 0.55s ease;
}
#OutsetHowItWorks .OutsetProcessStep:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 30, 0.1), transparent);
}
#OutsetHowItWorks .OutsetProcessStep:last-child {
  min-height: 70vh;
}
#OutsetHowItWorks .OutsetProcessStep:last-child::after {
  display: none;
}
#OutsetHowItWorks .OutsetProcessStep.is-active {
  opacity: 1;
}
#OutsetHowItWorks .OutsetProcessStep.is-active .OutsetProcessStepInner {
  transform: translateY(-4px);
}
#OutsetHowItWorks .OutsetProcessStep h3 {
  margin: 0 0 9px;
  color: #11181e;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
#OutsetHowItWorks .OutsetProcessStep p {
  max-width: 352px;
  margin: 0;
  color: #63676a;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  line-height: 1.65;
}
#OutsetHowItWorks .OutsetProcessStepInner {
  position: relative;
  width: 100%;
  max-width: 384px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#OutsetHowItWorks .OutsetProcessStepInner::before {
  content: "";
  position: absolute;
  top: 32px;
  right: calc(100% + 16px);
  width: 80px;
  border-top: 1px solid rgba(17, 24, 30, 0.16);
}
#OutsetHowItWorks .OutsetProcessStepTop {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
#OutsetHowItWorks .OutsetProcessNumber {
  color: var(--BrandRed, #ed2838);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 60px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
#OutsetHowItWorks .OutsetProcessDivider {
  width: 1px;
  height: 48px;
  background: rgba(17, 24, 30, 0.18);
}
#OutsetHowItWorks .OutsetProcessIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  aspect-ratio: 1;
  color: var(--BrandRed, #ed2838);
}
#OutsetHowItWorks .OutsetProcessIcon svg {
  display: block;
  width: 100%;
}
#OutsetHowItWorks .OutsetProcessIcon svg * {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#OutsetHowItWorks {
  /* Added automatically by script.js for the phone layout. */
}
#OutsetHowItWorks .OutsetProcessStepVisual {
  display: none;
}

#AboutOverview {
  padding: 120px 0;
  background: #f8f8f6;
  position: relative;
  overflow: hidden;
}
#AboutOverview .AboutContent .SubTitle {
  display: inline-block;
  color: #ef2d38;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  padding-right: 70px;
}
#AboutOverview .AboutContent .SubTitle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 55px;
  height: 2px;
  background: #ef2d38;
  transform: translateY(-50%);
}
#AboutOverview .AboutContent h2 {
  font-family: "Aniko";
  font-size: clamp(52px, 5vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 30px;
}
#AboutOverview .AboutContent p {
  font-size: 18px;
  line-height: 1.9;
  color: #666;
  margin: 0;
}
#AboutOverview .AboutImage {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  max-width: 400px;
  margin: auto;
}
#AboutOverview .AboutImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
  display: block;
  filter: grayscale(100%);
}
#AboutOverview .AboutImage:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}
#AboutOverview .ExperienceCard {
  position: relative;
  background: #111;
  border-radius: 32px;
  padding: 55px;
  min-height: 420px;
  overflow: visible;
}
#AboutOverview .ExperienceCard .ExperiencePattern {
  position: absolute;
  inset: 0;
  background: url("assets/images/line.png") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}
#AboutOverview .ExperienceCard .ExperienceContent {
  position: relative;
  z-index: 2;
}
#AboutOverview .ExperienceCard .ExperienceContent h3 {
  font-size: 90px;
  color: #fff;
  margin-bottom: 5px;
  font-family: "Aniko";
}
#AboutOverview .ExperienceCard .ExperienceContent p {
  color: #fff;
  font-size: 22px;
}
#AboutOverview .ExperienceCard .ServiceTags {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#AboutOverview .ExperienceCard .ServiceTags span {
  background: #fff;
  color: #111;
  border-radius: 60px;
  padding: 14px 28px;
  font-weight: 600;
  transition: 0.35s;
}
#AboutOverview .ExperienceCard .ServiceTags span {
  opacity: 0;
  transform: translateY(-80px) rotate(-8deg);
  animation: DropTag 0.7s forwards;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(1) {
  animation-delay: 0.2s;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(2) {
  animation-delay: 0.35s;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(3) {
  animation-delay: 0.5s;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(4) {
  animation-delay: 0.65s;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(5) {
  animation-delay: 0.8s;
}
#AboutOverview .ExperienceCard .ServiceTags span:nth-child(6) {
  animation-delay: 0.95s;
}
#AboutOverview .ExperienceCard .ServiceTags span:hover {
  background: #ef2d38;
  color: #fff;
}
#AboutOverview .ExperienceCard .ExperienceImage {
  position: absolute;
  right: 45px;
  bottom: 70px;
  width: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
#AboutOverview .ExperienceCard .ExperienceImage img {
  width: 100%;
  display: block;
}
#AboutOverview .SmallImage {
  min-height: 100%;
}
@keyframes DropTag {
  0% {
    opacity: 0;
    transform: translateY(-120px) rotate(-15deg);
  }
  70% {
    transform: translateY(12px) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

#InnerPageHero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #111111;
}
#InnerPageHero .container {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 680px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#InnerPageHero {
  /* ==========================================
       BACKGROUND IMAGE
    ========================================== */
}
#InnerPageHero .InnerPageHeroMedia {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
#InnerPageHero .InnerPageHeroMedia img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.03);
}
#InnerPageHero {
  /* ==========================================
       OVERLAY
    ========================================== */
}
#InnerPageHero .InnerPageHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 12, 15, 0.9) 0%, rgba(8, 12, 15, 0.7) 42%, rgba(8, 12, 15, 0.28) 72%, rgba(8, 12, 15, 0.12) 100%), linear-gradient(0deg, rgba(8, 12, 15, 0.88) 0%, rgba(8, 12, 15, 0.18) 55%, rgba(8, 12, 15, 0.38) 100%);
}
#InnerPageHero {
  /* ==========================================
       FRAME CORNERS
    ========================================== */
}
#InnerPageHero .InnerPageHeroFrame {
  position: absolute;
  inset: 34px;
  z-index: 4;
  pointer-events: none;
}
#InnerPageHero .InnerPageHeroFrame span {
  position: absolute;
  width: 34px;
  height: 34px;
}
#InnerPageHero {
  /* ==========================================
       TOP AREA
    ========================================== */
}
#InnerPageHero .InnerPageHeroTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 150px;
}
#InnerPageHero .InnerPageBreadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#InnerPageHero .InnerPageBreadcrumb a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.3s ease;
}
#InnerPageHero .InnerPageBreadcrumb a:hover {
  color: #ffffff;
}
#InnerPageHero .InnerPageBreadcrumb svg {
  display: block;
}
#InnerPageHero .InnerPageBreadcrumb > span:last-child {
  color: #ffffff;
}
#InnerPageHero .InnerPageHeroCode {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#InnerPageHero {
  /* ==========================================
       BOTTOM AREA
    ========================================== */
}
#InnerPageHero .InnerPageHeroBottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 80px;
}
#InnerPageHero .InnerPageHeroContent {
  max-width: 930px;
}
#InnerPageHero .InnerPageHeroLabel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#InnerPageHero .InnerPageHeroLabel span {
  width: 42px;
  height: 2px;
  display: block;
  background: currentColor;
}
#InnerPageHero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
#InnerPageHero h1 span {
  display: block;
  color: #ffffff;
}
#InnerPageHero p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
#InnerPageHero {
  /* ==========================================
       RIGHT PAGE DETAIL
    ========================================== */
}
#InnerPageHero .InnerPageHeroSide {
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
#InnerPageHero .InnerPageHeroSideNumber {
  color: var(--BrandRed, #ec181b);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
#InnerPageHero .InnerPageHeroSide div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#InnerPageHero .InnerPageHeroSide small {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#InnerPageHero .InnerPageHeroSide strong {
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
#InnerPageHero {
  /* ==========================================
       BOTTOM ACCENT
    ========================================== */
}
#InnerPageHero .InnerPageHeroAccent {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  width: 180px;
  height: 5px;
  background: var(--BrandRed, #ec181b);
}
#InnerPageHero .InnerPageHeroAccent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 180px;
  width: 70px;
  height: 5px;
  background: rgba(255, 255, 255, 0.45);
}

#WhatWeHelpWith {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: #f5f3ee;
  /* ==========================================
       SECTION HEADING
    ========================================== */
}
#WhatWeHelpWith .WhatHelpTitle {
  padding-bottom: 50px;
}
#WhatWeHelpWith .WhatHelpTitle .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}
#WhatWeHelpWith .WhatHelpTitle .SubTitle::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: currentColor;
}
#WhatWeHelpWith .WhatHelpTitle h2 {
  max-width: 1250px;
  margin: 0;
  color: #0b0c0d;
  font-size: clamp(46px, 3.8vw, 66px);
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -1px;
}
#WhatWeHelpWith .WhatHelpTitle p {
  max-width: 950px;
  margin: 22px 0 0;
  color: #666a6d;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
#WhatWeHelpWith {
  /* ==========================================
       PANEL
    ========================================== */
}
#WhatWeHelpWith .WhatHelpPanel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #090a0b;
  box-shadow: 0 35px 80px rgba(17, 17, 17, 0.12), 0 10px 25px rgba(17, 17, 17, 0.08);
}
#WhatWeHelpWith {
  /* ==========================================
       IMAGE AREA
    ========================================== */
}
#WhatWeHelpWith .WhatHelpVisual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/760;
  overflow: hidden;
  background: #d6d1c7;
}
#WhatWeHelpWith .WhatHelpImage {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, clip-path;
}
#WhatWeHelpWith .WhatHelpImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  will-change: transform;
}
#WhatWeHelpWith .WhatHelpImage.active {
  opacity: 1;
  visibility: visible;
}
#WhatWeHelpWith .WhatHelpImageOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.16) 0%, rgba(8, 10, 12, 0.02) 34%, rgba(8, 10, 12, 0) 60%, rgba(8, 10, 12, 0.22) 100%), linear-gradient(90deg, rgba(8, 10, 12, 0.08) 0%, transparent 18%, transparent 82%, rgba(8, 10, 12, 0.08) 100%);
}
#WhatWeHelpWith {
  /* ==========================================
       TOP NAVIGATION
    ========================================== */
}
#WhatWeHelpWith .WhatHelpNavigation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 215px;
  padding: 24px 110px 0;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.26) 0%, rgba(7, 9, 10, 0) 100%);
}
#WhatWeHelpWith .WhatHelpSteps {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
#WhatWeHelpWith .WhatHelpStep {
  position: relative;
  width: 20%;
  height: 178px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}
#WhatWeHelpWith .WhatHelpStep .WhatHelpLargeNumber {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.92);
  font-family: "Bebas Neue", var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 112px;
  font-weight: 500;
  line-height: 1;
  opacity: 1;
  transition: color 0.4s ease, opacity 0.4s ease, transform 0.4s ease, -webkit-text-stroke 0.4s ease;
}
#WhatWeHelpWith .WhatHelpStep .WhatHelpStepDot {
  position: absolute;
  top: 121px;
  left: 50%;
  z-index: 5;
  width: 11px;
  height: 11px;
  border: 2px solid var(--BrandRed, #ec181b);
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
  transform: translateX(-50%);
  transition: width 0.35s ease, height 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
#WhatWeHelpWith .WhatHelpStep .WhatHelpStepName {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 36px;
  padding: 5px 12px;
  border-radius: 30px;
  color: #121416;
  font-family: "Bebas Neue", var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}
#WhatWeHelpWith .WhatHelpStep:hover .WhatHelpLargeNumber {
  opacity: 1;
  transform: translateY(-3px);
}
#WhatWeHelpWith .WhatHelpStep:hover .WhatHelpStepName {
  background: rgba(255, 255, 255, 0.18);
}
#WhatWeHelpWith .WhatHelpStep.active .WhatHelpLargeNumber {
  color: var(--BrandRed, #ec181b);
  opacity: 1;
  -webkit-text-stroke: 1px var(--BrandRed, #ec181b);
  transform: translateY(-4px);
}
#WhatWeHelpWith .WhatHelpStep.active .WhatHelpStepDot {
  width: 16px;
  height: 16px;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 0 7px rgba(236, 24, 27, 0.18), 0 6px 18px rgba(236, 24, 27, 0.35);
}
#WhatWeHelpWith .WhatHelpStep.active .WhatHelpStepName {
  color: #ffffff;
  background: rgba(14, 16, 18, 0.82);
  backdrop-filter: blur(8px);
  transform: translateY(3px);
  text-shadow: none;
}
#WhatWeHelpWith {
  /* ==========================================
       TRACK
    ========================================== */
}
#WhatWeHelpWith .WhatHelpTrack {
  position: absolute;
  top: 150px;
  left: 180px;
  right: 180px;
  z-index: 2;
  height: 2px;
}
#WhatWeHelpWith .WhatHelpTrackBase,
#WhatWeHelpWith .WhatHelpTrackFill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
#WhatWeHelpWith .WhatHelpTrackBase {
  background: rgba(255, 255, 255, 0.62);
}
#WhatWeHelpWith .WhatHelpTrackFill {
  background: var(--BrandRed, #ec181b);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(236, 24, 27, 0.42);
  will-change: transform;
}
#WhatWeHelpWith {
  /* ==========================================
       ARROWS
    ========================================== */
  /* ==========================================
     PREVIOUS AND NEXT BUTTONS
  ========================================== */
}
#WhatWeHelpWith .WhatHelpPrev,
#WhatWeHelpWith .WhatHelpNext {
  position: absolute;
  top: 130px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(236, 24, 27, 0.25);
  transition: background-color 0.35s ease, transform 0.35s ease;
}
#WhatWeHelpWith .WhatHelpPrev svg,
#WhatWeHelpWith .WhatHelpNext svg {
  pointer-events: none;
}
#WhatWeHelpWith .WhatHelpPrev:hover,
#WhatWeHelpWith .WhatHelpNext:hover {
  background: #101214;
}
#WhatWeHelpWith .WhatHelpPrev {
  left: 42px;
}
#WhatWeHelpWith .WhatHelpPrev:hover {
  transform: translateX(-4px);
}
#WhatWeHelpWith .WhatHelpNext {
  right: 42px;
}
#WhatWeHelpWith .WhatHelpNext:hover {
  transform: translateX(4px);
}
#WhatWeHelpWith {
  /* ==========================================
       BOTTOM BAR
    ========================================== */
}
#WhatWeHelpWith .WhatHelpBottomBar {
  position: relative;
  z-index: 8;
  min-height: 124px;
  padding: 28px 55px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #050607 0%, #111315 55%, #070809 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#WhatWeHelpWith {
  /* ==========================================
       PAGINATION
    ========================================== */
}
#WhatWeHelpWith .WhatHelpPagination {
  flex: 0 0 255px;
  display: flex;
  align-items: center;
}
#WhatWeHelpWith .WhatHelpPaginationItem {
  position: relative;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
#WhatWeHelpWith .WhatHelpPaginationItem:not(:last-child) {
  margin-right: 43px;
}
#WhatWeHelpWith .WhatHelpPaginationItem:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}
#WhatWeHelpWith .WhatHelpPaginationItem:hover {
  border-color: var(--BrandRed, #ec181b);
}
#WhatWeHelpWith .WhatHelpPaginationItem.active {
  border-color: var(--BrandRed, #ec181b);
  background: var(--BrandRed, #ec181b);
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(236, 24, 27, 0.13), 0 5px 14px rgba(236, 24, 27, 0.28);
}
#WhatWeHelpWith {
  /* ==========================================
       ACTIVE TITLE
    ========================================== */
}
#WhatWeHelpWith .WhatHelpActiveTitle {
  flex: 0 0 440px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
#WhatWeHelpWith .WhatHelpCurrentNumber {
  color: var(--BrandRed, #ec181b);
  font-family: "Bebas Neue", var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 1;
}
#WhatWeHelpWith .WhatHelpTitleDivider {
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 27px;
  font-weight: 400;
}
#WhatWeHelpWith .WhatHelpCurrentTitle {
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#WhatWeHelpWith {
  /* ==========================================
       DESCRIPTION
    ========================================== */
}
#WhatWeHelpWith .WhatHelpDescriptionWrap {
  flex: 1;
  min-width: 0;
  padding-left: 38px;
}
#WhatWeHelpWith .WhatHelpCurrentDescription {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
#WhatWeHelpWith {
  /* ==========================================
       AUTOPLAY INDICATOR
    ========================================== */
}
#WhatWeHelpWith .WhatHelpAutoProgress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
#WhatWeHelpWith .WhatHelpAutoProgress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--BrandRed, #ec181b);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(236, 24, 27, 0.5);
}

#IndustrialLandSearchSupport {
  position: relative;
  padding: 40px 0 110px;
  background: #f5f3ee;
  overflow: hidden;
}
#IndustrialLandSearchSupport .LandSupportFrame {
  position: relative;
}
#IndustrialLandSearchSupport {
  /* ==========================================
     TOP META STRIP
  ========================================== */
}
#IndustrialLandSearchSupport .LandSupportMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 6px;
}
#IndustrialLandSearchSupport .LandMetaLeftMark {
  width: 42px;
  min-width: 42px;
  height: 42px;
  position: relative;
}
#IndustrialLandSearchSupport .LandMetaLeftMark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
}
#IndustrialLandSearchSupport .LandMetaLeftMark span::before, #IndustrialLandSearchSupport .LandMetaLeftMark span::after {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.5);
}
#IndustrialLandSearchSupport .LandMetaLeftMark span::before {
  top: 50%;
  left: 0;
  width: 42px;
  height: 1px;
  transform: translateY(-50%);
}
#IndustrialLandSearchSupport .LandMetaLeftMark span::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 42px;
  transform: translateX(-50%);
}
#IndustrialLandSearchSupport .LandMetaItems {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}
#IndustrialLandSearchSupport .LandMetaItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px 0 0;
  margin-right: 36px;
}
#IndustrialLandSearchSupport .LandMetaItem::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 26px;
  background: rgba(17, 17, 17, 0.18);
  transform: translateY(-50%);
}
#IndustrialLandSearchSupport .LandMetaItem:last-child {
  margin-right: 0;
  padding-right: 0;
}
#IndustrialLandSearchSupport .LandMetaItem:last-child::after {
  display: none;
}
#IndustrialLandSearchSupport .LandMetaItem span {
  color: rgba(17, 17, 17, 0.66);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#IndustrialLandSearchSupport .LandMetaItem strong {
  color: #181818;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#IndustrialLandSearchSupport .LandMetaRightMarks {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 80px;
  justify-content: flex-end;
}
#IndustrialLandSearchSupport .LandMetaRightMarks span {
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
}
#IndustrialLandSearchSupport .LandMetaRightMarks span::before, #IndustrialLandSearchSupport .LandMetaRightMarks span::after {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.54);
}
#IndustrialLandSearchSupport .LandMetaRightMarks span::before {
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
}
#IndustrialLandSearchSupport .LandMetaRightMarks span::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
}
#IndustrialLandSearchSupport {
  /* ==========================================
     MAIN LAYOUT
  ========================================== */
}
#IndustrialLandSearchSupport .LandSupportMain {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  overflow: hidden;
}
#IndustrialLandSearchSupport .LandSupportVisual {
  position: relative;
  flex: 0 0 69%;
  min-height: 650px;
  overflow: hidden;
  background: #d8d2c8;
}
#IndustrialLandSearchSupport .LandSupportVisual img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#IndustrialLandSearchSupport .LandVisualOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
#IndustrialLandSearchSupport .LandBoundaryShape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
#IndustrialLandSearchSupport .LandBoundaryShape polygon {
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2;
}
#IndustrialLandSearchSupport .LandPoint {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  z-index: 3;
}
#IndustrialLandSearchSupport .LandPoint01 {
  top: 53%;
  left: 15%;
}
#IndustrialLandSearchSupport .LandPoint02 {
  top: 41%;
  left: 34%;
}
#IndustrialLandSearchSupport .LandPoint03 {
  top: 58%;
  left: 49%;
}
#IndustrialLandSearchSupport .LandPoint04 {
  top: 47%;
  left: 70%;
}
#IndustrialLandSearchSupport .LandPoint05 {
  top: 78%;
  left: 84%;
}
#IndustrialLandSearchSupport .LandPoint06 {
  top: 80%;
  left: 25%;
}
#IndustrialLandSearchSupport {
  /* ==========================================
     INFO CARDS
  ========================================== */
}
#IndustrialLandSearchSupport .LandInfoCard {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(24, 26, 29, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}
#IndustrialLandSearchSupport .LandInfoCard .LandInfoDot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  margin-top: 3px;
  border-radius: 50%;
  background: #ec181b;
}
#IndustrialLandSearchSupport .LandInfoCard .LandInfoText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#IndustrialLandSearchSupport .LandInfoCard strong {
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
#IndustrialLandSearchSupport .LandInfoCard small {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
#IndustrialLandSearchSupport .LandInfoCard01 {
  top: 29%;
  left: 8%;
}
#IndustrialLandSearchSupport .LandInfoCard02 {
  top: 24%;
  left: 42%;
}
#IndustrialLandSearchSupport .LandInfoCard03 {
  top: 37%;
  left: 66%;
}
#IndustrialLandSearchSupport .LandInfoLine {
  position: absolute;
  z-index: 3;
  width: 1px;
  border-left: 2px dashed rgba(255, 255, 255, 0.78);
}
#IndustrialLandSearchSupport .LandInfoLine01 {
  top: 37%;
  left: 15%;
  height: 19%;
}
#IndustrialLandSearchSupport .LandInfoLine02 {
  top: 32%;
  left: 49%;
  height: 24%;
}
#IndustrialLandSearchSupport .LandInfoLine03 {
  top: 45%;
  left: 71%;
  height: 16%;
}
#IndustrialLandSearchSupport {
  /* ==========================================
     RIGHT CONTENT PANEL
  ========================================== */
}
#IndustrialLandSearchSupport .LandSupportContent {
  flex: 0 0 31%;
  background: linear-gradient(180deg, #0c0d10 0%, #090a0c 100%);
  padding: 56px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#IndustrialLandSearchSupport .LandSupportSubTitle {
  display: inline-block;
  margin-bottom: 26px;
  color: #ec181b;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#IndustrialLandSearchSupport .LandSupportContent h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 68px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2px;
}
#IndustrialLandSearchSupport .LandSupportShortLine {
  width: 52px;
  height: 3px;
  margin: 26px 0 24px;
  background: #ec181b;
}
#IndustrialLandSearchSupport .LandSupportContent p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}
#IndustrialLandSearchSupport .LandSupportList {
  margin: 0;
  padding: 0;
  list-style: none;
}
#IndustrialLandSearchSupport .LandSupportList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
#IndustrialLandSearchSupport .LandSupportList li span {
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
#IndustrialLandSearchSupport .LandSupportList li i {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  transition: transform 0.35s ease;
}
#IndustrialLandSearchSupport .LandSupportList li:hover i {
  transform: translateX(6px);
}
#IndustrialLandSearchSupport .LandSupportButton {
  margin: 38px -48px 0;
  padding: 24px 48px;
  background: #ec181b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: background 0.35s ease;
}
#IndustrialLandSearchSupport .LandSupportButton:hover {
  background: #c91114;
}
#IndustrialLandSearchSupport .LandSupportButton svg {
  min-width: 22px;
}
#IndustrialLandSearchSupport {
  /* ==========================================
     BOTTOM TRACK
  ========================================== */
}
#IndustrialLandSearchSupport .LandSupportBottom {
  position: relative;
  padding: 38px 52px 0;
}
#IndustrialLandSearchSupport .LandBottomEdge {
  position: absolute;
  top: 25px;
  width: 28px;
  height: 28px;
}
#IndustrialLandSearchSupport .LandBottomEdge::before, #IndustrialLandSearchSupport .LandBottomEdge::after {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.4);
}
#IndustrialLandSearchSupport .LandBottomEdge::before {
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  transform: translateY(-50%);
}
#IndustrialLandSearchSupport .LandBottomEdge::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 28px;
  transform: translateX(-50%);
}
#IndustrialLandSearchSupport .LandBottomEdgeLeft {
  left: 18px;
}
#IndustrialLandSearchSupport .LandBottomEdgeRight {
  right: 18px;
}
#IndustrialLandSearchSupport .LandBottomTrack {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
#IndustrialLandSearchSupport .LandBottomTrackLine {
  position: absolute;
  top: 12px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(17, 17, 17, 0.22);
}
#IndustrialLandSearchSupport .LandBottomItem {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}
#IndustrialLandSearchSupport .LandBottomItem .LandBottomDot {
  width: 24px;
  height: 24px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #ec181b;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12);
  display: block;
}
#IndustrialLandSearchSupport .LandBottomItem h3 {
  margin: 0;
  color: #171717;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#IndustrialLandSearchSupport .LandBottomItem.active .LandBottomDot {
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12), 0 0 0 7px rgba(236, 24, 27, 0.12);
}

#ContactSection {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
}
#ContactSection .container {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 70px;
}
#ContactSection {
  /* ==========================================
     SECTION TITLE
  ========================================== */
}
#ContactSection .ContactTitle {
  max-width: 90%;
  margin-bottom: 50px;
  text-align: center;
}
#ContactSection .ContactTitle .SubTitle {
  margin-bottom: 18px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#ContactSection .ContactTitle h2 {
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-size: clamp(46px, 3.8vw, 66px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -1px;
  text-transform: uppercase;
}
#ContactSection .ContactTitle p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
#ContactSection {
  /* ==========================================
     MAIN LAYOUT
  ========================================== */
}
#ContactSection .ContactMain {
  display: flex;
  align-items: stretch;
  border-radius: 18px 18px 0 0;
  border: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#ContactSection {
  /* ==========================================
     FORM
  ========================================== */
}
#ContactSection .ContactFormWrap {
  flex: 0 0 68%;
  min-width: 0;
  padding: 48px;
}
#ContactSection .ContactFormWrap h3 {
  margin: 0 0 35px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Aniko"), sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
#ContactSection .ContactFormWrap p {
  width: 100%;
  margin-bottom: 0;
}
#ContactSection .ContactFormRow {
  display: flex;
  gap: 24px;
}
#ContactSection .ContactField {
  width: 50%;
  margin-bottom: 24px;
}
#ContactSection .ContactField label {
  display: block;
  margin-bottom: 9px;
  color: #292929;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
#ContactSection .ContactField input,
#ContactSection .ContactField select,
#ContactSection .ContactField textarea {
  width: 100%;
  border: 1px solid var(--BrandBorder, #dadad6);
  outline: none;
  background: #ffffff;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#ContactSection .ContactField input:focus,
#ContactSection .ContactField select:focus,
#ContactSection .ContactField textarea:focus {
  border-color: var(--BrandRed, #ec181b);
  box-shadow: 0 0 0 3px rgba(236, 24, 27, 0.07);
}
#ContactSection .ContactField input::-moz-placeholder, #ContactSection .ContactField select::-moz-placeholder, #ContactSection .ContactField textarea::-moz-placeholder {
  color: #969696;
}
#ContactSection .ContactField input::placeholder,
#ContactSection .ContactField select::placeholder,
#ContactSection .ContactField textarea::placeholder {
  color: #969696;
}
#ContactSection .ContactField input,
#ContactSection .ContactField select {
  height: 54px;
  padding: 0 16px;
}
#ContactSection .ContactField select {
  cursor: pointer;
}
#ContactSection .ContactField textarea {
  min-height: 135px;
  padding: 16px;
  resize: vertical;
}
#ContactSection .ContactFieldFull {
  width: 100%;
}
#ContactSection .ContactPhoneField {
  display: flex;
}
#ContactSection .ContactPhoneField select {
  flex: 0 0 80px;
  border-right: 0;
}
#ContactSection .ContactPhoneField input {
  flex: 1;
  min-width: 0;
}
#ContactSection .ContactSubmitButton {
  min-width: 210px;
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: var(--BrandRed, #ec181b);
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#ContactSection .ContactSubmitButton:hover {
  background: #171717;
  transform: translateY(-2px);
}
#ContactSection {
  /* ==========================================
     CONTACT INFORMATION
  ========================================== */
}
#ContactSection .ContactInformation {
  flex: 0 0 32%;
  min-width: 0;
  padding: 48px;
  color: var(--BrandBlack);
  border: 2px solid var(--BrandRed);
  background: var(--BrandSoftBackground, #efefed);
  border-radius: 0 18px 0 0;
}
#ContactSection .ContactInformation h3 {
  margin: 0 0 35px;
  color: var(--BrandBlack);
  font-family: var(--BodyFont, "Aniko"), sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
#ContactSection .ContactInfoItem {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
#ContactSection .ContactInfoItem .ContactInfoLabel {
  margin-bottom: 9px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
#ContactSection .ContactInfoItem a,
#ContactSection .ContactInfoItem p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
}
#ContactSection .ContactInfoItem a:hover {
  color: #ffffff;
}
#ContactSection .BusinessHoursRow {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
#ContactSection .BusinessHoursRow span,
#ContactSection .BusinessHoursRow strong {
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  line-height: 1.5;
}
#ContactSection .BusinessHoursRow span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}
#ContactSection .BusinessHoursRow strong {
  color: #000;
  font-weight: 600;
  text-align: right;
}
#ContactSection .ContactActions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#ContactSection .ContactPrimaryAction,
#ContactSection .ContactSecondaryAction {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
#ContactSection .ContactPrimaryAction {
  background: var(--BrandRed, #ec181b);
}
#ContactSection .ContactSecondaryAction {
  border: 1.5px solid #ec181b;
  color: var(--BrandRed, #ec181b);
}
#ContactSection {
  /* ==========================================
     MAP
  ========================================== */
}
#ContactSection .ContactMap {
  display: flex;
  align-items: stretch;
  border-radius: 0 0 18px 18px;
  min-height: 390px;
  overflow: clip;
  border-right: 1px solid var(--BrandBorder, #dadad6);
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  border-left: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#ContactSection .ContactMapDetails {
  flex: 0 0 34%;
  padding: 45px;
  background: var(--BrandSoftBackground, #efefed);
}
#ContactSection .ContactMapDetails .SubTitle {
  margin-bottom: 22px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#ContactSection .ContactMapDetails h3 {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Aniko"), sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}
#ContactSection .ContactMapDetails p {
  margin: 20px 0 25px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
#ContactSection .ContactDirections {
  width: 190px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #bdbdb8;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
#ContactSection .ContactDirections:hover {
  border-color: var(--BrandRed, #ec181b);
  background: var(--BrandRed, #ec181b);
  color: #ffffff;
}
#ContactSection .ContactMapEmbed {
  flex: 0 0 66%;
  min-width: 0;
}
#ContactSection .ContactMapEmbed iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  border: 0;
}

#ContactFaq {
  position: relative;
  padding: 100px 0;
  overflow: clip;
  background: #ffffff;
}
#ContactFaq .PrimaryBtn {
  margin-top: 30px;
}
#ContactFaq .container {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 70px;
}
#ContactFaq .ContactFaqLayout {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
#ContactFaq {
  /* ==========================================
     LEFT CONTENT
  ========================================== */
}
#ContactFaq .ContactFaqIntro {
  position: sticky;
  top: 130px;
  flex: 0 0 36%;
}
#ContactFaq .ContactFaqTitle .SubTitle {
  margin-bottom: 20px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#ContactFaq .ContactFaqTitle h2 {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Aniko"), sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
}
#ContactFaq .ContactFaqTitle h2 br {
  display: none;
}
#ContactFaq .ContactFaqTitle p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
#ContactFaq .ContactFaqButton {
  width: 235px;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--BrandBlack, #111111);
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#ContactFaq .ContactFaqButton:hover {
  background: var(--BrandRed, #ec181b);
  transform: translateY(-2px);
}
#ContactFaq {
  /* ==========================================
     FAQ LIST
  ========================================== */
}
#ContactFaq .ContactFaqList {
  flex: 1;
  min-width: 0;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#ContactFaq .ContactFaqItem {
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#ContactFaq .ContactFaqItem[open] .ContactFaqQuestion {
  padding-bottom: 15px;
}
#ContactFaq .ContactFaqItem[open] .ContactFaqNumber {
  color: var(--BrandRed, #ec181b);
}
#ContactFaq .ContactFaqItem[open] .ContactFaqIcon {
  background: var(--BrandRed, #ec181b);
  border-color: var(--BrandRed, #ec181b);
}
#ContactFaq .ContactFaqItem[open] .ContactFaqIcon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
#ContactFaq .ContactFaqItem[open] .ContactFaqIcon::before {
  background: #ffffff;
}
#ContactFaq .ContactFaqQuestion {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  cursor: pointer;
}
#ContactFaq .ContactFaqQuestion::-webkit-details-marker {
  display: none;
}
#ContactFaq .ContactFaqQuestion h3 {
  flex: 1;
  margin: 0;
  color: var(--BrandBlack, #111111);
  text-transform: none;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}
#ContactFaq .ContactFaqNumber {
  flex: 0 0 34px;
  color: #9a9a96;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
#ContactFaq .ContactFaqIcon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--BrandBorder, #dadad6);
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
#ContactFaq .ContactFaqIcon::before, #ContactFaq .ContactFaqIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--BrandBlack, #111111);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
#ContactFaq .ContactFaqIcon::before {
  width: 13px;
  height: 1px;
}
#ContactFaq .ContactFaqIcon::after {
  width: 1px;
  height: 13px;
}
#ContactFaq .ContactFaqAnswer {
  padding: 0 75px 28px 58px;
}
#ContactFaq .ContactFaqAnswer p {
  max-width: 750px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

#DocumentationCompliance {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
}
#DocumentationCompliance .container {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 70px;
}
#DocumentationCompliance {
  /* ==========================================
     SECTION TITLE
  ========================================== */
}
#DocumentationCompliance .DocumentationTitle {
  margin-bottom: 55px;
}
#DocumentationCompliance .DocumentationTitle .SubTitle {
  margin-bottom: 22px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationTitleRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}
#DocumentationCompliance .DocumentationTitleRow h2 {
  max-width: 920px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}
#DocumentationCompliance .DocumentationTitleRow p {
  max-width: 540px;
  margin: 0 0 6px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
#DocumentationCompliance {
  /* ==========================================
     MAIN LAYOUT
  ========================================== */
}
#DocumentationCompliance .DocumentationLayout {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#DocumentationCompliance {
  /* ==========================================
     VISUAL
  ========================================== */
}
#DocumentationCompliance .DocumentationVisual {
  position: relative;
  flex: 0 0 46%;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  background: #d8d7d2;
}
#DocumentationCompliance .DocumentationImage {
  position: absolute;
  inset: 0;
}
#DocumentationCompliance .DocumentationImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#DocumentationCompliance .DocumentationImageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.05) 45%, rgba(17, 17, 17, 0.64) 100%);
}
#DocumentationCompliance .DocumentationImageTop {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}
#DocumentationCompliance .DocumentationImageTop span,
#DocumentationCompliance .DocumentationImageTop strong {
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationImageTop span {
  font-weight: 600;
}
#DocumentationCompliance .DocumentationImageTop strong {
  font-weight: 800;
}
#DocumentationCompliance .DocumentationStatusCard {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 25px;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
}
#DocumentationCompliance .DocumentationStatusHeader,
#DocumentationCompliance .DocumentationStatusMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#DocumentationCompliance .DocumentationStatusHeader span,
#DocumentationCompliance .DocumentationStatusHeader strong {
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#DocumentationCompliance .DocumentationStatusHeader span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationStatusHeader strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
#DocumentationCompliance .DocumentationProgress {
  width: 100%;
  height: 3px;
  margin: 20px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}
#DocumentationCompliance .DocumentationProgress span {
  display: block;
  width: 82%;
  height: 100%;
  background: var(--BrandRed, #ec181b);
}
#DocumentationCompliance .DocumentationStatusMeta span,
#DocumentationCompliance .DocumentationStatusMeta strong {
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  line-height: 1;
}
#DocumentationCompliance .DocumentationStatusMeta span {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 500;
}
#DocumentationCompliance .DocumentationStatusMeta strong {
  color: #ffffff;
  font-weight: 700;
}
#DocumentationCompliance {
  /* ==========================================
     CONTENT
  ========================================== */
}
#DocumentationCompliance .DocumentationContent {
  flex: 0 0 54%;
  min-width: 0;
  padding: 48px 55px;
}
#DocumentationCompliance .DocumentationContentHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
}
#DocumentationCompliance .DocumentationContentHeader span {
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationContentHeader p {
  max-width: 430px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
#DocumentationCompliance {
  /* ==========================================
     PROCESS STEPS
  ========================================== */
}
#DocumentationCompliance .DocumentationStep {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 31px 0;
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  transition: padding-left 0.35s ease, background-color 0.35s ease;
}
#DocumentationCompliance .DocumentationStep:hover {
  padding-left: 12px;
}
#DocumentationCompliance .DocumentationStep:hover .DocumentationStepArrow {
  background: var(--BrandRed, #ec181b);
  color: #ffffff;
  transform: rotate(45deg);
}
#DocumentationCompliance .DocumentationStep:hover .DocumentationStepNumber {
  color: var(--BrandRed, #ec181b);
}
#DocumentationCompliance .DocumentationStepNumber {
  flex: 0 0 45px;
  color: #9b9b97;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  transition: color 0.35s ease;
}
#DocumentationCompliance .DocumentationStepContent {
  flex: 1;
  min-width: 0;
}
#DocumentationCompliance .DocumentationStepHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
#DocumentationCompliance .DocumentationStepHeading h3 {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationStepArrow {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--BrandBorder, #dadad6);
  border-radius: 50%;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  line-height: 1;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
#DocumentationCompliance .DocumentationStepContent > p {
  max-width: 700px;
  margin: 14px 0 20px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
#DocumentationCompliance .DocumentationTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#DocumentationCompliance .DocumentationTags span {
  padding: 8px 11px;
  border: 1px solid var(--BrandBorder, #dadad6);
  background: var(--BrandSoftBackground, #efefed);
  color: #555856;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#DocumentationCompliance {
  /* ==========================================
     CTA
  ========================================== */
}
#DocumentationCompliance .DocumentationAction {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 35px;
}
#DocumentationCompliance .DocumentationAction > p {
  max-width: 390px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
#DocumentationCompliance .DocumentationButton {
  flex: 0 0 285px;
  min-height: 56px;
  padding: 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--BrandBlack, #111111);
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
#DocumentationCompliance .DocumentationButton:hover {
  background: var(--BrandRed, #ec181b);
  transform: translateY(-2px);
}
#DocumentationCompliance {
  /* ==========================================
     BOTTOM CHECKPOINTS
  ========================================== */
}
#DocumentationCompliance .DocumentationCheckpoints {
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--BrandBorder, #dadad6);
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  border-left: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#DocumentationCompliance .DocumentationCheckpoint {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 28px;
}
#DocumentationCompliance .DocumentationCheckpoint:not(:last-child) {
  border-right: 1px solid var(--BrandBorder, #dadad6);
}
#DocumentationCompliance .DocumentationCheckpoint strong,
#DocumentationCompliance .DocumentationCheckpoint small {
  display: block;
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#DocumentationCompliance .DocumentationCheckpoint strong {
  margin-bottom: 5px;
  color: var(--BrandBlack, #111111);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
#DocumentationCompliance .DocumentationCheckpoint small {
  color: var(--BrandMuted, #696969);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}
#DocumentationCompliance .DocumentationCheckpointDot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
  box-shadow: 0 0 0 5px rgba(236, 24, 27, 0.09);
}

#GovernmentLandEditorial {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
}
#GovernmentLandEditorial .container {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 70px;
}
#GovernmentLandEditorial {
  /* =========================================
     HEADER
  ========================================= */
}
#GovernmentLandEditorial .GovernmentLandEditorialHeader {
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 90px;
}
#GovernmentLandEditorial .GovernmentLandEditorialTitle {
  flex: 0 0 65%;
  min-width: 0;
}
#GovernmentLandEditorial .GovernmentLandEditorialTitle .SubTitle {
  margin-bottom: 20px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
#GovernmentLandEditorial .GovernmentLandEditorialTitle h2 {
  max-width: 1080px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1px;
}
#GovernmentLandEditorial .GovernmentLandEditorialDescription {
  flex: 1;
  max-width: 500px;
}
#GovernmentLandEditorial .GovernmentLandEditorialDescription p {
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}
#GovernmentLandEditorial .GovernmentLandEditorialLink {
  width: -moz-max-content;
  width: max-content;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
#GovernmentLandEditorial .GovernmentLandEditorialLink span {
  color: var(--BrandRed, #ec181b);
  font-size: 17px;
  transition: transform 0.3s ease;
}
#GovernmentLandEditorial .GovernmentLandEditorialLink:hover span {
  transform: translate(4px, -4px);
}
#GovernmentLandEditorial {
  /* =========================================
     FULL-WIDTH IMAGE
  ========================================= */
}
#GovernmentLandEditorial .GovernmentLandEditorialVisual {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
#GovernmentLandEditorial .GovernmentLandEditorialVisual img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#GovernmentLandEditorial .GovernmentLandEditorialVisual .container {
  position: relative;
  height: 100%;
  z-index: 3;
}
#GovernmentLandEditorial .GovernmentLandEditorialOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(10, 11, 12, 0.76) 0%, rgba(10, 11, 12, 0.26) 52%, rgba(10, 11, 12, 0.08) 100%);
}
#GovernmentLandEditorial .GovernmentLandEditorialCaption {
  position: absolute;
  bottom: 110px;
  left: 70px;
}
#GovernmentLandEditorial .GovernmentLandEditorialCaption span,
#GovernmentLandEditorial .GovernmentLandEditorialCaption strong {
  display: block;
}
#GovernmentLandEditorial .GovernmentLandEditorialCaption span {
  margin-bottom: 13px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#GovernmentLandEditorial .GovernmentLandEditorialCaption strong {
  color: #ffffff;
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
#GovernmentLandEditorial {
  /* =========================================
     FLOATING SHEET
  ========================================= */
}
#GovernmentLandEditorial .GovernmentLandEditorialSheet {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  border: 1px solid var(--BrandBorder, #dadad6);
  background: #ffffff;
}
#GovernmentLandEditorial .GovernmentLandEditorialSheetHeader {
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
}
#GovernmentLandEditorial .GovernmentLandEditorialSheetHeader > span {
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#GovernmentLandEditorial .GovernmentLandEditorialSheetHeader p {
  max-width: 520px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}
#GovernmentLandEditorial {
  /* =========================================
     PROCESS
  ========================================= */
}
#GovernmentLandEditorial .GovernmentLandEditorialProcess {
  display: flex;
  align-items: stretch;
}
#GovernmentLandEditorial .GovernmentLandEditorialStep {
  position: relative;
  flex: 1;
  min-height: 310px;
  padding: 34px 30px;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
#GovernmentLandEditorial .GovernmentLandEditorialStep:not(:last-child) {
  border-right: 1px solid var(--BrandBorder, #dadad6);
}
#GovernmentLandEditorial .GovernmentLandEditorialStep::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 3px;
  background: var(--BrandRed, #ec181b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
#GovernmentLandEditorial .GovernmentLandEditorialStep:hover {
  background: var(--BrandSoftBackground, #efefed);
}
#GovernmentLandEditorial .GovernmentLandEditorialStep:hover::after {
  transform: scaleX(1);
}
#GovernmentLandEditorial .GovernmentLandEditorialStep h3 {
  max-width: 280px;
  margin: 55px 0 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
#GovernmentLandEditorial .GovernmentLandEditorialStep > p {
  max-width: 310px;
  margin: 15px 0 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
#GovernmentLandEditorial .GovernmentLandEditorialStepTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#GovernmentLandEditorial .GovernmentLandEditorialStepTop span {
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}
#GovernmentLandEditorial .GovernmentLandEditorialStepTop small {
  color: #999994;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
#GovernmentLandEditorial {
  /* =========================================
     FOOTER
  ========================================= */
}
#GovernmentLandEditorial .GovernmentLandEditorialFooter {
  padding: 28px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#GovernmentLandEditorial .GovernmentLandEditorialDisclaimer {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
#GovernmentLandEditorial .GovernmentLandEditorialDisclaimer > span {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
}
#GovernmentLandEditorial .GovernmentLandEditorialDisclaimer p {
  max-width: 650px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
#GovernmentLandEditorial .GovernmentLandEditorialButton {
  flex: 0 0 265px;
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--BrandBlack, #111111);
  color: #ffffff;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#GovernmentLandEditorial .GovernmentLandEditorialButton:hover {
  background: var(--BrandRed, #ec181b);
  transform: translateY(-2px);
}

#BlogListSection {
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
  background: var(--BrandBackground);
  color: var(--BrandText);
}
#BlogListSection * {
  font-family: var(--BodyFont);
}
#BlogListSection::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 80px);
  height: 1px;
  background: var(--BrandBorder);
  content: "";
  transform: translateX(-50%);
}
#BlogListSection .SectionTitle {
  max-width: 90%;
  margin: 0;
}
#BlogListSection .SubTitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--BrandRed);
  font-family: var(--BodyFont), sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#BlogListSection .SectionHeading {
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--BodyFont);
  font-size: var(--OutsetSectionTitle);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
#BlogListSection .SectionDescription {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}
#BlogListSection .BlogGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 62px;
}
#BlogListSection .BlogCard {
  min-width: 0;
}
#BlogListSection .BlogCard.is-filtered-out {
  display: none;
}
#BlogListSection .BlogCard:hover .BlogCardImage img {
  transform: scale(1.045);
}
#BlogListSection .BlogCard:hover .BlogCardImage::after {
  opacity: 1;
}
#BlogListSection .BlogCard:hover .BlogCardIndex {
  border-color: var(--BrandRed);
  background: var(--BrandRed);
  color: var(--BrandWhite);
  transform: translateY(-3px);
}
#BlogListSection .BlogCard:hover h3 a {
  color: var(--BrandRed);
}
#BlogListSection .BlogCard:hover .BlogCardLink span {
  transform: translate(3px, -3px);
}
#BlogListSection .BlogCardImage {
  position: relative;
  display: block;
  height: 350px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--BrandSoftBackground);
}
#BlogListSection .BlogCardImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(17, 17, 17, 0.18) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
#BlogListSection .BlogCardImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#BlogListSection .BlogCardIndex {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.65);
  color: var(--BrandWhite);
  backdrop-filter: blur(8px);
  font-family: var(--BodyFont), sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
#BlogListSection .BlogCardContent {
  padding: 22px 6px 0;
}
#BlogListSection .BlogCardMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
#BlogListSection .BlogCardMeta time {
  white-space: nowrap;
}
#BlogListSection .BlogCardCategory {
  color: var(--BrandRed);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
#BlogListSection h3 {
  margin: 0;
  font-family: var(--HeadingFont), sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
#BlogListSection h3 a {
  color: var(--BrandBlack);
  text-decoration: none;
  transition: color 0.3s ease;
}
#BlogListSection .BlogCardContent p {
  min-height: 54px;
  margin: 14px 0 20px;
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
#BlogListSection .BlogCardLink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--BrandBorder);
  color: var(--BrandBlack);
  font-family: var(--BodyFont), sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}
#BlogListSection .BlogCardLink span {
  color: var(--BrandRed);
  font-size: 15px;
  transition: transform 0.3s ease;
}
#BlogListSection .BlogCardLink:hover, #BlogListSection .BlogCardLink:focus-visible {
  border-color: var(--BrandRed);
  color: var(--BrandRed);
}
#BlogListSection .BlogListFooter {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--BrandBorder);
}
#BlogListSection .BlogLoadMore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 22px 14px 26px;
  border: 1px solid var(--BrandBlack);
  border-radius: 100px;
  background: var(--BrandBlack);
  color: var(--BrandWhite);
  cursor: pointer;
  font-family: var(--BodyFont), sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
#BlogListSection .BlogLoadMore:hover, #BlogListSection .BlogLoadMore:focus-visible {
  background: transparent;
  color: var(--BrandBlack);
  transform: translateY(-2px);
}
#BlogListSection .CommonButtonIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--BrandRed);
  color: var(--BrandWhite);
  font-size: 15px;
}
#BlogListSection .RevealItem {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#BlogListSection .RevealItem.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#FeaturedBlogSection {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  background: var(--BrandWhite);
  color: var(--BrandText);
}
#FeaturedBlogSection * {
  font-family: var(--BodyFont);
}
#FeaturedBlogSection .FeaturedBlogTitle {
  margin-bottom: 42px;
}
#FeaturedBlogSection .SubTitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--BrandRed);
  font-family: var(--BodyFont), sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#FeaturedBlogSection .SectionHeading {
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--BodyFont), sans-serif;
  font-size: var(--OutsetSectionTitle);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
#FeaturedBlogSection .FeaturedBlogCard {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--BrandBorder);
}
#FeaturedBlogSection .FeaturedBlogImage {
  position: relative;
  display: block;
  height: 540px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--BrandSoftBackground);
}
#FeaturedBlogSection .FeaturedBlogImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 55%, rgba(17, 17, 17, 0.18) 100%);
  content: "";
  opacity: 0;
  transition: opacity 0.4s ease;
}
#FeaturedBlogSection .FeaturedBlogImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#FeaturedBlogSection .FeaturedBlogImage:hover::after, #FeaturedBlogSection .FeaturedBlogImage:focus-visible::after {
  opacity: 1;
}
#FeaturedBlogSection .FeaturedBlogImage:hover img, #FeaturedBlogSection .FeaturedBlogImage:focus-visible img {
  transform: scale(1.035);
}
#FeaturedBlogSection .FeaturedBlogImage:hover .FeaturedBlogArrow, #FeaturedBlogSection .FeaturedBlogImage:focus-visible .FeaturedBlogArrow {
  border-color: var(--BrandRed);
  background: var(--BrandRed);
  color: var(--BrandWhite);
  transform: translate(2px, -2px);
}
#FeaturedBlogSection .FeaturedBlogImage:focus-visible {
  outline: 2px solid var(--BrandRed);
  outline-offset: 4px;
}
#FeaturedBlogSection .FeaturedBlogArrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.62);
  color: var(--BrandWhite);
  backdrop-filter: blur(8px);
  font-family: var(--BodyFont), sans-serif;
  font-size: 18px;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
#FeaturedBlogSection .FeaturedBlogContent {
  max-width: 440px;
}
#FeaturedBlogSection .FeaturedBlogMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--BrandBorder);
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
#FeaturedBlogSection .FeaturedBlogMeta time {
  white-space: nowrap;
}
#FeaturedBlogSection .FeaturedBlogLabel {
  color: var(--BrandRed);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#FeaturedBlogSection h3 {
  margin: 0;
  font-family: var(--HeadingFont), sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
#FeaturedBlogSection h3 a {
  color: var(--BrandBlack);
  text-decoration: none;
  transition: color 0.3s ease;
}
#FeaturedBlogSection h3 a:hover, #FeaturedBlogSection h3 a:focus-visible {
  color: var(--BrandRed);
}
#FeaturedBlogSection .FeaturedBlogContent p {
  margin: 22px 0 30px;
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
#FeaturedBlogSection .FeaturedBlogButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 12px 12px 12px 24px;
  border: 1px solid var(--BrandBlack);
  border-radius: 100px;
  background: var(--BrandBlack);
  color: var(--BrandWhite);
  font-family: var(--BodyFont), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
#FeaturedBlogSection .FeaturedBlogButton:hover, #FeaturedBlogSection .FeaturedBlogButton:focus-visible {
  border-color: var(--BrandRed);
  background: var(--BrandRed);
  color: var(--BrandWhite);
  transform: translateY(-2px);
}
#FeaturedBlogSection .CommonButtonIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--BrandWhite);
  color: var(--BrandBlack);
  font-size: 15px;
  transition: transform 0.3s ease;
}
#FeaturedBlogSection .FeaturedBlogButton:hover .CommonButtonIcon,
#FeaturedBlogSection .FeaturedBlogButton:focus-visible .CommonButtonIcon {
  transform: rotate(45deg);
}
#FeaturedBlogSection .FeaturedBlogTitle,
#FeaturedBlogSection .FeaturedBlogCard {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#FeaturedBlogSection .FeaturedBlogTitle.is-visible,
#FeaturedBlogSection .FeaturedBlogCard.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#FeaturedBlogSection .FeaturedBlogCard {
  transition-delay: 100ms;
}

#AboutIntroSection {
  position: relative;
  padding: 80px 0 0px;
  overflow: hidden;
  background: #f7f7f5;
  color: var(--BrandText);
}
#AboutIntroSection .PrimaryBtn {
  margin-top: 24px;
}
#AboutIntroSection .AboutIntroTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 84px;
  margin-bottom: 44px;
}
#AboutIntroSection .AboutIntroContent {
  max-width: 760px;
}
#AboutIntroSection .SubTitle {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 26px;
  padding: 7px 15px;
  border-radius: 100px;
  color: var(--BrandRed);
  font-family: var(--BodyFont), sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#AboutIntroSection .SectionHeading {
  max-width: 720px;
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--BodyFont), sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
#AboutIntroSection .SectionDescription {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont), sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
#AboutIntroSection .AboutIntroImage {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--BrandSoftBackground);
}
#AboutIntroSection .AboutIntroImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#AboutIntroSection .AboutIntroImage:hover img {
  transform: scale(1.035);
}
#AboutIntroSection .AboutIntroImageTop {
  height: 500px;
  border-radius: 36px;
}
#AboutIntroSection .AboutIntroImageTop::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
#AboutIntroSection .AboutIntroDoodle {
  position: absolute;
  z-index: 2;
  color: var(--BrandBlack);
  pointer-events: none;
}
#AboutIntroSection .AboutIntroDoodleStar {
  top: -18px;
  left: -20px;
  width: 68px;
  height: 68px;
  background: linear-gradient(var(--BrandBlack), var(--BrandBlack)) 50% 0/2px 100% no-repeat, linear-gradient(90deg, var(--BrandBlack), var(--BrandBlack)) 0 50%/100% 2px no-repeat;
  transform: rotate(24deg);
}
#AboutIntroSection .AboutIntroDoodleStar::before, #AboutIntroSection .AboutIntroDoodleStar::after {
  position: absolute;
  inset: 0;
  background: inherit;
  content: "";
}
#AboutIntroSection .AboutIntroDoodleStar::before {
  transform: rotate(45deg);
}
#AboutIntroSection .AboutIntroDoodleStar::after {
  transform: rotate(22.5deg);
}
#AboutIntroSection .AboutIntroDoodleArrow {
  bottom: 36px;
  left: -38px;
  font-family: var(--BodyFont), sans-serif;
  font-size: 36px;
  font-weight: 700;
  transform: rotate(-30deg);
}
#AboutIntroSection .AboutIntroShowcase {
  position: relative;
  min-height: 450px;
}
#AboutIntroSection .AboutIntroDarkPanel {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--BrandDark);
  color: var(--BrandWhite);
  isolation: isolate;
}
#AboutIntroSection .AboutIntroDarkPanel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.62)), radial-gradient(circle at 91% 22%, rgba(236, 24, 27, 0.13), transparent 28%);
  content: "";
}
#AboutIntroSection .AboutIntroPattern {
  position: absolute;
  inset: -170px -60px -130px 120px;
  z-index: -2;
  opacity: 0.48;
  background: url("assets/images/Line.svg") no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-4deg) scaleX(1.3);
}
#AboutIntroSection .AboutIntroStatement {
  position: absolute;
  top: 44px;
  left: 44px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 330px;
}
#AboutIntroSection .AboutIntroStatement strong {
  font-family: var(--HeadingFont), sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
#AboutIntroSection .AboutIntroStatement span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--BodyFont), sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
#AboutIntroSection .AboutIntroServices {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 590px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#AboutIntroSection .AboutIntroServices li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--BrandRed);
  color: var(--BrandWhite);
  font-family: var(--BodyFont), sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-2deg);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
#AboutIntroSection .AboutIntroServices li:nth-child(even) {
  transform: rotate(2deg);
}
#AboutIntroSection .AboutIntroServices li:hover {
  border-color: var(--BrandRed);
  background: var(--BrandRed);
  color: var(--BrandWhite);
  transform: rotate(0) translateY(-3px);
}
#AboutIntroSection .AboutIntroImageBottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 42%;
  height: 360px;
  border: 14px solid var(--BrandBackground);
  border-right: 0;
  border-bottom: 0;
  border-radius: 34px 0 34px 0;
}
#AboutIntroSection .AboutIntroImageBottom::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 21px 0 33px 0;
  content: "";
  pointer-events: none;
}
#AboutIntroSection .AboutIntroTop,
#AboutIntroSection .AboutIntroShowcase {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#AboutIntroSection .AboutIntroTop.is-visible,
#AboutIntroSection .AboutIntroShowcase.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#AboutIntroSection .AboutIntroShowcase {
  transition-delay: 120ms;
}

#WhoWeAre {
  position: relative;
  padding: var(--SectionPadding);
  overflow: hidden;
  padding: 80px 0 120px;
  background: #f7f7f5;
}
#WhoWeAre .WhoWeAreFrame {
  position: relative;
  overflow: hidden;
  background: var(--BrandBackground);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
  transition: 0.35s ease;
}
#WhoWeAre .WhoWeAreTop {
  position: relative;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
}
#WhoWeAre .WhoWeAreTop::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--BrandRed));
  content: "";
}
#WhoWeAre .WhoWeAreStory,
#WhoWeAre .WhoWeArePurpose {
  position: relative;
  z-index: 3;
  align-self: center;
}
#WhoWeAre .WhoWeAreStory {
  max-width: 900px;
  padding: 72px 30px 72px 60px;
}
#WhoWeAre .SectionHeading {
  max-width: 560px;
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--BodyFont);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}
#WhoWeAre .SectionDescription {
  max-width: 535px;
  margin: 28px 0 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
#WhoWeAre .CommonButton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 224px;
  min-height: 54px;
  margin-top: 32px;
  padding: 8px 10px 8px 20px;
  color: var(--BrandWhite);
  background: var(--BrandRed);
  border: 1px solid var(--BrandRed);
  border-radius: 2px;
  font-family: var(--BodyFont);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}
#WhoWeAre .CommonButton .CommonButtonIcon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: 18px;
  place-items: center;
  background: var(--BrandWhite);
  color: var(--BrandRed);
  font-size: 17px;
  transition: transform 300ms ease;
}
#WhoWeAre .CommonButton:hover {
  color: var(--BrandRed);
  background: var(--BrandWhite);
  transform: translateY(-3px);
}
#WhoWeAre .CommonButton:hover .CommonButtonIcon {
  color: var(--BrandWhite);
  background: var(--BrandRed);
  transform: rotate(45deg);
}
#WhoWeAre .CommonButton:focus-visible {
  outline: 3px solid rgba(236, 24, 27, 0.35);
  outline-offset: 4px;
}
#WhoWeAre .WhoWeAreMachine {
  position: absolute;
  z-index: 4;
  bottom: -125px;
  left: 76%;
  width: 50%;
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
  will-change: transform;
}
#WhoWeAre .WhoWeAreMachine img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.46));
}
#WhoWeAre .WhoWeAreMachineGlow {
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 42px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(236, 24, 27, 0.12);
  filter: blur(70px);
  transform: translateX(50%);
}
#WhoWeAre .WhoWeArePurpose {
  max-width: 545px;
  padding: 72px 60px 72px 45px;
}
#WhoWeAre .WhoWeArePurpose .WhoWeAreIndex {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: #ec181b;
  font-family: var(--BodyFont);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#WhoWeAre .WhoWeArePurpose .WhoWeAreIndex::before {
  width: 26px;
  height: 2px;
  margin-right: 12px;
  background: var(--BrandRed);
  content: "";
}
#WhoWeAre .WhoWeArePurpose .WhoWeAreIndex,
#WhoWeAre .WhoWeAreCapability .WhoWeAreIndex {
  color: var(--BrandRed);
}
#WhoWeAre .WhoWeArePurpose h3,
#WhoWeAre .WhoWeAreCapability h3 {
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--BodyFont);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
#WhoWeAre .WhoWeArePurpose p,
#WhoWeAre .WhoWeAreCapability p {
  margin: 10px 0 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 18px;
  line-height: 1.75;
}
#WhoWeAre .WhoWeAreSignature {
  display: block;
  margin-top: 30px;
  color: var(--BrandWhite);
  font-family: var(--BodyFont);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#WhoWeAre .WhoWeAreBottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(310px, 1fr);
  min-height: 420px;
  background: #202020;
}
#WhoWeAre .WhoWeAreSiteImage {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}
#WhoWeAre .WhoWeAreSiteImage::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, transparent 63%, rgba(28, 28, 28, 0.12) 82%, #202020 100%), linear-gradient(0deg, rgba(17, 17, 17, 0.18), transparent 46%);
  content: "";
  pointer-events: none;
}
#WhoWeAre .WhoWeAreSiteImage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
#WhoWeAre .WhoWeAreFrame:hover .WhoWeAreSiteImage img {
  transform: scale(1.025);
}
#WhoWeAre .WhoWeAreCapability {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px;
  background: #fff;
}
#WhoWeAre .WhoWeAreCapability::before {
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 0;
  width: 1px;
  background: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
}
#WhoWeAre .WhoWeAreCapability ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}
#WhoWeAre .WhoWeAreCapability li {
  position: relative;
  padding-left: 20px;
  color: var(--BrandDark);
  font-family: var(--BodyFont);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
#WhoWeAre .WhoWeAreCapability li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--BrandRed);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
#WhoWeAre .WhoWeAreReveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms ease;
}
#WhoWeAre .WhoWeAreReveal.IsVisible {
  opacity: 1;
  transform: translateY(0);
}
#WhoWeAre:hover .WhoWeAreFrame {
  transform: translateY(-8px);
  border-color: #ef2d38;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

#WhatWeDo {
  position: relative;
  padding: 0 0 120px;
  overflow: hidden;
  background: #f7f7f4;
}
#WhatWeDo .WhatWeDoGrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}
#WhatWeDo .container {
  position: relative;
  z-index: 2;
}
#WhatWeDo .WhatWeDoHeading {
  margin-bottom: 55px;
}
#WhatWeDo .SectionTitle .SubTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#WhatWeDo .SectionTitle .SubTitle::before {
  width: 24px;
  height: 2px;
  background: #ff2434;
  content: "";
}
#WhatWeDo .SectionTitle h2 {
  max-width: 780px;
  margin: 0;
  color: #121212;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3.5px;
  font-family: var(--BodyFont), sans-serif;
}
#WhatWeDo .SectionTitle h2 span {
  display: block;
}
#WhatWeDo .WhatWeDoIntro {
  max-width: 500px;
  margin-left: auto;
  padding-bottom: 6px;
}
#WhatWeDo .WhatWeDoIntro p {
  margin: 0;
  color: rgba(18, 18, 18, 0.62);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
#WhatWeDo .WhatWeDoLink {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  color: #121212;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
}
#WhatWeDo .WhatWeDoLink > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: #ff2434;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
#WhatWeDo .WhatWeDoLink > span svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#WhatWeDo .WhatWeDoLink:hover {
  color: #ff2434;
}
#WhatWeDo .WhatWeDoLink:hover > span {
  background: #121212;
  transform: translateX(5px);
}
#WhatWeDo .WhatWeDoPanel {
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 18, 18, 0.06);
}
#WhatWeDo .WhatWeDoVisual {
  position: relative;
  height: 100%;
  min-height: auto;
  overflow: hidden;
  background: #171717;
}
#WhatWeDo .WhatWeDoVisual::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  content: "";
}
#WhatWeDo .WhatWeDoVisual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 720px;
  transition: transform 0.8s ease, filter 0.5s ease;
}
#WhatWeDo .WhatWeDoVisual:hover img {
  transform: scale(1.035);
}
#WhatWeDo .WhatWeDoVisualTop {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#WhatWeDo .WhatWeDoVisualTop span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#WhatWeDo .WhatWeDoVisualTop span:first-child::before {
  width: 20px;
  height: 2px;
  background: #ff2434;
  content: "";
}
#WhatWeDo .WhatWeDoVisualContent {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 40px;
  left: 38px;
  color: #ffffff;
}
#WhatWeDo .WhatWeDoVisualContent .WhatWeDoVisualLabel {
  display: block;
  margin-bottom: 17px;
  color: #ff4a57;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#WhatWeDo .WhatWeDoVisualContent h3 {
  max-width: 430px;
  margin: 0;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.8px;
  font-family: var(--BodyFont), sans-serif;
}
#WhatWeDo .WhatWeDoVisualContent h3 span {
  display: block;
}
#WhatWeDo .WhatWeDoVisualTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}
#WhatWeDo .WhatWeDoVisualTags span {
  padding: 8px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
#WhatWeDo .WhatWeDoServices {
  height: 100%;
  background: #ffffff;
}
#WhatWeDo .WhatWeDoItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 185px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
  padding: 38px 38px;
  transition: background-color 0.35s ease, color 0.35s ease, padding 0.35s ease;
}
#WhatWeDo .WhatWeDoItem:last-child {
  border-bottom: 0;
}
#WhatWeDo .WhatWeDoItem:hover {
  color: #000;
  background: #fff;
  padding-right: 48px;
  padding-left: 48px;
  border-color: #ef2d38;
}
#WhatWeDo .WhatWeDoItem:hover .WhatWeDoNumber {
  color: var(--BrandRed);
}
#WhatWeDo .WhatWeDoItem:hover .WhatWeDoItemContent p {
  color: rgba(18, 18, 18, 0.58);
}
#WhatWeDo .WhatWeDoItem:hover .WhatWeDoItemContent h3 {
  color: #151515;
}
#WhatWeDo .WhatWeDoItem:hover .WhatWeDoArrow {
  color: #ffffff;
  border-color: #ff2434;
  background: #ff2434;
  transform: rotate(-35deg);
}
#WhatWeDo .WhatWeDoItem .WhyChooseUsNumber {
  flex: 0 0 90px;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -2px;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#WhatWeDo .WhyChooseUsIcon {
  position: relative;
  flex: 0 0 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-height: 76px;
  color: var(--BrandRed);
}
#WhatWeDo .WhyChooseUsIcon svg {
  display: block;
  width: 78px;
  height: 78px;
}
#WhatWeDo .WhatWeDoNumber {
  padding-top: 5px;
  color: #ff2434;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.35s ease;
}
#WhatWeDo .WhatWeDoItemContent .WhatWeDoCategory {
  display: block;
  margin-bottom: 10px;
  color: #ff2434;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: none;
}
#WhatWeDo .WhatWeDoItemContent h3 {
  margin: 0;
  color: #151515;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.8px;
  transition: color 0.35s ease;
  font-family: var(--BodyFont), sans-serif;
}
#WhatWeDo .WhatWeDoItemContent p {
  max-width: 540px;
  margin: 12px 0 0;
  color: rgba(18, 18, 18, 0.58);
  font-size: 18px;
  line-height: 1.65;
  transition: color 0.35s ease;
}
#WhatWeDo .WhatWeDoArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-top: 8px;
  color: #171717;
  border: 1px solid rgba(18, 18, 18, 0.2);
  text-decoration: none;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
#WhatWeDo .WhatWeDoArrow svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#PurposeSection {
  position: relative;
  padding: 0 0 120px;
  overflow: hidden;
  background: #f7f7f4;
  font-family: var(--BodyFont), sans-serif;
}
#PurposeSection .PurposeWrapper {
  position: relative;
}
#PurposeSection .PurposeVisual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #171717;
}
#PurposeSection .PurposeVisual > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 1s ease, filter 0.6s ease;
}
#PurposeSection .PurposeVisual:hover > img {
  transform: scale(1.025);
}
#PurposeSection .PurposeVisualOverlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.64);
  pointer-events: none;
}
#PurposeSection .PurposeHeader {
  position: relative;
  z-index: 2;
  padding: 65px 65px 230px;
}
#PurposeSection .SectionTitle .SubTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#PurposeSection .SectionTitle .SubTitle::before {
  width: 25px;
  height: 2px;
  background: #ff2434;
  content: "";
}
#PurposeSection .SectionTitle h2 {
  font-family: var(--BodyFont), sans-serif;
  max-width: 780px;
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3px;
}
#PurposeSection .SectionTitle h2 span {
  display: block;
}
#PurposeSection .SectionTitleLight .SubTitle {
  color: rgba(255, 255, 255, 0.72);
}
#PurposeSection .SectionTitleLight h2 {
  color: #ffffff;
}
#PurposeSection .PurposeIntro {
  max-width: 440px;
  margin-left: auto;
  padding-bottom: 7px;
}
#PurposeSection .PurposeIntro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.75;
}
#PurposeSection .PurposeImageLabel {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 195px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#PurposeSection .PurposeImageLabel span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
#PurposeSection .PurposeImageLabel span:first-child::after {
  width: 24px;
  height: 1px;
  background: #ff2434;
  content: "";
}
#PurposeSection .PurposeCards {
  position: relative;
  z-index: 3;
  margin-top: -165px;
  padding: 0 35px;
}
#PurposeSection .PurposeCard {
  position: relative;
  display: flex;
  min-height: 385px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 36px;
  overflow: hidden;
  color: #171717;
  border-right: 1px solid rgba(18, 18, 18, 0.12);
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#PurposeSection .PurposeCard::before {
  position: absolute;
  top: 0;
  left: 36px;
  width: 35px;
  height: 3px;
  background: #ff2434;
  content: "";
}
#PurposeSection .PurposeCard:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}
#PurposeSection .PurposeCard:hover .PurposeIcon {
  color: #ffffff;
  border-color: #ff2434;
  background: #ff2434;
  transform: rotate(-8deg);
}
#PurposeSection .PurposeCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
#PurposeSection .PurposeCard:hover::before {
  width: 100%;
  left: 0;
}
#PurposeSection .col-lg-4:first-child .PurposeCard {
  border-radius: 18px 0 0 18px;
}
#PurposeSection .col-lg-4:last-child .PurposeCard {
  border-right: 0;
  border-radius: 0 18px 18px 0;
}
#PurposeSection .PurposeCardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#PurposeSection .PurposeNumber {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--BrandRed);
}
#PurposeSection .PurposeIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #171717;
  border: 1px solid rgba(18, 18, 18, 0.18);
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}
#PurposeSection .PurposeIcon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#PurposeSection .PurposeCardContent .PurposeLabel {
  display: block;
  margin-bottom: 17px;
  color: #ff2434;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#PurposeSection .PurposeCardContent h3 {
  max-width: 310px;
  margin: 0;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-family: var(--BodyFont), sans-serif;
}
#PurposeSection .PurposeCardContent p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(18, 18, 18, 0.6);
  font-size: 18px;
  line-height: 1.7;
}
#PurposeSection .PurposeCardDark {
  color: #ffffff;
  background: #191919;
}
#PurposeSection .PurposeCardDark::before {
  background: #ffffff;
}
#PurposeSection .PurposeCardDark .PurposeNumber {
  color: #ffffff;
}
#PurposeSection .PurposeCardDark .PurposeIcon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}
#PurposeSection .PurposeCardDark .PurposeCardContent .PurposeLabel {
  color: #ff4350;
}
#PurposeSection .PurposeCardDark .PurposeCardContent p {
  color: rgba(255, 255, 255, 0.6);
}
#PurposeSection .PurposeCardRed {
  color: #ffffff;
  background: #f32635;
}
#PurposeSection .PurposeCardRed::before {
  background: #171717;
}
#PurposeSection .PurposeCardRed .PurposeNumber {
  color: #ffffff;
}
#PurposeSection .PurposeCardRed .PurposeIcon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}
#PurposeSection .PurposeCardRed .PurposeCardContent .PurposeLabel {
  color: rgba(255, 255, 255, 0.72);
}
#PurposeSection .PurposeCardRed .PurposeCardContent p {
  color: rgba(255, 255, 255, 0.74);
}
#PurposeSection .PurposeCardRed:hover .PurposeIcon {
  color: #171717;
  border-color: #ffffff;
  background: #ffffff;
}

#LeadershipSection {
  position: relative;
  padding: 0 0;
  overflow: hidden;
  background: #f7f7f4;
}
#LeadershipSection .LeadershipHeading {
  margin-bottom: 58px;
}
#LeadershipSection .SectionTitle .SubTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#LeadershipSection .SectionTitle .SubTitle::before {
  width: 25px;
  height: 2px;
  background: #f52435;
  content: "";
}
#LeadershipSection .SectionTitle h2 {
  max-width: 770px;
  margin: 0;
  color: #121212;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3.5px;
  font-family: var(--BodyFont), sans-serif;
}
#LeadershipSection .SectionTitle h2 span {
  display: block;
}
#LeadershipSection .LeadershipIntro {
  max-width: 440px;
  padding-bottom: 6px;
}
#LeadershipSection .LeadershipIntro p {
  margin: 0;
  color: rgba(18, 18, 18, 0.62);
  font-size: 18px;
  line-height: 1.75;
}
#LeadershipSection .LeadershipCanvas {
  position: relative;
  border-top: 1px solid rgba(18, 18, 18, 0.14);
  border-bottom: 1px solid rgba(18, 18, 18, 0.14);
}
#LeadershipSection .LeadershipFeatured {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #171717;
}
#LeadershipSection .LeadershipFeatured > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.9s ease, filter 0.5s ease;
}
#LeadershipSection .LeadershipFeatured::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 25%, rgba(10, 10, 10, 0.2) 55%, rgba(10, 10, 10, 0.9) 100%);
  pointer-events: none;
  content: "";
}
#LeadershipSection .LeadershipFeatured:hover > img {
  transform: scale(1.035);
}
#LeadershipSection .LeadershipFeaturedTop {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 36px;
  left: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipFeaturedTop span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#LeadershipSection .LeadershipFeaturedTop span:last-child::before {
  width: 22px;
  height: 2px;
  background: #f52435;
  content: "";
}
#LeadershipSection .LeadershipFeaturedContent {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 42px;
  left: 40px;
  color: #ffffff;
}
#LeadershipSection .LeadershipFeaturedContent .LeadershipRole {
  display: block;
  margin-bottom: 13px;
  color: #ff4553;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipFeaturedContent h3 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: capitalize;
}
#LeadershipSection .LeadershipFeaturedContent p {
  max-width: 430px;
  margin: 18px 70px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.7;
}
#LeadershipSection .LeadershipFeaturedContent > a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: 0.35s ease;
}
#LeadershipSection .LeadershipFeaturedContent > a svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#LeadershipSection .LeadershipFeaturedContent > a:hover {
  border-color: #f52435;
  background: #f52435;
  transform: rotate(-35deg);
}
#LeadershipSection .LeadershipRight {
  height: 100%;
  background: #f7f7f4;
}
#LeadershipSection .LeadershipStatement {
  padding: 55px 55px;
  border-bottom: 1px solid #ec181b;
}
#LeadershipSection .LeadershipStatement .LeadershipStatementLabel {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #ff4553;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipStatement .LeadershipStatementLabel::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}
#LeadershipSection .LeadershipStatement h3 {
  margin: 0;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-family: var(--BodyFont), sans-serif;
}
#LeadershipSection .LeadershipStatement p {
  max-width: 340px;
  margin: 0 0 5px auto;
  font-size: 18px;
  line-height: 1.7;
}
#LeadershipSection .LeadershipMember {
  position: relative;
  border-right: 1px solid rgba(18, 18, 18, 0.14);
  background: #f7f7f4;
}
#LeadershipSection .LeadershipMember:hover .LeadershipMemberImage img {
  filter: grayscale(20%);
  transform: scale(1.035);
}
#LeadershipSection .LeadershipMember:hover .LeadershipMemberInfo a {
  color: #ffffff;
  border-color: #f52435;
  background: #f52435;
  transform: rotate(-35deg);
}
#LeadershipSection .col-md-6:last-child .LeadershipMember {
  border-right: 0;
}
#LeadershipSection .LeadershipMemberOffset .LeadershipMemberImage img {
  -o-object-position: center 20%;
     object-position: center 20%;
}
#LeadershipSection .LeadershipMemberImage {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #dededb;
}
#LeadershipSection .LeadershipMemberImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.7s ease, filter 0.45s ease;
}
#LeadershipSection .LeadershipIndex {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  color: #ffffff;
  background: #f52435;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
#LeadershipSection .LeadershipMemberInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 125px;
  padding: 25px 28px;
}
#LeadershipSection .LeadershipMemberInfo span {
  display: block;
  margin-bottom: 8px;
  color: #f52435;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipMemberInfo h3 {
  margin: 0;
  color: #171717;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
#LeadershipSection .LeadershipMemberInfo > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  color: #171717;
  border: 1px solid rgba(18, 18, 18, 0.22);
  text-decoration: none;
  transition: 0.35s ease;
}
#LeadershipSection .LeadershipMemberInfo > a svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#LeadershipSection .LeadershipBottom {
  padding: 95px 0 120px;
  background: #ffffff;
}
#LeadershipSection .LeadershipBottomTitle {
  max-width: 350px;
  padding-right: 35px;
}
#LeadershipSection .LeadershipBottomTitle span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: #f52435;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipBottomTitle span::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}
#LeadershipSection .LeadershipBottomTitle h3 {
  margin: 0;
  color: #171717;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.4px;
}
#LeadershipSection .LeadershipWideMember {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 340px;
  border-top: 1px solid rgba(18, 18, 18, 0.15);
  border-bottom: 1px solid rgba(18, 18, 18, 0.15);
}
#LeadershipSection .LeadershipWideMember:hover .LeadershipWideImage img {
  filter: grayscale(20%);
  transform: scale(1.035);
}
#LeadershipSection .LeadershipWideImage {
  min-height: 340px;
  overflow: hidden;
  background: #dededb;
}
#LeadershipSection .LeadershipWideImage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.45s ease;
}
#LeadershipSection .LeadershipWideContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 40px;
  background: #f7f7f4;
}
#LeadershipSection .LeadershipWideContent > span {
  display: block;
  margin-bottom: 12px;
  color: #f52435;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipWideContent h3 {
  margin: 0;
  color: #171717;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}
#LeadershipSection .LeadershipWideContent p {
  max-width: 360px;
  margin: 17px 0 0;
  color: rgba(18, 18, 18, 0.58);
  font-size: 13px;
  line-height: 1.7;
}
#LeadershipSection .LeadershipWideContent > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
  color: #171717;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}
#LeadershipSection .LeadershipWideContent > a svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#LeadershipSection .LeadershipWideContent > a:hover {
  color: #f52435;
}
#LeadershipSection .LeadershipWideContent > a:hover svg {
  transform: translateX(5px);
}

#TrustIndexSection {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f7f7f4;
}
#TrustIndexSection .container {
  position: relative;
  z-index: 2;
}
#TrustIndexSection .TrustBackgroundText {
  position: absolute;
  top: 135px;
  right: -35px;
  color: transparent;
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -12px;
  -webkit-text-stroke: 1px rgba(18, 18, 18, 0.045);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#TrustIndexSection .TrustHeading {
  margin-bottom: 58px;
}
#TrustIndexSection .SectionTitle .SubTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#TrustIndexSection .SectionTitle .SubTitle::before {
  width: 25px;
  height: 2px;
  background: #f52435;
  content: "";
}
#TrustIndexSection .SectionTitle h2 {
  max-width: 760px;
  margin: 0;
  color: #121212;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3.5px;
  font-family: var(--BodyFont), sans-serif;
}
#TrustIndexSection .SectionTitle h2 span {
  display: block;
}
#TrustIndexSection .TrustIntro {
  max-width: 430px;
  padding-bottom: 6px;
}
#TrustIndexSection .TrustIntro p {
  margin: 0;
  color: rgba(18, 18, 18, 0.6);
  font-size: 18px;
  line-height: 1.75;
}
#TrustIndexSection .TrustFeature {
  position: relative;
  border-top: 1px solid rgba(18, 18, 18, 0.16);
  border-bottom: 1px solid rgba(18, 18, 18, 0.16);
}
#TrustIndexSection .TrustFeatureContent {
  position: relative;
  display: flex;
  min-height: 585px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 90px 70px 0;
  overflow: hidden;
}
#TrustIndexSection .TrustFeatureContent::before {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: 0;
  width: 3px;
  background: #f52435;
  content: "";
}
#TrustIndexSection .TrustFeatureContent .TrustCode {
  position: absolute;
  top: 34px;
  left: 32px;
  color: rgba(18, 18, 18, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#TrustIndexSection .TrustFeatureContent h3 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  padding-left: 32px;
  color: #171717;
  font-size: 67px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -4px;
  font-family: var(--BodyFont), sans-serif;
}
#TrustIndexSection .TrustFeatureContent h3 span {
  display: block;
  color: #f52435;
}
#TrustIndexSection .TrustFeatureContent > p {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 30px 0 0;
  padding-left: 32px;
  color: rgba(18, 18, 18, 0.59);
  font-size: 18px;
  line-height: 1.75;
}
#TrustIndexSection .TrustFeatureNumber {
  position: absolute;
  right: 45px;
  bottom: -40px;
  color: rgba(18, 18, 18, 0.035);
  font-size: 330px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -25px;
  pointer-events: none;
}
#TrustIndexSection .TrustFeatureFooter {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-left: 32px;
}
#TrustIndexSection .TrustFeatureFooter span {
  padding: 9px 14px;
  color: #171717;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#TrustIndexSection .TrustImage {
  position: relative;
  height: 100%;
  min-height: 585px;
  margin: 0;
  overflow: hidden;
  background: #171717;
}
#TrustIndexSection .TrustImage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.9s ease, filter 0.5s ease;
}
#TrustIndexSection .TrustImage:hover img {
  transform: scale(1.035);
}
#TrustIndexSection .TrustImage figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: 285px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}
#TrustIndexSection .TrustImage figcaption span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#TrustIndexSection .TrustImage figcaption span::before {
  display: inline-block;
  width: 23px;
  height: 2px;
  margin-right: 10px;
  background: #f52435;
  vertical-align: middle;
  content: "";
}
#TrustIndexSection .TrustImageShade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 30%, rgba(10, 10, 10, 0.82) 100%);
  pointer-events: none;
}
#TrustIndexSection .TrustPrinciples {
  border-bottom: 1px solid rgba(18, 18, 18, 0.16);
}
#TrustIndexSection .TrustPrinciples .col-lg-3 {
  border-right: 1px solid rgba(18, 18, 18, 0.14);
}
#TrustIndexSection .TrustPrinciples .col-lg-3:last-child {
  border-right: 0;
}
#TrustIndexSection .TrustPrinciple {
  position: relative;
  min-height: 325px;
  padding: 40px 30px 42px;
  overflow: hidden;
  transition: background-color 0.35s ease, padding 0.35s ease;
}
#TrustIndexSection .TrustPrinciple::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  background: #f52435;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  content: "";
}
#TrustIndexSection .TrustPrinciple:hover {
  padding-top: 50px;
  background: #ffffff;
}
#TrustIndexSection .TrustPrinciple:hover::before {
  transform: scaleX(1);
}
#TrustIndexSection .TrustPrinciple:hover .TrustNumber {
  color: #f52435;
}
#TrustIndexSection .TrustPrinciple h3 {
  max-width: 240px;
  margin: 10px 0 0;
  color: #171717;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.9px;
  font-family: var(--BodyFont), sans-serif;
}
#TrustIndexSection .TrustPrinciple p {
  max-width: 260px;
  margin: 17px 0 0;
  color: rgba(18, 18, 18, 0.57);
  font-size: 18px;
  line-height: 1.7;
}
#TrustIndexSection .TrustPrincipleTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#TrustIndexSection .TrustNumber {
  color: rgba(18, 18, 18, 0.35);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.35s ease;
}
#TrustIndexSection .TrustWord {
  color: #f52435;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

#ProjectCTA {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #f7f5ef;
}
#ProjectCTA .container {
  position: relative;
  z-index: 3;
}
#ProjectCTA .ProjectCTAContent {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}
#ProjectCTA .ProjectCTAContent .SectionTitle h2 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  padding-bottom: 20px;
  color: #171717;
  font-size: 67px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -4px;
  font-family: var(--BodyFont), sans-serif;
}
#ProjectCTA .ProjectCTAContent .SectionTitle p {
  color: rgba(18, 18, 18, 0.59);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 30px;
}
#ProjectCTA .ProjectCTAImage {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 560px;
  z-index: 1;
  overflow: hidden;
}
#ProjectCTA .ProjectCTAImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#ProjectCTA .ProjectCTAImage {
  /* Soft fade like your screenshot */
}
#ProjectCTA .ProjectCTAImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, #f7f5ef 0%, rgba(247, 245, 239, 0.95) 15%, rgba(247, 245, 239, 0.65) 45%, rgba(247, 245, 239, 0) 100%);
}

/* =========================
   Responsive
========================= */
#OtherPage {
  padding: 0 0 0;
  background: var(--BrandWhite, #ffffff);
}
#OtherPage .hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 615px;
  overflow: hidden;
}
#OtherPage .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.06) 0%, rgba(17, 17, 17, 0.18) 40%, rgba(17, 17, 17, 0.24) 50%, rgba(17, 17, 17, 0.18) 60%, rgba(17, 17, 17, 0.06) 100%);
}
#OtherPage .hero-img > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#OtherPage .Page-Title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc(100% - 40px);
  text-align: center;
  transform: translate(-50%, -50%);
}
#OtherPage .Page-Title::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 18px;
  background: var(--BrandRed, #ec181b);
}
#OtherPage .Page-Title h1 {
  margin: 0;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont), sans-serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  text-shadow: none;
}

#ProductServices {
  padding: 90px 0 66px;
  background: var(--BrandWhite, #ffffff);
}
#ProductServices .ServiceBox {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}
#ProductServices .ServiceBox::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--BrandRed, #ec181b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
#ProductServices .ServiceBox:hover::after {
  transform: scaleX(1);
}
#ProductServices .ServiceBox:hover .ServiceImg > img {
  transform: scale(1.06);
}
#ProductServices .ServiceBox:hover .ServiceImg::after {
  opacity: 1;
}
#ProductServices .ServiceBox:hover .Icon {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
}
#ProductServices .ServiceBox:hover .Icon svg {
  transform: rotate(45deg);
}
#ProductServices .ServiceBox:hover .ServiceName h3 {
  color: var(--BrandRed, #ec181b);
}
#ProductServices .ServiceImg {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
  border-radius: 18px;
}
#ProductServices .ServiceImg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#ProductServices .ServiceImg > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
#ProductServices .Icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  color: var(--BrandWhite);
  background: var(--BrandRed);
  border-radius: 0 19px 0 19px;
  transition: color 0.35s ease, background-color 0.35s ease;
}
#ProductServices .Icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease;
}
#ProductServices .Icon:focus-visible {
  outline: 3px solid var(--BrandBlack, #ec181b);
  outline-offset: -4px;
}
#ProductServices .ServiceName {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0px 15px 0;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background: var(--BrandBlack);
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#ProductServices .ServiceName h3 {
  margin: 0;
  color: var(--BrandWhite, #111111);
  font-family: var(--BodyFont, "Aniko", sans-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.4px;
  transition: color 0.35s ease;
}

#ServiceOverview {
  padding: 100px 0;
  background: #f7f7f5;
  overflow: hidden;
  /*=========================================*
  *=            Section Heading             =*
  *=========================================*/
}
#ServiceOverview .ServiceOverviewHeading {
  max-width: 900px;
  margin-bottom: 55px;
}
#ServiceOverview .ServiceOverviewHeading .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
}
#ServiceOverview .ServiceOverviewHeading .SubTitle::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: currentColor;
}
#ServiceOverview .ServiceOverviewHeading h2 {
  margin: 0;
  font-size: 58px;
  line-height: 66px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #111111;
}
#ServiceOverview .ServiceOverviewHeading h2 span {
  display: block;
}
#ServiceOverview {
  /*=========================================*
  *=             Main Card                  =*
  *=========================================*/
}
#ServiceOverview .ServiceOverviewCard {
  background: #ffffff;
  border: 1px solid #e5e5e2;
  border-radius: 28px;
  overflow: hidden;
}
#ServiceOverview {
  /*=========================================*
  *=              Top Area                  =*
  *=========================================*/
}
#ServiceOverview .ServiceOverviewTop {
  padding: 55px 60px 60px;
}
#ServiceOverview .ServiceOverviewLabel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
#ServiceOverview .ServiceOverviewLabel > span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
}
#ServiceOverview .ServiceOverviewIcon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ec181b;
  border-radius: 50%;
}
#ServiceOverview .ServiceOverviewIcon img {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
#ServiceOverview {
  /*=========================================*
  *=          Main Overview Content         =*
  *=========================================*/
}
#ServiceOverview .ServiceOverviewContent {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
}
#ServiceOverview .ServiceOverviewPrimary {
  padding-right: 70px;
}
#ServiceOverview .ServiceOverviewPrimary h3 {
  max-width: 700px;
  margin: 0;
  font-size: 40px;
  line-height: 49px;
  font-weight: 500;
  letter-spacing: -1.2px;
  color: #111111;
}
#ServiceOverview .ServiceOverviewDescription {
  padding-left: 55px;
  border-left: 1px solid #dededb;
}
#ServiceOverview .ServiceOverviewDescription p {
  max-width: 530px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #666666;
}
#ServiceOverview .ServiceOverviewDescription p:last-child {
  margin-bottom: 0;
}
#ServiceOverview {
  /*=========================================*
  *=             Service Scope              =*
  *=========================================*/
}
#ServiceOverview .ServiceScope {
  padding: 38px 60px 0;
  background: #fafaf8;
  border-top: 1px solid #e5e5e2;
}
#ServiceOverview .ServiceScopeHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 32px;
}
#ServiceOverview .ServiceScopeHeader > span {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ec181b;
}
#ServiceOverview .ServiceScopeHeader p {
  max-width: 380px;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #818181;
  text-align: right;
}
#ServiceOverview {
  /*=========================================*
  *=              Scope Grid                =*
  *=========================================*/
}
#ServiceOverview .ServiceScopeGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dfdfdc;
}
#ServiceOverview .ServiceScopeItem {
  position: relative;
  min-height: 245px;
  padding: 35px 15px 40px 0;
  transition: padding 0.35s ease;
}
#ServiceOverview .ServiceScopeItem:not(:first-child) {
  padding-left: 15px;
  border-left: 1px solid #dfdfdc;
}
#ServiceOverview .ServiceScopeItem:hover .ServiceScopeIcon {
  background: #ec181b;
  border-color: #ec181b;
  transform: translateY(-4px);
}
#ServiceOverview .ServiceScopeItem:hover .ServiceScopeIcon img {
  filter: brightness(0) invert(1);
}
#ServiceOverview .ServiceScopeItem:hover .ServiceScopeContent h4 {
  color: #ec181b;
}
#ServiceOverview .ServiceScopeIcon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: #ffffff;
  border: 1px solid #dededb;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
#ServiceOverview .ServiceScopeIcon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
#ServiceOverview .ServiceScopeContent h4 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  color: #111111;
  transition: color 0.3s ease;
}
#ServiceOverview .ServiceScopeContent p {
  max-width: 100%;
  margin: 0;
  font-size: 14px !important;
  line-height: 23px;
  color: #727272;
}

#IndustrialLandSupport {
  padding: 110px 0;
  overflow: hidden;
  background: var(--BrandWhite, #ffffff);
}
#IndustrialLandSupport .PrimaryBtn {
  margin-top: 30px;
}
#IndustrialLandSupport .row {
  --bs-gutter-x: 40px;
}
#IndustrialLandSupport .LandSupportImage {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
  border-radius: 20px;
}
#IndustrialLandSupport .LandSupportImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
#IndustrialLandSupport .LandSupportImage:hover img {
  transform: scale(1.025);
}
#IndustrialLandSupport .LandSupportContent {
  max-width: 100%;
  margin-left: auto;
}
#IndustrialLandSupport .SectionTitle {
  margin-bottom: 34px;
}
#IndustrialLandSupport .SectionTitle .SubTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#IndustrialLandSupport .SectionTitle .SubTitle::before {
  content: "";
  width: 36px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--BrandRed, #ec181b);
}
#IndustrialLandSupport .SectionTitle .SectionHeading {
  margin: 0 0 24px;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
#IndustrialLandSupport .SectionTitle .SectionDescription {
  max-width: 100%;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}
#IndustrialLandSupport .LandSupportList {
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#IndustrialLandSupport .LandSupportItem {
  display: grid;
  grid-template-columns: 8px 42px 1fr 24px;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  color: var(--BrandBlack, #111111);
  text-decoration: none;
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  transition: color 0.3s ease;
}
#IndustrialLandSupport .LandSupportItem .ItemMarker {
  width: 7px;
  height: 7px;
  background: var(--BrandRed, #ec181b);
}
#IndustrialLandSupport .LandSupportItem .ItemNumber {
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
#IndustrialLandSupport .LandSupportItem .ItemTitle {
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.4;
}
#IndustrialLandSupport .LandSupportItem svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--BrandRed, #ec181b);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#IndustrialLandSupport .LandSupportItem:hover {
  color: var(--BrandRed, #ec181b);
}
#IndustrialLandSupport .LandSupportItem:hover svg {
  transform: translateX(5px);
}
#IndustrialLandSupport .LandSupportItem:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 4px;
}
#IndustrialLandSupport .LandSupportButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  margin-top: 40px;
  padding: 17px 25px;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}
#IndustrialLandSupport .LandSupportButton svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--BrandRed, #ec181b);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#IndustrialLandSupport .LandSupportButton:hover {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
}
#IndustrialLandSupport .LandSupportButton:hover svg {
  stroke: var(--BrandWhite, #ffffff);
  transform: translateX(5px);
}
#IndustrialLandSupport .LandSupportButton:focus-visible {
  outline: 3px solid var(--BrandRed, #ec181b);
  outline-offset: 4px;
}

#ServiceConsideration {
  padding: 100px 0;
  background: #f7f7f5;
  overflow: hidden;
  /*=========================================*
  *=             Section Head               =*
  *=========================================*/
}
#ServiceConsideration .ServiceConsiderationHead {
  max-width: 920px;
  margin-bottom: 55px;
}
#ServiceConsideration .ServiceConsiderationHead .SubTitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ec181b;
}
#ServiceConsideration .ServiceConsiderationHead .SubTitle::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #ec181b;
}
#ServiceConsideration .ServiceConsiderationHead h2 {
  margin: 0;
  max-width: 850px;
  font-size: 58px;
  line-height: 66px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #111111;
}
#ServiceConsideration .ServiceConsiderationHead h2 span {
  display: block;
}
#ServiceConsideration {
  /*=========================================*
  *=              Main Wrap                 =*
  *=========================================*/
}
#ServiceConsideration .ServiceConsiderationWrap {
  position: relative;
  padding: 55px 60px 60px;
  background: #ffffff;
  border: 1px solid #e5e5e2;
  border-radius: 28px;
  overflow: hidden;
}
#ServiceConsideration {
  /*=========================================*
  *=              Top Content               =*
  *=========================================*/
}
#ServiceConsideration .ServiceConsiderationTop {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: start;
  padding-bottom: 48px;
}
#ServiceConsideration .ServiceConsiderationTag {
  display: flex;
  align-items: center;
  gap: 15px;
}
#ServiceConsideration .ServiceConsiderationTag span {
  max-width: 250px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
}
#ServiceConsideration .TagIcon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f5;
  border-radius: 50%;
}
#ServiceConsideration .TagIcon img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
#ServiceConsideration .ServiceConsiderationIntro {
  padding-left: 55px;
  border-left: 1px solid #dfdfdc;
}
#ServiceConsideration .ServiceConsiderationIntro p {
  max-width: 760px;
  margin: 0;
  font-size: 21px;
  line-height: 33px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #333333;
}
#ServiceConsideration {
  /*=========================================*
  *=               Image Band               =*
  *=========================================*/
}
#ServiceConsideration .ServiceImageBand {
  position: relative;
  width: calc(100% + 120px);
  margin-left: -60px;
  margin-bottom: 52px;
  padding: 0 60px;
}
#ServiceConsideration .ServiceImageBand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e1;
  transform: translateY(-50%);
}
#ServiceConsideration .ServiceImageAccent {
  position: absolute;
  top: -12px;
  left: 42px;
  width: 105px;
  height: 105px;
  background: #ec181b;
  border-radius: 18px;
  z-index: 1;
}
#ServiceConsideration .ServiceImageBandInner {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  z-index: 2;
}
#ServiceConsideration .ServiceImageBandInner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 40%, rgba(17, 17, 17, 0.05) 100%);
  pointer-events: none;
}
#ServiceConsideration .ServiceImageBandInner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.8s ease;
}
#ServiceConsideration .ServiceImageBandInner:hover img {
  transform: scale(1.025);
}
#ServiceConsideration {
  /*=========================================*
  *=             Bottom Content             =*
  *=========================================*/
}
#ServiceConsideration .ServiceConsiderationBottom {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
}
#ServiceConsideration .ServiceConsiderationStatement {
  padding-right: 70px;
}
#ServiceConsideration .ServiceConsiderationStatement h3 {
  max-width: 620px;
  margin: 0;
  font-size: 34px;
  line-height: 43px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111111;
}
#ServiceConsideration .ServiceConsiderationText {
  padding-left: 55px;
  border-left: 1px solid #dfdfdc;
}
#ServiceConsideration .ServiceConsiderationText p {
  max-width: 670px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 26px;
  color: #666666;
}
#ServiceConsideration .ServiceConsiderationText p:last-child {
  margin-bottom: 0;
}

/*=========================================*
*=              Responsive                =*
*=========================================*/
#WhatWeAssess {
  position: relative;
  overflow: hidden;
  background: var(--BrandDark, #1c1c1c);
}
#WhatWeAssess .AssessmentVisual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#WhatWeAssess .AssessmentVisual .container {
  position: relative;
  z-index: 3;
}
#WhatWeAssess .AssessmentBackground {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 58%;
     object-position: center 58%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#WhatWeAssess .AssessmentOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.76) 28%, rgba(10, 10, 10, 0.26) 58%, rgba(10, 10, 10, 0.05) 100%), linear-gradient(0deg, rgba(10, 10, 10, 0.28) 0%, rgba(10, 10, 10, 0) 45%);
  pointer-events: none;
}
#WhatWeAssess .AssessmentVisual:hover .AssessmentBackground {
  transform: scale(1.015);
}
#WhatWeAssess .SectionTitle {
  max-width: 680px;
  padding: 70px 0;
}
#WhatWeAssess .SectionTitle .SubTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#WhatWeAssess .SectionTitle .SubTitle::before {
  content: "";
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}
#WhatWeAssess .SectionTitle .SectionHeading {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
#WhatWeAssess .SectionTitle .SectionDescription {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#WhatWeAssess .AssessmentDetails {
  position: relative;
  z-index: 4;
  background: var(--BrandDark, #1c1c1c);
}
#WhatWeAssess .AssessmentDetailsWrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
}
#WhatWeAssess .AssessmentGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#WhatWeAssess .AssessmentItem {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 38px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
#WhatWeAssess .AssessmentItem:nth-child(3n) {
  border-right: 0;
}
#WhatWeAssess .AssessmentItem:nth-last-child(-n+3) {
  border-bottom: 0;
}
#WhatWeAssess .AssessmentItem::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--BrandRed, #ec181b);
  transition: width 0.4s ease;
}
#WhatWeAssess .AssessmentItem:hover::before {
  width: 100%;
}
#WhatWeAssess .AssessmentItem:hover .AssessmentNumber {
  color: var(--BrandWhite, #ffffff);
}
#WhatWeAssess .AssessmentItem:hover h3 {
  color: var(--BrandRed, #ec181b);
}
#WhatWeAssess .AssessmentItem .AssessmentNumber {
  padding-top: 5px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}
#WhatWeAssess .AssessmentItem h3 {
  margin: 0 0 10px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.3s ease;
}
#WhatWeAssess .AssessmentItem p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}
#WhatWeAssess .AssessmentAction {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 30px 20px;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transition: color 0.3s ease, background-color 0.3s ease;
}
#WhatWeAssess .AssessmentAction span {
  transform: rotate(180deg);
}
#WhatWeAssess .AssessmentAction svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
#WhatWeAssess .AssessmentAction:hover {
  color: var(--BrandWhite, #ffffff);
  background: #c91215;
}
#WhatWeAssess .AssessmentAction:hover svg {
  transform: rotate(90deg) translateX(5px);
}
#WhatWeAssess .AssessmentAction:focus-visible {
  outline: 3px solid var(--BrandWhite, #ffffff);
  outline-offset: -6px;
}

#WhyOutsetBridge {
  padding: 110px 0 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
}
#WhyOutsetBridge .SectionTitle {
  max-width: 780px;
}
#WhyOutsetBridge .SectionTitle .SubTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#WhyOutsetBridge .SectionTitle .SubTitle::before {
  content: "";
  width: 38px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}
#WhyOutsetBridge .SectionTitle .SectionHeading {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
#WhyOutsetBridge .WhyOutsetIntro {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#WhyOutsetBridge .WhyOutsetReasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
}
#WhyOutsetBridge .WhyOutsetReason {
  min-height: 185px;
  padding: 12px 42px 14px;
  border-left: 1px solid var(--BrandBorder, #dadad6);
}
#WhyOutsetBridge .WhyOutsetReason:first-child {
  padding-left: 0;
  border-left: 0;
}
#WhyOutsetBridge .WhyOutsetReason:last-child {
  padding-right: 0;
}
#WhyOutsetBridge .WhyOutsetReason .ReasonNumber {
  display: block;
  margin-bottom: 16px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}
#WhyOutsetBridge .WhyOutsetReason h3 {
  margin: 0 0 14px;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}
#WhyOutsetBridge .WhyOutsetReason p {
  max-width: 290px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
#WhyOutsetBridge .WhyOutsetVisual {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
  min-height: 360px;
  margin-top: 55px;
  overflow: hidden;
}
#WhyOutsetBridge .WhyOutsetImage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#WhyOutsetBridge .WhyOutsetImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 48%;
     object-position: center 48%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
#WhyOutsetBridge .WhyOutsetStatement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 55px;
  color: var(--BrandBlack, );
  background: var(--BrandBackground);
  border: 2px solid var(--BrandRed);
  border-radius: 20px;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#WhyOutsetBridge .WhyOutsetStatement p {
  max-width: 310px;
  margin: 0;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.4;
}
#WhyOutsetBridge .WhyOutsetStatement span {
  width: 45px;
  height: 3px;
  margin-top: 35px;
  background: var(--BrandRed, #ec181b);
}
#WhyOutsetBridge .WhyOutsetVisual:hover .WhyOutsetImage img {
  transform: scale(1.02);
}

#HowWeWorkSection {
  position: relative;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
  padding-top: 0;
}
#HowWeWorkSection .HowWeWorkHeader {
  position: relative;
  z-index: 2;
  align-items: flex-end;
  padding-top: 110px;
  padding-bottom: 90px;
}
#HowWeWorkSection .HowWeWorkHeader .SectionLabel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#HowWeWorkSection .HowWeWorkHeader .SectionLabel::before {
  width: 38px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  transition: width 0.4s ease;
}
#HowWeWorkSection .HowWeWorkHeader .SectionTitle {
  max-width: 780px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
#HowWeWorkSection .HowWeWorkHeader .SectionDescription {
  max-width: 540px;
  margin: 0 0 6px auto;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#HowWeWorkSection .HowWeWorkHeader:hover .SectionLabel::before {
  width: 52px;
}
#HowWeWorkSection .HowWeWorkTimeline {
  position: relative;
  padding-bottom: 90px;
}
#HowWeWorkSection .HowWeWorkTimeline::before {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(236, 24, 27, 0.45);
  content: "";
}
#HowWeWorkSection .HowWeWorkTimeline > .row {
  position: relative;
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep {
  position: relative;
  height: 100%;
  padding: 58px 38px 30px 25px;
  overflow: visible;
  isolation: isolate;
  cursor: default;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep::before {
  position: absolute;
  inset: 18px 8px 0 0;
  z-index: -1;
  background: var(--BrandWhite, #ffffff);
  opacity: 0;
  content: "";
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep::after {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 1;
  width: 0;
  height: 3px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep .HowWeWorkNode {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 18px;
  height: 18px;
  display: block;
  background: var(--BrandRed, #ec181b);
  box-shadow: 0 0 0 0 rgba(236, 24, 27, 0.18);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep .HowWeWorkNumber {
  position: relative;
  display: block;
  margin-bottom: 20px;
  color: transparent;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 118px;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -4px;
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-text-stroke-color 0.35s ease;
  -webkit-text-stroke: 1px var(--BrandBorder, #dadad6);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep .HowWeWorkStepTitle {
  position: relative;
  margin: 0 0 14px;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  transform: translateX(0);
  transition: color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep .HowWeWorkStepDescription {
  position: relative;
  max-width: 290px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  transform: translateY(0);
  transition: color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover {
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.06);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover::before {
  opacity: 1;
  transform: translateY(0);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover::after {
  width: calc(100% - 8px);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover .HowWeWorkNode {
  box-shadow: 0 0 0 8px rgba(236, 24, 27, 0.1);
  transform: rotate(45deg) scale(1.08);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover .HowWeWorkNumber {
  transform: translateX(6px);
  -webkit-text-stroke-color: var(--BrandRed, #ec181b);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover .HowWeWorkStepTitle {
  color: var(--BrandRed, #ec181b);
  transform: translateX(6px);
}
#HowWeWorkSection .HowWeWorkTimeline .HowWeWorkStep:hover .HowWeWorkStepDescription {
  color: var(--BrandText, #171717);
  transform: translateY(-2px);
}
#HowWeWorkSection .HowWeWorkCta {
  position: relative;
  overflow: hidden;
  background: var(--BrandBlack, #111111);
}
#HowWeWorkSection .HowWeWorkCta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaTitle {
  max-width: 700px;
  margin: 0;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.4;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink span {
  display: block;
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink svg {
  width: 27px;
  height: auto;
  flex: 0 0 auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink:hover {
  gap: 24px;
  color: var(--BrandWhite, #ffffff);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink:hover svg {
  transform: translateX(6px);
}
#HowWeWorkSection .HowWeWorkCta .HowWeWorkCtaWrapper .HowWeWorkCtaLink:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 8px;
}
#HowWeWorkSection .HowWeWorkCta:hover::before {
  width: 100%;
}
#HowWeWorkSection .HowWeWorkCta:hover .HowWeWorkCtaWrapper .HowWeWorkCtaTitle {
  transform: translateX(6px);
}

#ServiceCTA {
  padding: 75px 0;
  background: #f7f7f5;
}
#ServiceCTA .ServiceCTAWrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 185px;
  background: #ffffff;
  border: 1px solid #e4e4e0;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
#ServiceCTA .ServiceCTAWrapper:hover {
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
#ServiceCTA .ServiceCTAWrapper:hover .ServiceCTAContent::before {
  width: 90%;
}
#ServiceCTA .ServiceCTAWrapper {
  /* Background Image */
}
#ServiceCTA .ServiceCTAWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.8s ease;
}
#ServiceCTA .ServiceCTAWrapper {
  /* Image Blend */
}
#ServiceCTA .ServiceCTAWrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.68) 68%, rgba(247, 247, 245, 0.18) 100%);
  z-index: -1;
  pointer-events: none;
}
#ServiceCTA .ServiceCTAWrapper:hover::before {
  transform: scale(1.035);
}
#ServiceCTA .ServiceCTAWrapper:hover .ServiceCTAButton svg {
  transform: translate(4px, -4px);
}
#ServiceCTA {
  /*=========================================*
  *=              Content                   =*
  *=========================================*/
}
#ServiceCTA .ServiceCTAContent {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 45px 60px;
}
#ServiceCTA .ServiceCTAContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  width: 90px;
  height: 3px;
  background: #ec181b;
}
#ServiceCTA .ServiceCTAContent h3 {
  max-width: 760px;
  margin: 0;
  font-size: 34px;
  line-height: 43px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111111;
}
#ServiceCTA {
  /*=========================================*
  *=               Button                   =*
  *=========================================*/
}
#ServiceCTA .ServiceCTAButton {
  position: relative;
  z-index: 3;
  width: 210px;
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 35px 30px;
  background: #ec181b;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, width 0.35s ease, flex-basis 0.35s ease;
}
#ServiceCTA .ServiceCTAButton span {
  max-width: 130px;
  font-size: 12px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
}
#ServiceCTA .ServiceCTAButton svg {
  width: 29px;
  height: 29px;
  margin-left: auto;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#ServiceCTA .ServiceCTAButton:hover {
  width: 225px;
  flex-basis: 225px;
  background: #d91418;
}
#ServiceCTA .ServiceCTAButton:hover svg {
  transform: translate(4px, -4px);
}

/*=========================================*
*=              Responsive                =*
*=========================================*/
#OtherServicesSection {
  padding: 110px 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
}
#OtherServicesSection .OtherServicesHeader {
  margin-bottom: 65px;
}
#OtherServicesSection .OtherServicesHeader .SectionTitle {
  max-width: 850px;
}
#OtherServicesSection .OtherServicesHeader .SectionTitle .SubTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#OtherServicesSection .OtherServicesHeader .SectionTitle .SubTitle::before {
  width: 38px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  transition: width 0.4s ease;
}
#OtherServicesSection .OtherServicesHeader .SectionTitle .SectionHeading {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
#OtherServicesSection .OtherServicesHeader .SectionTitle:hover .SubTitle::before {
  width: 50px;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight {
  max-width: 500px;
  margin-left: auto;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesIntro {
  margin: 0;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation .SliderButton {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--BrandBlack, #111111);
  background: transparent;
  border: 1px solid var(--BrandBorder, #dadad6);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation .SliderButton svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation .SliderButton:hover {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
  border-color: var(--BrandRed, #ec181b);
  transform: translateY(-3px);
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation .SliderButton:disabled {
  opacity: 0.35;
  pointer-events: none;
}
#OtherServicesSection .OtherServicesHeader .OtherServicesHeaderRight .OtherServicesNavigation .SliderButton:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 4px;
}
#OtherServicesSection .OtherServicesSlider {
  width: 100%;
  overflow: hidden;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack::-webkit-scrollbar {
  display: none;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide {
  min-width: 0;
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.03) 40%, rgba(17, 17, 17, 0.55) 100%);
  content: "";
  transition: background 0.45s ease;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage .OtherServiceNumber {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 30px;
  padding: 0 12px;
  color: var(--BrandWhite, #ffffff);
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage .OtherServiceIcon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--BrandRed);
  background: var(--BrandWhite);
  border: 2px solid var(--BrandRed);
  border-radius: 0 18px 0 18px;
  transition: color 0.35s ease, background-color 0.35s ease;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage .OtherServiceIcon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceImage .OtherServiceIcon:focus-visible {
  outline: 3px solid var(--BrandRed, #ec181b);
  outline-offset: -5px;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceName {
  min-height: 125px;
  display: flex;
  align-items: center;
  padding: 24px 75px 24px 28px;
  color: var(--BrandBlack);
  text-decoration: none;
  background: var(--BrandBackground);
  border: 2px solid var(--BrandRed);
  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceName div span {
  display: block;
  margin-bottom: 8px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceName div h3 {
  margin: 0;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.4px;
  transition: color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard .OtherServiceName:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: -5px;
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover::after {
  transform: scaleX(1);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover .OtherServiceImage::after {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 20%, rgba(17, 17, 17, 0.7) 100%);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover .OtherServiceImage img {
  transform: scale(1.06);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover .OtherServiceImage .OtherServiceIcon {
  background: var(--BrandRed, #ec181b);
  color: var(--BrandBackground);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover .OtherServiceImage .OtherServiceIcon svg {
  transform: rotate(45deg);
}
#OtherServicesSection .OtherServicesSlider .OtherServicesTrack .OtherServiceSlide .OtherServiceCard:hover .OtherServiceName div h3 {
  color: var(--BrandRed, #ec181b);
  transform: translateX(4px);
}
#OtherServicesSection .OtherServicesFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#OtherServicesSection .OtherServicesFooter > span {
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
#OtherServicesSection .OtherServicesFooter > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
#OtherServicesSection .OtherServicesFooter > a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease;
}
#OtherServicesSection .OtherServicesFooter > a:hover {
  color: var(--BrandRed, #ec181b);
}
#OtherServicesSection .OtherServicesFooter > a:hover svg {
  transform: translateX(5px);
}

#BlogDetailPage {
  position: relative;
  overflow: visible;
  background: var(--BrandWhite, #ffffff);
  padding-top: 0;
}
#BlogDetailPage .BlogReadingProgress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  pointer-events: none;
}
#BlogDetailPage .BlogReadingProgress span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--BrandRed, #ec181b);
  transition: width 0.08s linear;
}
#BlogDetailPage #BlogDetailHero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: var(--BrandBlack, #111111);
}
#BlogDetailPage #BlogDetailHero .BlogHeroMedia {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
#BlogDetailPage #BlogDetailHero .BlogHeroMedia img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#BlogDetailPage #BlogDetailHero .BlogHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.08) 35%, rgba(10, 10, 10, 0.35) 62%, rgba(10, 10, 10, 0.88) 100%);
}
#BlogDetailPage #BlogDetailHero .BlogHeroContainer {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb a:hover {
  color: var(--BrandWhite, #ffffff);
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb a:focus-visible {
  color: var(--BrandWhite, #ffffff);
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 4px;
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb > span:not(:last-child) {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb > span:last-child {
  color: var(--BrandWhite, #ffffff);
}
#BlogDetailPage #BlogDetailHero .BlogBreadcrumb > span svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#BlogDetailPage #BlogDetailHero .BlogHeroBody {
  width: 100%;
  margin-top: auto;
  padding: 80px 0 60px;
}
#BlogDetailPage #BlogDetailHero .BlogCategory {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}
#BlogDetailPage #BlogDetailHero .BlogCategory::before {
  width: 40px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.35s ease;
}
#BlogDetailPage #BlogDetailHero .BlogCategory:hover::before {
  width: 52px;
}
#BlogDetailPage #BlogDetailHero .BlogCategory:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 5px;
}
#BlogDetailPage #BlogDetailHero .BlogHeroBottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}
#BlogDetailPage #BlogDetailHero .BlogHeroBottom h1 {
  max-width: 1350px;
  margin: 0;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.4px;
  text-wrap: balance;
}
#BlogDetailPage #BlogDetailHero .BlogPublishedDate {
  min-width: 155px;
  padding: 0 0 7px 20px;
  border-left: 2px solid var(--BrandRed, #ec181b);
  flex: 0 0 auto;
}
#BlogDetailPage #BlogDetailHero .BlogPublishedDate span,
#BlogDetailPage #BlogDetailHero .BlogPublishedDate time {
  display: block;
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#BlogDetailPage #BlogDetailHero .BlogPublishedDate span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogDetailHero .BlogPublishedDate time {
  color: var(--BrandWhite, #ffffff);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
#BlogDetailPage #BlogDetailHero:hover .BlogHeroMedia img {
  transform: scale(1.015);
}
#BlogDetailPage #BlogArticleSection {
  padding: 100px 0 110px;
  background: var(--BrandWhite, #ffffff);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent {
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent > p {
  margin: 0 0 25px;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent > p:last-child {
  margin-bottom: 0;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent p a {
  color: var(--BrandRed, #ec181b);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent p a:hover {
  color: var(--BrandBlack, #111111);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent p strong {
  color: var(--BrandBlack, #111111);
  font-weight: 700;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h2,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h3,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h4,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h5,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h6 {
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-weight: 500;
  scroll-margin-top: 130px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h2 a,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h3 a,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h4 a,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h5 a,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h6 a {
  color: inherit;
  text-decoration: none;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h2 {
  position: relative;
  margin: 65px 0 24px;
  padding-top: 22px;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.7px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.35s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h2:hover::before {
  width: 65px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h3 {
  margin: 44px 0 20px;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.4px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h4 {
  margin: 38px 0 18px;
  font-size: 22px;
  line-height: 1.4;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h5 {
  margin: 32px 0 16px;
  font-size: 19px;
  line-height: 1.45;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent h6 {
  margin: 30px 0 15px;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent figure {
  width: 100%;
  margin: 45px 0 58px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent figure img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--BrandSoftBackground, #efefed);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent figure figcaption {
  margin-top: 12px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent > img {
  width: 100%;
  height: auto;
  display: block;
  margin: 45px 0 58px;
  background: var(--BrandSoftBackground, #efefed);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol {
  display: grid;
  gap: 14px;
  margin: 30px 0 48px;
  padding: 0;
  list-style: none;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li {
  position: relative;
  min-height: 25px;
  padding-left: 42px;
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li::before,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li ul,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li ol,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li ul,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li ol {
  margin: 15px 0 0;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li ul li,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li ol li,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li ul li,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li ol li {
  font-size: 14px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ul li::before {
  content: "✓";
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol {
  counter-reset: BlogOrderedList;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li {
  counter-increment: BlogOrderedList;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent ol li::before {
  content: counter(BlogOrderedList);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote {
  position: relative;
  margin: 65px 0;
  padding: 58px 60px 52px;
  overflow: hidden;
  border: 0;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote::before {
  position: absolute;
  top: 5px;
  right: 35px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  content: "“";
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 4px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.4s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent blockquote:hover::after {
  width: 100%;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table {
  width: 100%;
  margin: 45px 0 60px;
  border-collapse: collapse;
  background: var(--BrandWhite, #ffffff);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table th,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table td {
  padding: 17px 18px;
  border: 1px solid var(--BrandBorder, #dadad6);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table th {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
  font-weight: 700;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table td {
  color: var(--BrandText, #171717);
  font-weight: 400;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table tbody tr {
  transition: background-color 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table tbody tr:nth-child(even) {
  background: var(--BrandBackground, #f7f7f5);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent table tbody tr:hover {
  background: rgba(236, 24, 27, 0.05);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent hr {
  width: 100%;
  height: 1px;
  margin: 60px 0;
  border: 0;
  background: var(--BrandBorder, #dadad6);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent iframe,
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent video {
  width: 100%;
  max-width: 100%;
  margin: 45px 0;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .BlogArticleContent iframe {
  min-height: 480px;
  border: 0;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-top: 55px;
  padding: 28px 0;
  border-top: 1px solid var(--BrandBorder, #dadad6);
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleTags > span,
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > span {
  display: block;
  margin-bottom: 12px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleTags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleTags > div a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--BrandText, #171717);
  border: 1px solid var(--BrandBorder, #dadad6);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleTags > div a:hover {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
  border-color: var(--BrandRed, #ec181b);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleTags > div a:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 3px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare {
  text-align: right;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div a,
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--BrandBlack, #111111);
  background: transparent;
  border: 1px solid var(--BrandBorder, #dadad6);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div a svg,
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div a:hover,
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div button:hover {
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandRed, #ec181b);
  border-color: var(--BrandRed, #ec181b);
  transform: translateY(-2px);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div a:focus-visible,
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div button:focus-visible {
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: 3px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div .CopyArticleLink {
  width: auto;
  gap: 7px;
  padding: 0 12px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleFooter .ArticleShare > div .CopyArticleLink span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleAuthorBox {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-top: 45px;
  padding: 35px;
  background: var(--BrandBackground, #f7f7f5);
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleAuthorBox .AuthorBoxAvatar {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
  border-radius: 50%;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleAuthorBox .AuthorBoxContent > span {
  display: block;
  margin-bottom: 7px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleAuthorBox .AuthorBoxContent h3 {
  margin: 0 0 10px;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
}
#BlogDetailPage #BlogArticleSection .BlogArticle .ArticleAuthorBox .AuthorBoxContent p {
  max-width: 570px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar {
  position: sticky;
  top: 120px;
  max-width: 380px;
  margin-left: auto;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents,
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService,
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta {
  padding: 32px;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents {
  border: 1px solid var(--BrandBorder, #dadad6);
  background: var(--BrandWhite, #ffffff);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .SidebarLabel {
  display: block;
  margin-bottom: 22px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents {
  display: grid;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents:empty {
  display: none;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a {
  position: relative;
  padding: 13px 0 13px 18px;
  color: var(--BrandMuted, #696969);
  border-top: 1px solid var(--BrandBorder, #dadad6);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--BrandBorder, #dadad6);
  content: "";
  transform: rotate(0);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a:hover, #BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a.IsActive {
  padding-left: 23px;
  color: var(--BrandBlack, #111111);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a:hover::before, #BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a.IsActive::before {
  background: var(--BrandRed, #ec181b);
  transform: rotate(45deg);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarContents .AutomaticTableOfContents a:focus-visible {
  color: var(--BrandRed, #ec181b);
  outline: 2px solid var(--BrandRed, #ec181b);
  outline-offset: -2px;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService {
  margin-top: 20px;
  background: var(--BrandBackground, #f7f7f5);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService > span {
  display: block;
  margin-bottom: 16px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService h3 {
  margin: 0 0 14px;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService p {
  margin: 0 0 24px;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService a:hover {
  gap: 14px;
  color: var(--BrandRed, #ec181b);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarService a:hover svg {
  transform: rotate(45deg);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75px;
  height: 4px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.4s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta > span {
  display: block;
  margin-bottom: 18px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta h3 {
  margin: 0 0 30px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--BrandWhite, #ffffff);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta a svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta a:hover {
  gap: 18px;
  color: var(--BrandRed, #ec181b);
}
#BlogDetailPage #BlogArticleSection .BlogSidebar .SidebarCta:hover::after {
  width: 100%;
}
#BlogDetailPage #RelatedArticles {
  padding: 105px 0 81px;
  background: var(--BrandBackground, #f7f7f5);
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader {
  margin-bottom: 55px;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .SectionTitle {
  max-width: 820px;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .SectionTitle .SubTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .SectionTitle .SubTitle::before {
  width: 38px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .SectionTitle .SectionHeading {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.3px;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .ViewAllArticles {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .ViewAllArticles svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#BlogDetailPage #RelatedArticles .RelatedArticlesHeader .ViewAllArticles:hover {
  gap: 17px;
  color: var(--BrandRed, #ec181b);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard {
  height: 100%;
  overflow: hidden;
  background: var(--BrandWhite, #ffffff);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleImage {
  position: relative;
  height: 300px;
  display: block;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleImage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.14);
  opacity: 0;
  content: "";
  transition: opacity 0.4s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleImage img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleImage .RelatedArticleIcon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--BrandWhite, #ffffff);
  background: var(--BrandBlack, #111111);
  transition: background-color 0.3s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleImage .RelatedArticleIcon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent {
  padding: 28px 28px 32px;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent .RelatedArticleMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent .RelatedArticleMeta span {
  color: var(--BrandRed, #ec181b);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent .RelatedArticleMeta time {
  color: var(--BrandMuted, #696969);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent h3 {
  margin: 0 0 14px;
  font-family: var(--HeadingFont, "Aniko", sans-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent h3 a {
  color: var(--BrandBlack, #111111);
  text-decoration: none;
  transition: color 0.3s ease;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard .RelatedArticleContent p {
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.08);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover .RelatedArticleImage::after {
  opacity: 1;
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover .RelatedArticleImage img {
  transform: scale(1.05);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover .RelatedArticleImage .RelatedArticleIcon {
  background: var(--BrandRed, #ec181b);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover .RelatedArticleImage .RelatedArticleIcon svg {
  transform: rotate(45deg);
}
#BlogDetailPage #RelatedArticles .RelatedArticleCard:hover .RelatedArticleContent h3 a {
  color: var(--BrandRed, #ec181b);
}

#ProjectShowcase {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}
#ProjectShowcase .ProjectShowcaseHeader {
  margin-bottom: 70px;
}
#ProjectShowcase .SectionTitle {
  max-width: 820px;
}
#ProjectShowcase .SectionHeading {
  max-width: 760px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Aniko"), sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1px;
}
#ProjectShowcase .SectionDescription {
  margin: 0;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 17px;
  line-height: 1.75;
}
#ProjectShowcase .ProjectList {
  border-top: 1px solid var(--BrandBorder);
}
#ProjectShowcase .ProjectItem {
  padding: 46px 0;
  border-bottom: 1px solid var(--BrandBorder);
}
#ProjectShowcase .ProjectItem:nth-child(even) .ProjectRow {
  flex-direction: row-reverse;
}
#ProjectShowcase .ProjectItem:nth-child(even) .ProjectContent {
  padding-right: 90px;
  padding-left: 30px;
}
#ProjectShowcase .ProjectImage {
  position: relative;
  display: block;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  background: var(--BrandSoftBackground);
}
#ProjectShowcase .ProjectImage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 55%, rgba(17, 17, 17, 0.42) 100%);
  pointer-events: none;
}
#ProjectShowcase .ProjectImage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.65s ease;
}
#ProjectShowcase .ProjectImage:hover img {
  transform: scale(1.035);
}
#ProjectShowcase .ProjectImage:focus-visible {
  outline: 3px solid var(--BrandRed);
  outline-offset: 4px;
}
#ProjectShowcase .ProjectNumber,
#ProjectShowcase .ProjectStatus {
  position: absolute;
  z-index: 2;
  font-family: var(--BodyFont);
}
#ProjectShowcase .ProjectNumber {
  top: 22px;
  left: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--BrandWhite);
  background: var(--BrandRed);
  font-size: 14px;
  font-weight: 700;
}
#ProjectShowcase .ProjectStatus {
  right: 22px;
  bottom: 22px;
  padding: 10px 15px;
  color: var(--BrandBlack);
  background: var(--BrandWhite);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#ProjectShowcase .ProjectContent {
  display: flex;
  min-height: 100%;
  padding: 42px 30px 42px 90px;
  flex-direction: column;
  justify-content: center;
}
#ProjectShowcase .ProjectContent .ProjectCategory {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--BrandRed);
  font-family: var(--BodyFont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
#ProjectShowcase .ProjectContent .ProjectCategory::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}
#ProjectShowcase .ProjectContent h3 {
  max-width: 590px;
  margin: 0 0 22px;
  color: var(--BrandBlack);
  font-family: var(--HeadingFont);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
}
#ProjectShowcase .ProjectContent > p {
  max-width: 590px;
  margin: 0 0 34px;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 16px;
  line-height: 1.75;
}
#ProjectShowcase .ProjectDetails {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--BrandBorder);
}
#ProjectShowcase .ProjectDetails > div {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--BrandBorder);
}
#ProjectShowcase .ProjectDetails > div:nth-child(odd) {
  border-right: 1px solid var(--BrandBorder);
}
#ProjectShowcase .ProjectDetails > div:nth-child(even) {
  padding-left: 24px;
}
#ProjectShowcase .ProjectDetails dt {
  margin-bottom: 7px;
  color: var(--BrandMuted);
  font-family: var(--BodyFont);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#ProjectShowcase .ProjectDetails dd {
  margin: 0;
  color: var(--BrandText);
  font-family: var(--BodyFont);
  font-size: 15px;
  font-weight: 600;
}
#ProjectShowcase .CommonButton {
  align-self: flex-start;
}

#ContactSection .ContactInfoItem a,
#ContactSection .ContactInfoItem p {
  color: var(--BrandBlack);
}

#ContactSection .BusinessHoursRow span {
  color: var(--BrandBlack);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: lowercase;
}

h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter {
  text-transform: uppercase;
}

p {
  font-size: 18px !important;
}

.SectionHeading,
.SectionTitle h2 {
  font-size: 72px;
}

.owl-nav.disabled {
  display: none;
}

#OtherServicesSection .OtherServicesSlider {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  cursor: grab;
}
#OtherServicesSection .OtherServicesSlider:active {
  cursor: grabbing;
}
#OtherServicesSection .OtherServicesTrack {
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
#OtherServicesSection .OtherServiceSlide {
  flex-shrink: 0;
}

/* =====================================================
   404 PAGE
===================================================== */
#Error404Page {
  background: var(--BrandBackground, #f7f7f5);
}

#Error404Section {
  position: relative;
  min-height: calc(100svh - 112px);
  overflow: hidden;
  background: radial-gradient(circle at 78% 36%, rgba(236, 24, 27, 0.07) 0%, rgba(236, 24, 27, 0) 30%), var(--BrandBackground, #f7f7f5);
}
#Error404Section .container {
  position: relative;
  z-index: 2;
}
#Error404Section .Error404Grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
}
#Error404Section .Error404Layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 112px);
  padding: 48px 0 38px;
}
#Error404Section {
  /* ==========================================
     TOP
  ========================================== */
}
#Error404Section .Error404Top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#Error404Section .Error404Dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
  box-shadow: 0 0 0 5px rgba(236, 24, 27, 0.1);
}
#Error404Section {
  /* ==========================================
     MAIN
  ========================================== */
}
#Error404Section .Error404Content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 90px;
  padding: 55px 0 65px;
}
#Error404Section .Error404Number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Manrope", sans-serif);
  font-size: clamp(190px, 22vw, 405px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#Error404Section .Error404Number span {
  display: inline-block;
}
#Error404Section .Error404Zero {
  color: var(--BrandRed, #ec181b);
  font-weight: 700;
  transform: translateY(-0.015em);
}
#Error404Section .Error404Text {
  position: relative;
  max-width: 650px;
  padding-left: 46px;
  border-left: 1px solid var(--BrandBorder, #dadad6);
}
#Error404Section .Error404Text::before {
  position: absolute;
  top: 0;
  left: -2px;
  width: 3px;
  height: 78px;
  content: "";
  background: var(--BrandRed, #ec181b);
}
#Error404Section .Error404Text .SubTitle {
  margin-bottom: 20px;
}
#Error404Section .Error404Text h1 {
  max-width: 620px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Manrope", sans-serif);
  font-size: clamp(48px, 4vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2.4px;
}
#Error404Section .Error404Text p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}
#Error404Section .Error404Actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}
#Error404Section .Error404Actions .PrimaryBtn {
  margin: 0;
}
#Error404Section .Error404SecondaryButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--BrandBlack, #111111);
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}
#Error404Section .Error404SecondaryButton svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#Error404Section .Error404SecondaryButton:hover {
  color: var(--BrandRed, #ec181b);
  border-color: var(--BrandRed, #ec181b);
}
#Error404Section .Error404SecondaryButton:hover svg {
  transform: translateX(5px);
}
#Error404Section {
  /* ==========================================
     BOTTOM
  ========================================== */
}
#Error404Section .Error404Footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#Error404Section .Error404Footer p {
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  line-height: 1.5;
}
#Error404Section .Error404Footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#Error404Section .Error404Footer a span {
  color: var(--BrandRed, #ec181b);
  transition: transform 0.3s ease;
}
#Error404Section .Error404Footer a:hover {
  color: var(--BrandRed, #ec181b);
}
#Error404Section .Error404Footer a:hover span {
  transform: translate(3px, -3px);
}

/* =====================================================
   404 - TABLET
===================================================== */
@media (max-width: 991px) {
  #Error404Section {
    min-height: auto;
  }
  #Error404Section .Error404Layout {
    min-height: auto;
    padding: 42px 0;
  }
  #Error404Section .Error404Content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 0;
  }
  #Error404Section .Error404Number {
    justify-content: center;
    font-size: clamp(170px, 38vw, 330px);
  }
  #Error404Section .Error404Text {
    max-width: 720px;
    padding-left: 32px;
  }
  #Error404Section .Error404Text h1 {
    font-size: 54px;
  }
}
/* =====================================================
   404 - MOBILE
===================================================== */
@media (max-width: 767px) {
  #Error404Section .Error404Grid {
    background-size: 52px 52px;
  }
  #Error404Section .Error404Layout {
    padding: 30px 0;
  }
  #Error404Section .Error404Top {
    font-size: 9px;
    letter-spacing: 1px;
  }
  #Error404Section .Error404Content {
    gap: 34px;
    padding: 48px 0 55px;
  }
  #Error404Section .Error404Number {
    justify-content: flex-start;
    font-size: clamp(120px, 36vw, 185px);
    letter-spacing: -0.08em;
  }
  #Error404Section .Error404Text {
    padding-left: 22px;
  }
  #Error404Section .Error404Text::before {
    height: 58px;
  }
  #Error404Section .Error404Text .SubTitle {
    margin-bottom: 16px;
  }
  #Error404Section .Error404Text h1 {
    font-size: 39px;
    line-height: 1.06;
    letter-spacing: -1.4px;
  }
  #Error404Section .Error404Text p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }
  #Error404Section .Error404Actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }
  #Error404Section .Error404Footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
/* =====================================================
   DEFAULT / LEGAL PAGE
===================================================== */
#DefaultPage {
  background: var(--BrandBackground, #f7f7f5);
}

/* =====================================================
   HERO
===================================================== */
#DefaultPageHero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  background: #111111;
}
#DefaultPageHero .container {
  position: relative;
  z-index: 3;
}
#DefaultPageHero .DefaultPageHeroImage {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#DefaultPageHero .DefaultPageHeroImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#DefaultPageHero .DefaultPageHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.3) 100%);
}
#DefaultPageHero .DefaultPageHeroInner {
  position: relative;
  max-width: 100%;
}
#DefaultPageHero .DefaultPageMeta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#DefaultPageHero .DefaultPageMetaDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--BrandRed, #ec181b);
  box-shadow: 0 0 0 5px rgba(236, 24, 27, 0.16);
}
#DefaultPageHero .DefaultPageHeroContent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 80px;
}
#DefaultPageHero .DefaultPageHeroContent .SubTitle {
  grid-column: 1/-1;
  margin-bottom: -30px;
  color: var(--BrandRed, #ec181b);
}
#DefaultPageHero .DefaultPageHeroContent h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-family: var(--HeadingFont, "Manrope", sans-serif);
  font-size: clamp(56px, 6vw, 108px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4px;
}
#DefaultPageHero .DefaultPageUpdated {
  min-width: 210px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
#DefaultPageHero .DefaultPageUpdated span,
#DefaultPageHero .DefaultPageUpdated time {
  display: block;
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#DefaultPageHero .DefaultPageUpdated span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
#DefaultPageHero .DefaultPageUpdated time {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

/* =====================================================
   CONTENT
===================================================== */
#DefaultContentSection {
  position: relative;
  padding: 90px 0 120px;
  background: var(--BrandWhite, #ffffff);
}
#DefaultContentSection .DefaultSidebar {
  position: relative;
  height: 100%;
}
#DefaultContentSection .DefaultSidebarInner {
  position: sticky;
  top: 125px;
  padding-right: 45px;
}
#DefaultContentSection .DefaultSidebarLabel {
  display: block;
  margin-bottom: 22px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#DefaultContentSection .DefaultTableOfContents {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#DefaultContentSection .DefaultTableOfContents a {
  position: relative;
  display: block;
  padding: 15px 0 15px 18px;
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
#DefaultContentSection .DefaultTableOfContents a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--BrandBorder, #dadad6);
  transform: translateY(-50%) rotate(45deg);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#DefaultContentSection .DefaultTableOfContents a:hover, #DefaultContentSection .DefaultTableOfContents a.is-active {
  padding-left: 24px;
  color: var(--BrandBlack, #111111);
}
#DefaultContentSection .DefaultTableOfContents a:hover::before, #DefaultContentSection .DefaultTableOfContents a.is-active::before {
  background: var(--BrandRed, #ec181b);
  transform: translateY(-50%) rotate(45deg) scale(1.15);
}
#DefaultContentSection .DefaultTableOfContents a.is-active {
  color: var(--BrandRed, #ec181b);
}
#DefaultContentSection .DefaultSidebarHelp {
  margin-top: 36px;
  padding: 26px;
  background: var(--BrandSoftBackground, #efefed);
  border-left: 3px solid var(--BrandRed, #ec181b);
}
#DefaultContentSection .DefaultSidebarHelp > span {
  display: block;
  margin-bottom: 10px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
#DefaultContentSection .DefaultSidebarHelp p {
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 13px;
  line-height: 1.65;
}
#DefaultContentSection .DefaultSidebarHelp a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
}
#DefaultContentSection .DefaultSidebarHelp a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
#DefaultContentSection .DefaultSidebarHelp a:hover {
  color: var(--BrandRed, #ec181b);
}
#DefaultContentSection .DefaultSidebarHelp a:hover svg {
  transform: translateX(4px);
}
#DefaultContentSection .DefaultArticle {
  max-width: 980px;
  padding-left: 55px;
  border-left: 1px solid var(--BrandBorder, #dadad6);
}
#DefaultContentSection .DefaultArticleContent {
  color: var(--BrandText, #171717);
  font-family: var(--BodyFont, "Manrope", sans-serif);
}
#DefaultContentSection .DefaultArticleContent > *:first-child {
  margin-top: 0;
}
#DefaultContentSection .DefaultArticleContent h2,
#DefaultContentSection .DefaultArticleContent h3,
#DefaultContentSection .DefaultArticleContent h4 {
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Manrope", sans-serif);
}
#DefaultContentSection .DefaultArticleContent h2 {
  position: relative;
  margin: 70px 0 24px;
  padding-top: 22px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  scroll-margin-top: 130px;
}
#DefaultContentSection .DefaultArticleContent h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  content: "";
  background: var(--BrandRed, #ec181b);
}
#DefaultContentSection .DefaultArticleContent h3 {
  margin: 42px 0 18px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}
#DefaultContentSection .DefaultArticleContent h4 {
  margin: 30px 0 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
#DefaultContentSection .DefaultArticleContent p {
  margin: 0 0 22px;
  color: var(--BrandMuted, #696969);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
}
#DefaultContentSection .DefaultArticleContent p strong {
  color: var(--BrandBlack, #111111);
  font-weight: 700;
}
#DefaultContentSection .DefaultArticleContent a {
  color: var(--BrandRed, #ec181b);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#DefaultContentSection .DefaultArticleContent ul,
#DefaultContentSection .DefaultArticleContent ol {
  margin: 0 0 28px;
  padding-left: 26px;
}
#DefaultContentSection .DefaultArticleContent ul li,
#DefaultContentSection .DefaultArticleContent ol li {
  margin-bottom: 11px;
  padding-left: 6px;
  color: var(--BrandMuted, #696969);
  font-size: 16px;
  line-height: 1.75;
}
#DefaultContentSection .DefaultArticleContent ul li::marker,
#DefaultContentSection .DefaultArticleContent ol li::marker {
  color: var(--BrandRed, #ec181b);
  font-weight: 700;
}
#DefaultContentSection .DefaultArticleContent blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--BrandRed, #ec181b);
  background: var(--BrandSoftBackground, #efefed);
}
#DefaultContentSection .DefaultArticleContent blockquote p {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-size: 18px;
  font-weight: 600;
}
#DefaultContentSection .DefaultArticleContent table {
  width: 100%;
  margin: 35px 0;
  border-collapse: collapse;
  border: 1px solid var(--BrandBorder, #dadad6);
  background: var(--BrandWhite, #ffffff);
}
#DefaultContentSection .DefaultArticleContent table th,
#DefaultContentSection .DefaultArticleContent table td {
  padding: 17px 18px;
  border-right: 1px solid var(--BrandBorder, #dadad6);
  border-bottom: 1px solid var(--BrandBorder, #dadad6);
  text-align: left;
  vertical-align: top;
}
#DefaultContentSection .DefaultArticleContent table th {
  background: var(--BrandSoftBackground, #efefed);
  color: var(--BrandBlack, #111111);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
#DefaultContentSection .DefaultArticleContent table td {
  color: var(--BrandMuted, #696969);
  font-size: 14px;
  line-height: 1.6;
}
#DefaultContentSection .DefaultArticleContent table tr:last-child td {
  border-bottom: 0;
}
#DefaultContentSection .DefaultArticleContent table th:last-child,
#DefaultContentSection .DefaultArticleContent table td:last-child {
  border-right: 0;
}
#DefaultContentSection .DefaultArticleContent hr {
  margin: 50px 0;
  border: 0;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#DefaultContentSection .DefaultArticleFooter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-top: 75px;
  padding-top: 30px;
  border-top: 1px solid var(--BrandBorder, #dadad6);
}
#DefaultContentSection .DefaultArticleFooter > div {
  max-width: 520px;
}
#DefaultContentSection .DefaultArticleFooter > div span {
  display: block;
  margin-bottom: 7px;
  color: var(--BrandRed, #ec181b);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
#DefaultContentSection .DefaultArticleFooter > div p {
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 14px;
  line-height: 1.6;
}
#DefaultContentSection .DefaultArticleFooter > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#DefaultContentSection .DefaultArticleFooter > a span {
  color: var(--BrandRed, #ec181b);
  transition: transform 0.3s ease;
}
#DefaultContentSection .DefaultArticleFooter > a:hover {
  color: var(--BrandRed, #ec181b);
}
#DefaultContentSection .DefaultArticleFooter > a:hover span {
  transform: translate(3px, -3px);
}

/* =====================================================
   DEFAULT PAGE - TABLET
===================================================== */
@media (max-width: 991px) {
  #DefaultPageHero {
    min-height: 480px;
    padding: 150px 0 80px;
  }
  #DefaultPageHero .DefaultPageMeta {
    margin-bottom: 45px;
  }
  #DefaultPageHero .DefaultPageHeroContent {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #DefaultPageHero .DefaultPageHeroContent .SubTitle {
    margin-bottom: -8px;
  }
  #DefaultPageHero .DefaultPageHeroContent h1 {
    font-size: 68px;
  }
  #DefaultPageHero .DefaultPageUpdated {
    width: -moz-max-content;
    width: max-content;
    min-width: 200px;
  }
  #DefaultContentSection {
    padding: 70px 0 100px;
  }
  #DefaultContentSection .DefaultSidebarInner {
    position: static;
    padding-right: 0;
    margin-bottom: 45px;
  }
  #DefaultContentSection .DefaultTableOfContents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  #DefaultContentSection .DefaultSidebarHelp {
    max-width: 520px;
  }
  #DefaultContentSection .DefaultArticle {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }
}
/* =====================================================
   DEFAULT PAGE - MOBILE
===================================================== */
@media (max-width: 767px) {
  #DefaultPageHero {
    min-height: 400px;
    padding: 125px 0 60px;
  }
  #DefaultPageHero .DefaultPageMeta {
    margin-bottom: 32px;
    font-size: 9px;
    letter-spacing: 1px;
  }
  #DefaultPageHero .DefaultPageHeroContent {
    gap: 22px;
  }
  #DefaultPageHero .DefaultPageHeroContent .SubTitle {
    margin-bottom: -4px;
  }
  #DefaultPageHero .DefaultPageHeroContent h1 {
    font-size: 44px;
    line-height: 1;
    letter-spacing: -2px;
  }
  #DefaultPageHero .DefaultPageUpdated {
    min-width: 170px;
    padding: 14px 0;
  }
  #DefaultContentSection {
    padding: 55px 0 80px;
  }
  #DefaultContentSection .DefaultTableOfContents {
    grid-template-columns: 1fr;
  }
  #DefaultContentSection .DefaultSidebarHelp {
    padding: 22px;
  }
  #DefaultContentSection .DefaultArticleContent h2 {
    margin-top: 52px;
    font-size: 30px;
  }
  #DefaultContentSection .DefaultArticleContent h3 {
    margin-top: 34px;
    font-size: 23px;
  }
  #DefaultContentSection .DefaultArticleContent p {
    font-size: 16px;
    line-height: 1.8;
  }
  #DefaultContentSection .DefaultArticleContent ul,
  #DefaultContentSection .DefaultArticleContent ol {
    padding-left: 22px;
  }
  #DefaultContentSection .DefaultArticleContent ul li,
  #DefaultContentSection .DefaultArticleContent ol li {
    font-size: 15px;
  }
  #DefaultContentSection .DefaultArticleContent table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  #DefaultContentSection .DefaultArticleFooter {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 55px;
  }
}
/*=========================================
=            LEADERSHIP SECTION
=========================================*/
#LeadershipSection {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--BrandBackground, #f7f7f5);
  color: var(--BrandText, #171717);
  /*=========================================
  =            BACKGROUND
  =========================================*/
}
#LeadershipSection .LeadershipBackgroundGrid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
}
#LeadershipSection .container {
  position: relative;
  z-index: 2;
}
#LeadershipSection {
  /*=========================================
  =            HEADING
  =========================================*/
}
#LeadershipSection .LeadershipHeading {
  margin-bottom: 55px;
}
#LeadershipSection .LeadershipHeading h2 {
  max-width: 920px;
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Manrope", sans-serif);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -3.5px;
}
#LeadershipSection .LeadershipHeading h2 span {
  display: block;
  color: var(--BrandRed, #ec181b);
}
#LeadershipSection {
  /*=========================================
  =            TAGLINE
  =========================================*/
}
#LeadershipSection .LeadershipTagline {
  position: relative;
  max-width: 390px;
  margin: 0 0 5px auto;
  padding-top: 24px;
}
#LeadershipSection .LeadershipTagline::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--BrandRed, #ec181b);
  content: "";
}
#LeadershipSection .LeadershipTagline p {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}
#LeadershipSection {
  /*=========================================
  =            PEOPLE
  =========================================*/
}
#LeadershipSection .LeadershipPeople {
  position: relative;
}
#LeadershipSection {
  /*=========================================
  =            CARD
  =========================================*/
}
#LeadershipSection .LeadershipCard {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--BrandWhite, #ffffff);
  border: 1px solid var(--BrandBorder, #dadad6);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.3, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
#LeadershipSection .LeadershipCard:hover {
  border-color: rgba(236, 24, 27, 0.35);
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.1);
}
#LeadershipSection .LeadershipCard:hover .LeadershipImage img {
  transform: scale(1.045);
}
#LeadershipSection .LeadershipCard:hover .LeadershipName::before {
  width: 100%;
}
#LeadershipSection .LeadershipCard:hover .LeadershipName h3 {
  color: var(--BrandRed, #ec181b);
}
#LeadershipSection {
  /*=========================================
  =            IMAGE
  =========================================*/
}
#LeadershipSection .LeadershipImage {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--BrandSoftBackground, #efefed);
}
#LeadershipSection .LeadershipImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 55%, rgba(17, 17, 17, 0.08) 100%);
  content: "";
  pointer-events: none;
}
#LeadershipSection .LeadershipImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#LeadershipSection {
  /*=========================================
  =            NAME
  =========================================*/
}
#LeadershipSection .LeadershipName {
  position: relative;
  min-height: 105px;
  display: flex;
  align-items: center;
  padding: 25px 32px;
  overflow: hidden;
  background: var(--BrandWhite, #ffffff);
}
#LeadershipSection .LeadershipName::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: var(--BrandRed, #ec181b);
  content: "";
  transition: width 0.45s cubic-bezier(0.2, 0.75, 0.3, 1);
}
#LeadershipSection .LeadershipName h3 {
  margin: 0;
  color: var(--BrandBlack, #111111);
  font-family: var(--HeadingFont, "Manrope", sans-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: capitalize;
  transition: color 0.35s ease;
}
#LeadershipSection {
  /*=========================================
  =            INFORMATION
  =========================================*/
}
#LeadershipSection .LeadershipInformation {
  margin-top: 28px;
  padding: 45px 48px;
  background: var(--BrandWhite, #ffffff);
  border: 1px solid var(--BrandBorder, #dadad6);
}
#LeadershipSection {
  /*=========================================
  =            DESCRIPTION
  =========================================*/
}
#LeadershipSection .LeadershipDescription {
  padding: 0;
}
#LeadershipSection .LeadershipDescription p {
  max-width: 610px;
  margin: 0;
  color: var(--BrandMuted, #696969);
  font-family: var(--BodyFont, "Manrope", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}/*# sourceMappingURL=style.css.map */