/* DCC Homepage — WordPress / ACF ready
   Recreated from dcc-group.com. Cookie banner, portrait warning removed.

   Font: live site uses licensed Neue Haas Grotesk Display Pro.
   Drop those woff2 files into assets/fonts/ to use the real face.
   Inter Tight is the closest freely licensed stand-in. */

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Mediu.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Roman.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --font: "Neue Haas Grotesk Display Pro", "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --black: #000;
  --white: #fff;
  --muted: #efefef;
  --charcoal: #363e46;
  --pad-x: 120px;
  --pad-y: 100px;
  --header-pad: 30px;
  --container-w: 100%;
  --container-pad: 25px;
  --page-x: var(--container-pad);
}

@media (min-width: 768px) {
  :root {
    --container-w: 750px;
    --container-pad: 15px;
    --page-x: max(15px, calc((100% - var(--container-w)) / 2 + var(--container-pad)));
  }
}

@media (min-width: 992px) {
  :root {
    --container-w: 970px;
  }
}

@media (min-width: 1200px) {
  :root {
    --container-w: 1170px;
  }
}

@media (min-width: 2000px) {
  :root {
    --container-w: 1400px;
  }
}

.container {
  width: 100%;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container { width: 750px; }
}

@media (min-width: 992px) {
  .container { width: 970px; }
}

@media (min-width: 1200px) {
  .container { width: 1170px; }
}

@media (min-width: 2000px) {
  .container { width: 1400px; }
}

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

html,
body {
  height: 100%;
}

html {
  overflow: hidden;
}

body {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  white-space: nowrap; text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: var(--header-pad);
  pointer-events: none;
}

.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.search-btn,
.menu-toggle {
  pointer-events: auto;
}

.logo svg,
.search-btn svg {
  display: block;
}

.logo svg path,
.search-btn svg path {
  fill: var(--white);
  transition: fill 0.35s ease;
}

.search-btn {
  width: 56px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.8px solid var(--white);
  transition: border-color 0.35s ease;
}

.menu-toggle {
  position: fixed;
  left: 20px;
  top: 50%;
  z-index: 30;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.35s ease, width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}

.menu-toggle span {
  width: 32px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  width: 20px;
  top: -8px;
}

.menu-toggle span::after {
  width: 32px;
  top: 8px;
}

body.theme-light .logo svg path,
body.theme-light .search-btn svg path {
  fill: var(--black);
}

body.theme-light .search-btn {
  border-color: var(--black);
}

body.theme-light .menu-toggle span,
body.theme-light .menu-toggle span::before,
body.theme-light .menu-toggle span::after {
  background: var(--black);
}

body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  width: 32px;
  top: 0;
  transform: rotate(45deg);
  background: #9a9a9a;
}

body.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #9a9a9a;
}

body.menu-open .site-header,
body.menu-open .menu-toggle {
  z-index: 40;
}

body.menu-open .logo svg path,
body.menu-open .search-btn svg path {
  fill: var(--black);
}

body.menu-open .search-btn {
  border-color: var(--charcoal);
}

/* ========== FULLSCREEN MENU ========== */
.full-nav {
  --menu-w: min(480px, 25vw);
  --sub-w: min(380px, 20vw);
  position: fixed;
  inset: 0;
  z-index: 25;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.full-nav.is-open {
  pointer-events: auto;
}

.full-nav .nav-overlay {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.6s 0.2s;
}

.full-nav.is-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.full-nav .nav-wrap {
  position: relative;
  z-index: 2;
  width: var(--menu-w);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  clip-path: inset(0 100% 0 0);
  transition: 0.6s;
}

.full-nav.is-open .nav-wrap {
  clip-path: inset(0);
}

.main-menu {
  list-style: none;
  margin: 0;
}

.main-menu li {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.main-menu li:first-child { transition: 0.6s 0.3s; }
.main-menu li:nth-child(2) { transition: 0.6s 0.4s; }
.main-menu li:nth-child(3) { transition: 0.6s 0.5s; }
.main-menu li:nth-child(4) { transition: 0.6s 0.6s; }
.main-menu li:nth-child(5) { transition: 0.6s 0.7s; }
.main-menu li:nth-child(6) { transition: 0.6s 0.9s; }

.full-nav.is-open .main-menu li {
  opacity: 1;
  transform: translateY(0);
}

.main-menu a {
  display: block;
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  margin: 1.35rem 0;
  color: var(--black);
  opacity: 0.3;
  white-space: nowrap; text-decoration: none;
  transition: 0.6s;
}

.full-nav.is-open .main-menu a:hover,
.full-nav.is-open .main-menu li.is-active > a,
.full-nav.is-open .main-menu li.is-current > a {
  opacity: 1;
  color: var(--black);
}

.sub-menu-inline {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: var(--menu-w);
  z-index: 1;
  display: flex;
  align-items: center;
  width: var(--sub-w);
  height: 100vh;
  padding: 0 0 0 2.5rem;
  background: var(--muted);
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: 0.6s 0.3s;
}

.full-nav.has-submenu .sub-menu.is-active {
  pointer-events: auto;
  clip-path: inset(0);
  transition: 0.6s;
}

.sub-menu ul {
  list-style: none;
  width: auto;
  margin: 0;
}

.sub-menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.full-nav.has-submenu .sub-menu.is-active li {
  opacity: 1;
  transform: translateY(0);
}

.full-nav.has-submenu .sub-menu.is-active li:nth-child(1) { transition-delay: 0.15s; }
.full-nav.has-submenu .sub-menu.is-active li:nth-child(2) { transition-delay: 0.25s; }

.sub-menu a {
  position: relative;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 0.5rem 0;
  color: var(--black);
  opacity: 0.3;
  white-space: nowrap; text-decoration: none;
  transition: 0.6s;
}

.sub-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: 0.6s;
}

.sub-menu a:hover {
  opacity: 1;
  color: var(--black);
  white-space: nowrap; text-decoration: none;
}

.sub-menu a:hover::after {
  width: 100%;
}

@media (max-height: 780px) {
  .main-menu a {
    font-size: 2.375rem;
  }
}

@media (max-height: 750px) {
  .sub-menu a {
    font-size: 1.25rem;
    margin: 0.35rem 0;
  }
}

@media (max-height: 700px) {
  .main-menu a {
    font-size: 2rem;
    margin: 1.1rem 0;
  }

  .sub-menu a {
    font-size: 1.125rem;
    margin: 0.2rem 0;
  }
}

@media (max-height: 600px) {
  .main-menu a {
    font-size: 1.75rem;
    margin: 0.9rem 0;
  }
}

/* ========== HORIZONTAL TRACK ========== */
.home-track {
  display: flex;
  height: 100vh;
  width: max-content;
  will-change: transform;
}

.section {
  position: relative;
  flex: 0 0 auto;
  height: 100vh;
  z-index: 1;
}

/* ========== HERO ========== */
.section-hero {
  width: 100vw;
  background: #111;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  object-position: center;
}

.hero-images img.is-active {
  opacity: 1;
  transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1080px, calc(100% - 156px));
  margin: 0 auto;
  height: 100%;
}

.hero-title-wrap {
  position: relative;
  margin-bottom: 30px;
  padding-right: 0;
}

.hero-title {
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 48px;
}

.hero-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap; text-decoration: none;
}

.hero-ctas a::before,
.hero-ctas a::after {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  background: #e30613;
}

.hero-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.hero-arrows a {
  margin-left: 30px;
  display: inline-flex;
}

.hero-arrows svg path {
  fill: var(--white);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
}

.hero-count {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}

.hero-count .sep {
  margin: 0 2px;
}

/* ========== ABOUT ========== */
.section-about {
  width: 100vw;
  background: var(--white);
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.about-top h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}

.primary-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  margin-left: 19px;
  padding: 11px 8px;
  background: var(--charcoal);
}

.primary-btn span svg path {
  fill: var(--white);
}

.about-wrap {
  height: 100%;
  padding: 6.25rem 7.5rem;
}

.about-body {
  position: relative;
  padding-top: 6.5625rem;
  height: 80vh;
}

.about-heading {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 600px;
  z-index: 1;
}

.about-heading h2 {
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  white-space: pre-wrap;
}

.about-bottom {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
}

.about-year {
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.about-year h3 {
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 1.875rem;
}

.about-year p {
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  text-transform: uppercase;
}

.about-copy {
  overflow: hidden;
}

.about-copy.is-out h3,
.about-copy.is-out p {
  opacity: 0;
  transform: translateY(-24px);
}

.about-copy h3,
.about-copy p {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-arrows.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.about-slide {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 55vw;
  height: auto;
}

.about-photo {
  width: 50%;
  height: auto;
}

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

.about-info {
  width: 50%;
  padding: 0 0 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-arrows {
  display: flex;
  margin-bottom: 4.5rem;
}

.about-arrows a {
  margin-right: 1.875rem;
  display: inline-flex;
  transition: 0.6s;
  opacity: 1;
}

.about-arrows a:hover {
  opacity: 0.5;
}

.about-arrows svg path {
  fill: var(--black);
}

.about-copy h3 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 3rem;
  margin: 0 0 17px;
  padding-right: 30%;
  white-space: pre-wrap;
}

.about-copy p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
  margin: 0;
  padding-right: 8%;
  white-space: normal;
}

.about-copy p + p {
  margin-top: 1.25rem;
}

/* ========== IMAGE CAPTION ========== */
.section-image {
  width: 780px;
  background: #111;
  overflow: hidden;
}

.image-block {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 58.05%);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-block h3 {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
  z-index: 2;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

/* ========== PORTFOLIO ========== */
.section-portfolio {
  width: max-content;
  background: var(--white);
  display: flex;
}

.portfolio-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 440px;
  flex: 0 0 440px;
  height: 100%;
  padding: 6.25rem;
}

.portfolio-left h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 26px;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.portfolio-right {
  flex: 0 0 auto;
  width: auto;
  padding-right: 50px;
  overflow: visible;
}

.portfolio-track {
  display: flex;
  height: 100%;
}

.portfolio-item {
  flex: 0 0 640px;
  width: 640px;
  padding: 6.25rem 3.125rem;
  white-space: nowrap; text-decoration: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.portfolio-item .image {
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: transform 0.6s ease;
  transform: scale(1);
}

.portfolio-item:hover img {
  transform: scale(1.15);
}

.portfolio-item .info h3 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
  margin: 1.25rem 0 0.625rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-item .info p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 0;
}

@media (min-width: 2000px) {
  .portfolio-item {
    flex-basis: 750px;
    width: 750px;
  }
}

@media (max-height: 950px) {
  .portfolio-item {
    flex-basis: 620px;
    width: 620px;
  }

  .portfolio-item img {
    height: 68vh;
  }
}

@media (max-height: 900px) {
  .portfolio-item {
    flex-basis: 580px;
    width: 580px;
  }
}

@media (max-height: 800px) {
  .portfolio-item {
    flex-basis: 500px;
    width: 500px;
  }

  .portfolio-item img {
    height: 60vh;
  }

  .portfolio-item .info h3 {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}

@media (max-height: 750px) {
  .portfolio-item {
    flex-basis: 450px;
    width: 450px;
  }

  .portfolio-item .info h3 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0.9375rem 0 0.3125rem;
  }

  .portfolio-item .info p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* ========== EXPERTISE ========== */
.section-expertise {
  width: 1350px;
  background: var(--muted);
  display: flex;
  padding: 6.25rem 7.5rem;
}

.expertise-left {
  width: 40%;
  flex: 0 0 40%;
  padding-right: 7.5rem;
}

.expertise-left h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 26px;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.expertise-left h2 {
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 4.875rem;
  margin: 0 0 1.875rem;
}

.expertise-left p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin: 1rem 0;
}

.expertise-right {
  width: 60%;
  flex: 0 0 60%;
  padding-right: 50px;
  min-width: 0;
}

.expertise-list {
  width: 100%;
}

.expertise-list li:first-child a {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.expertise-list li:last-child a {
  border-bottom-color: transparent;
}

.expertise-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.875rem 0;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--black);
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap; text-decoration: none;
  transition: 0.6s;
}

.expertise-list a span {
  transition: none;
  height: 30px;
}

.expertise-list .add {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 30px;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: 0.6s;
}

.expertise-list .add path {
  stroke: #fff;
}

.expertise-list a:hover {
  background: var(--charcoal);
  color: #fff;
  padding: 1.875rem 1.25rem;
  white-space: nowrap; text-decoration: none;
}

.expertise-list a:hover .add {
  opacity: 1;
  transform: scale(1);
}

/* ========== FOOTER ========== */
.section-footer {
  width: 860px;
  background: var(--white);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 6.25rem 7.5rem 3.125rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.footer-brand .logo {
  padding-bottom: 5rem;
}

.footer-brand .logo svg path {
  fill: var(--black);
}

.section-footer:not(.inner-footer) .social {
  display: none;
}

.social {
  display: flex;
  list-style: none;
}

.social li {
  width: 20px;
  height: 20px;
  margin-left: 15px;
}

.social img {
  width: 100%;
  height: auto;
}

.footer-nav {
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
}

.footer-nav a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-transform: uppercase;
  transition: 0.6s;
  opacity: 1;
}

.footer-nav a:hover,
.footer-legal a:hover {
  opacity: 0.6;
  white-space: nowrap; text-decoration: none;
  color: var(--black);
}

.locations {
  width: 90%;
}

.locations h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin: 0;
}

.locations-row {
  display: flex;
  flex-wrap: wrap;
}

.locations .col {
  width: 50%;
  margin-top: 3.125rem;
}

.locations p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin: 0 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
}

.footer-bottom > p {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 15px 0;
  text-align: left;
}

.footer-bottom p,
.footer-legal a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-align: left;
}

.footer-legal {
  flex: 0 0 auto;
  margin-left: auto;
}

.footer-legal ul {
  display: flex;
  list-style: none;
  margin: 14px 0;
  justify-content: flex-start;
}

.footer-legal li {
  position: relative;
  padding-left: 30px;
}

.footer-legal li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 7px;
  width: 1px;
  height: 11px;
  background: var(--black);
}

.footer-legal li:first-child::before {
  background: transparent;
}

@media (min-width: 2000px) {
  .about-heading h2,
  .about-year h3 {
    font-size: 5.3125rem;
  }

  .about-photo img {
    height: 65vh;
  }

  .about-copy h3 {
    font-size: 2.875rem;
    line-height: 3.375rem;
  }

  .about-copy p {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }

  .section-image {
    width: 950px;
  }

  .image-block h3 {
    font-size: 1.25rem;
    left: 3.125rem;
    bottom: 3.125rem;
  }

  .section-expertise {
    width: 1500px;
  }

  .expertise-list a:hover {
    padding: 1.875rem 1.5625rem;
  }

  .section-footer {
    width: 1000px;
  }

  .footer-nav a,
  .locations h4,
  .locations p,
  .footer-bottom p,
  .footer-legal a {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 1650px) {
  .about-copy h3 {
    padding-right: 20%;
  }

  .about-copy p {
    padding-right: 20%;
  }
}

@media (max-width: 1500px) {
  .about-arrows {
    margin-bottom: 1.5625rem;
  }

  .about-copy h3 {
    padding-right: 15%;
  }

  .about-copy p {
    padding-right: 5%;
  }
}

@media (max-width: 1400px) {
  .about-heading {
    max-width: 400px;
  }

  .about-heading h2 {
    font-size: 3.75rem;
  }

  .about-copy h3 {
    padding-right: 10%;
  }
}

@media (max-height: 950px) {
  .about-body {
    padding-top: 4.6875rem;
  }

  .about-photo img {
    height: 65vh;
  }
}

@media (max-height: 880px) {
  .expertise-list a {
    padding: 1.5625rem 0;
  }

  .expertise-list a:hover {
    padding: 1.5625rem 1.25rem;
  }
}

@media (max-height: 800px) {
  .about-heading {
    max-width: 400px;
  }

  .about-copy h3 {
    padding-right: 0;
  }

  .section-image {
    width: 650px;
  }

  .expertise-list a {
    padding: 1.25rem 0;
  }

  .expertise-list a:hover {
    padding: 1.25rem 0.9375rem;
  }

  .footer-nav {
    padding-bottom: 2.1875rem;
    margin-bottom: 2.1875rem;
  }

  .footer-brand .logo {
    padding-bottom: 2.5rem;
  }

  .locations .col {
    margin-top: 0.9375rem;
  }
}

@media (max-height: 750px) {
  .about-body {
    padding-top: 0;
  }

  .about-copy h3 {
    font-size: 2.125rem;
    line-height: 2.625rem;
  }

  .about-copy p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .section-image {
    width: 550px;
  }

  .expertise-left h2 {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }

  .expertise-list .add svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-height: 700px) {
  .about-heading {
    max-width: 300px;
  }

  .about-heading h2 {
    font-size: 3.125rem;
  }

  .about-year h3 {
    font-size: 3.75rem;
    margin: 0 0 1.25rem;
  }

  .about-slide {
    width: 52vw;
  }

  .expertise-list a {
    font-size: 1.375rem;
    padding: 1rem 0;
  }

  .expertise-list a:hover {
    padding: 1rem 0.9375rem;
  }

  .footer-brand .logo {
    padding-bottom: 1.25rem;
  }

  .footer-nav {
    padding-bottom: 1.5625rem;
    margin-bottom: 1.5625rem;
  }

  .locations h4,
  .locations p,
  .footer-bottom p,
  .footer-legal a {
    font-size: 0.9375rem;
    line-height: 1.3125rem;
  }
}

@media (max-height: 650px) {
  .expertise-list a {
    font-size: 1.25rem;
    padding: 0.9375rem 0;
  }

  .expertise-list a:hover {
    padding: 0.9375rem;
  }
}

@media (max-height: 600px) {
  .expertise-list a {
    font-size: 1.125rem;
    padding: 0.625rem 0;
  }

  .expertise-list a:hover {
    padding: 0.625rem 0.9375rem;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  :root {
    --pad-x: 48px;
    --pad-y: 80px;
  }

  .full-nav .nav-wrap {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    padding: 120px 48px 40px 72px;
    clip-path: inset(0 0 100% 0);
  }

  .sub-menu {
    display: none !important;
  }

  .sub-menu-inline {
    display: none;
    margin: 0 0 8px;
  }

  .has-sub-nav.is-active .sub-menu-inline {
    display: block;
  }

  .sub-menu-inline a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 4px 0;
    opacity: 1;
  }

  html {
    overflow: auto;
  }

  .home-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .section,
  .section-hero,
  .section-about,
  .section-image,
  .section-portfolio,
  .section-expertise,
  .section-footer {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    width: calc(100% - 80px);
    padding: 140px 0 80px;
  }

  .hero-title-wrap {
    padding-right: 0;
  }

  .hero-arrows {
    position: static;
    transform: none;
    margin-top: 28px;
  }

  .about-heading {
    position: static;
    max-width: none;
    margin-bottom: 40px;
  }

  .about-bottom {
    display: block;
    height: auto;
  }

  .about-year {
    position: static;
    margin: 20px 0 40px;
  }

  .about-slide {
    width: 100%;
    flex-direction: column;
  }

  .about-photo,
  .about-info {
    width: 100%;
  }

  .about-photo {
    height: 360px;
  }

  .about-info {
    padding: 28px 0 0;
  }

  .section-image {
    min-height: 70vh;
  }

  .section-portfolio {
    display: block;
  }

  .portfolio-left {
    width: 100%;
    flex: none;
    flex-direction: row;
    align-items: center;
    padding: 80px var(--pad-x) 20px;
  }

  .portfolio-right {
    padding: 0 var(--pad-x) 80px;
    overflow-x: auto;
  }

  .portfolio-item {
    flex-basis: 450px;
    width: 450px;
    padding: 0 30px;
  }

  .portfolio-item:first-child {
    border-left-color: transparent;
  }

  .portfolio-item img {
    height: 500px;
  }

  .section-expertise {
    display: block;
    min-height: auto;
  }

  .expertise-left {
    width: 100%;
    flex: none;
    padding: 0 0 40px;
  }

  .section-footer {
    min-height: auto;
  }

  .footer-wrap {
    padding: 80px var(--pad-x) 40px;
  }

  .locations .col {
    width: 100%;
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal li:first-child {
    padding-left: 0;
  }

  .footer-brand .logo {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --pad-x: 24px;
    --header-pad: 20px;
  }

  .full-nav .nav-wrap {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    padding: 120px 24px 40px 72px;
  }

  .sub-menu {
    display: none;
  }

  .sub-menu-inline {
    display: none;
    margin: 0 0 8px;
  }

  .has-sub-nav.is-active .sub-menu-inline {
    display: block;
  }

  .sub-menu-inline a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 4px 0;
    opacity: 1;
  }

  .main-menu a {
    font-size: 32px;
    line-height: 36px;
    margin: 18px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .about-heading h2 {
    font-size: 34px;
  }

  .expertise-left h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .portfolio-item {
    flex-basis: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    border-left: 0;
  }

  .portfolio-item img {
    height: 55vh;
  }
}


/* expertise accordion */
.expertise-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.expertise-list > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.expertise-list > li:last-child {
  border-bottom-color: transparent;
}
.expertise-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.875rem 0;
  font-family: inherit;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--black);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.45s ease, color 0.45s ease, padding 0.45s ease;
}
.expertise-toggle:hover,
.expertise-list > li.is-open .expertise-toggle {
  background: var(--charcoal);
  color: #fff;
  padding: 1.875rem 1.25rem;
}
.expertise-title {
  display: block;
  padding-right: 1rem;
}
.expertise-list .add {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 30px;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.expertise-list .add path {
  stroke: #fff;
}
.expertise-toggle:hover .add,
.expertise-list > li.is-open .add {
  opacity: 1;
  transform: scale(1);
}
.expertise-list > li.is-open .add {
  transform: scale(1) rotate(45deg);
}
.expertise-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: var(--charcoal);
  color: #fff;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.expertise-list > li.is-open .expertise-panel {
  opacity: 1;
}
.expertise-panel[hidden] {
  display: block !important;
  max-height: 0 !important;
  opacity: 0 !important;
  visibility: hidden;
}
.expertise-panel p {
  margin: 0;
  padding: 0 1.25rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

/* ========== WHY FAST ========== */
.section-label {
  position: relative;
  display: inline-block;
  margin: 0 0 1.25rem;
  padding-left: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: inherit;
}



.section-why-fast {
  width: 1400px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 6.25rem 7.5rem;
}

.why-fast-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(420px, 0.62fr);
  gap: 0 100px;
  width: 100%;
  align-items: start;
}

.why-fast-left h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.125rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
}

.why-fast-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #8b8b8b;
}

.why-fast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid #8b8b8b;
  cursor: default;
  transition: color 0.3s ease;
}

.why-fast-row h3 {
  flex: 0 0 37%;
  margin: 0;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
  transition: color 0.3s ease;
}

.why-fast-row p {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #8b8b8b;
  transition: color 0.3s ease;
}

.why-fast-row:hover h3,
.why-fast-row:hover p {
  color: var(--black);
}

/* ========== PROJECT PROCESS ========== */
.section-process {
  width: 100vw;
  color: var(--white);
  display: flex;
  align-items: stretch;
  padding: 6.25rem 7.5rem;
  background-color: #0a0a0a;
  background-image: url("https://www.fastcc.com/wp-content/uploads/2026/08/Project-Process-back-image.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: visible;
}

.process-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  min-height: 0;
}

.process-heading {
  flex: 0 0 auto;
  margin: 0;
}

.section-process .section-label {
  color: var(--white);
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.125rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  overflow: visible;
}

.process-step {
  position: relative;
  min-width: 0;
  padding-top: 200px;
  overflow: visible;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 136%;
  height: 190px;
  background-image: url("https://www.fastcc.com/wp-content/uploads/2026/08/Ellipse-1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 100%;
  pointer-events: none;
}

.process-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: 1.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.process-step h3 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #8b8b8b;
  transition: color 0.3s ease;
}

.process-step h3 b {
  font-weight: 500;
  color: inherit;
  transition: color 0.3s ease;
}

.process-step p {
  margin: 0;
  max-width: 240px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #8b8b8b;
}

.process-step:hover .process-dot {
  background-color: #d3122a;
  border-color: #d3122a;
}

.process-step:hover h3 {
  color: #fff;
}

.process-step:hover h3 b {
  color: #d3122a;
}

@media (min-width: 1600px) {
  .process-step {
    padding-top: 240px;
  }

  .process-step:not(:last-child)::after {
    top: 0;
    left: 5px;
    width: 128%;
    height: 230px;
  }
}


/* why-fast / process responsive hooks */
@media (min-width: 2000px) {
  .section-why-fast {
    width: 1550px;
  }
}

@media (max-width: 1100px) {
  .section-why-fast,
  .section-process {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .section-why-fast {
    display: block;
    min-height: auto;
    padding: 80px var(--pad-x);
  }

  .why-fast-inner {
    display: block;
  }

  .why-fast-left {
    margin-bottom: 40px;
  }

  .why-fast-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .why-fast-row h3 {
    flex: none;
  }

  .section-process {
    display: block;
    min-height: auto;
    padding: 80px var(--pad-x) 100px;
    align-items: stretch;
  }

  .process-inner {
    height: auto;
  }

  .process-heading {
    margin-bottom: 2.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
    margin-top: 0;
    padding-top: 0;
  }

  .process-step {
    padding-top: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .why-fast-left h2,
  .process-heading h2 {
    font-size: 1.75rem;
  }
}


/* process-arc-flow-fix-v129 */
.section-process {
  align-items: stretch;
  padding: 6.25rem 7.5rem;
}

.process-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  max-width: 1400px;
  width: 100%;
  padding-right: 0;
}

.process-heading {
  flex: 0 0 auto;
  margin: 0;
}

.process-steps {
  margin-top: auto;
  padding-top: 2rem;
}

.process-step {
  padding-top: 0 !important;
}

.process-step:not(:last-child)::after {
  content: none !important;
  display: none !important;
}

.process-arc-space {
  position: relative;
  height: 200px;
  margin-bottom: 1.1rem;
}

.process-arc {
  position: absolute;
  top: 0;
  left: 6px;
  width: 111%;
  height: 186px;
  background-image: url("https://www.fastcc.com/wp-content/uploads/2026/08/Ellipse-1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 100%;
  pointer-events: none;
}

.process-arc-space .process-dot {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

@media (min-width: 1600px) {
  .process-arc-space { height: 240px; }
  .process-arc { left: 5px; width: 128%; height: 220px; }
}

@media (max-width: 1100px) {
  .process-arc-space { height: auto; margin-bottom: 0.75rem; }
  .process-arc { display: none; }
  .process-arc-space .process-dot { position: static; margin-bottom: 0.85rem; }
}


/* ========== TESTIMONIALS ========== */
.section-testimonials {
  width: 1400px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 6.25rem 7.5rem;
}

.testimonials-inner {
  width: 100%;
  max-width: 720px;
}

.testimonials-inner h2 {
  margin: 0 0 2.75rem;
  color: var(--black);
  text-align: left;
}

.testimonials-slider {
  position: relative;
  text-align: left;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  position: relative;
}

.testimonial-slide {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonialIn 0.45s ease;
}

@keyframes testimonialIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-quote {
  margin: 0 0 1.75rem;
  max-width: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0 0 2.5rem;
  text-align: left;
}

.testimonial-name {
  display: block;
  font-style: normal;
  font-size: 2.125rem;
  font-weight: 300;
  line-height: 1.2;
  color: #727272;
}

.testimonial-role {
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
  color: #727272;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d3122a;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover { opacity: 0.75; }
.testimonial-arrow:active { transform: scale(0.94); }

@media (max-width: 1100px) {
  .section-testimonials {
    width: 100%;
    display: block;
    min-height: auto;
    padding: 80px var(--pad-x) 100px;
  }
  .testimonials-inner h2 { margin-bottom: 2rem; }
  .testimonial-quote { font-size: 0.975rem; }
}

/* ========== FOOTER HOME-NEW v1.3.0 ========== */
.section-footer-cta {
  width: 780px;
  background: #111;
  overflow: hidden;
  color: #fff;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://www.fastcc.com/wp-content/uploads/2026/08/05dc1d009654e5f5f0d774f7cc3db25615683592-scaled.webp") center / cover no-repeat;
  filter: grayscale(100%);
}
.footer-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 6.25rem 4.5rem 4.5rem;
}
.footer-cta-inner h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-cta-inner > p {
  max-width: 28rem;
  margin: 0 0 2.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.footer-cta-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.footer-cta-links a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.footer-cta-links a::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  background: #c8102e;
}
.footer-cta-links a:hover {
  opacity: 0.75;
  color: #fff;
  text-decoration: none;
}
.section-footer:not(.inner-footer) .social { display: none; }
.locations { display: none !important; }
.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  width: 100%;
}
.footer-contact-label {
  margin: 0 0 0.5rem;
  color: #777;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.footer-contact-value {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.footer-contact-value a {
  color: inherit;
  text-decoration: none;
}
.footer-contact-value a:hover { opacity: 0.6; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}
.footer-social a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--black);
}
.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer-social a:hover { opacity: 0.6; }
.footer-nav ul {
  gap: 12px 24px;
  padding: 0;
  list-style: none;
}
@media (min-width: 2000px) {
  .section-footer-cta { width: 920px; }
}
@media (max-width: 1024px) {
  .section-footer-cta,
  .section-footer {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .footer-cta-inner { padding: 80px var(--pad-x); }
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========== FOOTER CTA HOME-NEW MATCH v1.3.2 ========== */
.section-footer-cta {
  width: 620px !important;
  background: #111;
  overflow: hidden;
  color: #fff;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://www.fastcc.com/wp-content/uploads/2026/08/05dc1d009654e5f5f0d774f7cc3db25615683592-scaled.webp") center / cover no-repeat !important;
  filter: none !important;
}
.footer-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000 !important;
  opacity: 0.7 !important;
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  height: 100%;
  padding: 0 4.8rem !important;
  max-width: 100%;
}
.footer-cta-inner h2 {
  margin: 0 !important;
  max-width: 20rem;
  color: #fff;
  font-size: 2.875rem !important;
  font-weight: 400 !important;
  line-height: 3.5rem !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.footer-cta-inner > p {
  max-width: 20rem !important;
  margin: 1.25rem 0 0 !important;
  color: #fff;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  line-height: 1.875rem !important;
}
@media (min-width: 2000px) {
  .section-footer-cta { width: 720px !important; }
}
@media (max-width: 1024px) {
  .section-footer-cta { width: 100% !important; }
  .footer-cta-inner { padding: 80px var(--pad-x) !important; }
  .footer-cta-inner h2 {
    font-size: 2.25rem !important;
    line-height: 2.75rem !important;
    max-width: none;
  }
  .footer-cta-inner > p { max-width: 36rem !important; }
}


/* ========== SECTION HEADINGS + CTA WIDTH v1.3.3 ========== */
.section-footer-cta {
  width: 470px !important;
}
.about-top h4,
.expertise-left h3,
.section-label {
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  line-height: 1.625rem !important;
  text-transform: uppercase !important;
  text-align: left !important;
}
.about-heading h2,
.expertise-left h2,
.why-fast-left h2,
.process-heading h2,
.testimonials-inner h2,
.footer-cta-inner h2 {
  font-size: 2.125rem !important;
  font-weight: 400 !important;
  line-height: 2.75rem !important;
  text-transform: none !important;
  text-align: left !important;
  letter-spacing: normal !important;
}
.footer-cta-inner h2 {
  max-width: 20rem;
  color: #fff;
  margin: 0 !important;
}
@media (min-width: 2000px) {
  .section-footer-cta { width: 520px !important; }
  .about-heading h2,
  .expertise-left h2,
  .why-fast-left h2,
  .process-heading h2,
  .testimonials-inner h2,
  .footer-cta-inner h2 {
    font-size: 2.125rem !important;
    line-height: 2.75rem !important;
  }
}
@media (max-width: 1024px) {
  .section-footer-cta { width: 100% !important; }
  .about-heading h2,
  .expertise-left h2,
  .why-fast-left h2,
  .process-heading h2,
  .testimonials-inner h2,
  .footer-cta-inner h2 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }
}


/* ========== FOOTER CTA TOP ALIGN + 580px v1.3.4 ========== */
.section-footer-cta {
  width: 580px !important;
}
.footer-cta-inner {
  justify-content: flex-start !important;
  padding: 6.25rem 4.8rem 3.125rem !important;
}
@media (min-width: 2000px) {
  .section-footer-cta { width: 580px !important; }
}
@media (max-width: 1024px) {
  .section-footer-cta { width: 100% !important; }
  .footer-cta-inner {
    justify-content: flex-start !important;
    padding: 80px var(--pad-x) !important;
  }
}


/* ========== ABOUT / PORTFOLIO TYPE v1.3.5 ========== */
.about-copy p {
  font-size: 14px;
  line-height: 1.5rem;
  padding-bottom: 10px;
  font-weight: 400;
}

a.portfolio-item .info h3 {
  font-size: 26px;
  font-weight: 400;
}
a.portfolio-item .info p {
  font-weight: 400 !important;
  font-size: 16px;
}


/* ========== PORTFOLIO TITLE WRAP v1.3.6 ========== */
a.portfolio-item .info h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  line-height: 1.25 !important;
}
