:root {
  --primary: #ff3d00;
  --primary-dark: #c92b27;
  --black: #0b0d0f;
  --dark: #151719;
  --dark-2: #202326;
  --gray: #6e7378;
  --line: #e4e0dc;
  --cream: #fff4f0;
  --paper: #ffffff;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

.back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 900;
}

.template-header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  transition: top 180ms ease, background 180ms ease;
}

.template-header.is-scrolled {
  top: 0;
  background: rgba(11, 13, 15, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.header-inner {
  max-width: 1650px;
  height: 77px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-logo {
  width: 170px;
  padding: 0;
  background: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav > a,
.nav-item > a {
  opacity: 0.9;
}

.desktop-nav > a:hover,
.nav-item:hover > a {
  color: var(--primary);
}

.nav-item {
  position: relative;
  padding: 30px 0;
}

.submenu,
.mega-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  min-width: 230px;
  padding: 18px;
  color: var(--dark);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 160ms ease;
}

.nav-item:hover .submenu,
.nav-item:hover .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}

.mega-menu {
  left: 50%;
  width: min(980px, 80vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  transform: translate(-50%, 12px);
}

.nav-item:hover .mega-menu {
  transform: translate(-50%, 0);
}

.mega-menu a {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.mega-menu img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  border: 1px solid var(--line);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.header-phone b {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--primary);
  border-radius: 50%;
}

.mobile-open {
  display: none;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--primary);
  border: 0;
  font-size: 24px;
}

.mobile-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 86vw);
  padding: 34px 28px;
  background: #fff;
  display: none;
  transform: translateX(100%);
  transition: 220ms ease;
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.24);
}

.drawer-open .mobile-drawer {
  display: block;
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
}

.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--black);
  border: 0;
  font-size: 28px;
}

.mobile-drawer img {
  width: 170px;
  margin: 20px 0 30px;
}

.mobile-search {
  display: flex;
  margin-bottom: 24px;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 1px solid var(--line);
  padding: 0 14px;
}

.mobile-search button {
  width: 52px;
  border: 0;
  background: var(--primary);
  color: #fff;
}

.mobile-drawer nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-area-one {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-area-one::after {
  display: none;
}

.hero-headquarters {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 88px;
  width: min(900px, calc(100vw - 48px));
  transform: translateX(-50%);
  text-align: center;
}

.hero-kicker,
.section-title span,
.brand-left span,
.testimonial-top span,
.cta-content span {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-content h1 {
  margin: 12px 0 16px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    0 8px 26px rgba(0, 0, 0, 0.95);
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 5px 20px rgba(0, 0, 0, 0.95);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 8vw, calc(50% - 520px));
  bottom: 305px;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  color: #fff;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 4px 16px rgba(0, 0, 0, 0.9);
}

.hero-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}

.hero-badge text {
  fill: currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-outline {
  fill: rgba(11, 13, 15, 0.34);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2;
}

.hero-badge span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(11, 13, 15, 0.58);
  font-size: 18px;
  font-weight: 1000;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.template-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 135px 24px 150px;
}

.about-top h2 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(42px, 5.7vw, 78px);
  line-height: 1;
  text-transform: uppercase;
}

.about-top p {
  margin: 42px 0 0 auto;
  max-width: 760px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}

.about-gallery img {
  width: 100%;
  height: 405px;
  object-fit: cover;
}

.about-gallery img:first-child {
  height: 343px;
}

.history-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 80px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.history-strip div {
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.history-strip div:last-child {
  border-right: 0;
}

.history-strip strong {
  display: block;
  color: var(--primary);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.history-strip span {
  display: block;
  margin-top: 10px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.services {
  max-width: none;
  background: var(--cream);
}

.section-title.center {
  text-align: center;
}

.section-title h2 {
  margin: 8px 0 48px;
  font-size: clamp(62px, 8vw, 95px);
  line-height: 1;
  text-transform: uppercase;
}

.service-accordion {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.service-row {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  color: var(--dark);
  background: transparent;
  border: 0;
  border-top: 1px solid #d9ccc6;
  text-align: left;
  cursor: pointer;
}

.service-row:last-child {
  border-bottom: 1px solid #d9ccc6;
}

.service-row span {
  color: var(--primary);
  font-weight: 1000;
}

.service-row b {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.service-row em {
  max-width: 480px;
  color: var(--gray);
  font-style: normal;
}

.service-row.is-active,
.service-row:hover,
.service-row:focus-visible {
  color: #fff;
  background: var(--dark);
  padding-left: 28px;
  padding-right: 28px;
}

.service-row.is-active em,
.service-row:hover em,
.service-row:focus-visible em {
  color: rgba(255, 255, 255, 0.7);
}

.service-accordion:has(.service-row:hover) .service-row.is-active:not(:hover),
.service-accordion:has(.service-row:focus-visible) .service-row.is-active:not(:focus-visible) {
  color: var(--dark);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.service-accordion:has(.service-row:hover) .service-row.is-active:not(:hover) em,
.service-accordion:has(.service-row:focus-visible) .service-row.is-active:not(:focus-visible) em {
  color: var(--gray);
}

.process {
  max-width: none;
  background: var(--dark);
  color: #fff;
}

.process-grid {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  background: transparent;
  overflow: hidden;
}

.process-grid article {
  position: relative;
  flex: 1;
  height: 672px;
  overflow: hidden;
  padding: 37px 50px 50px;
  color: #fff;
  background: #143655;
  opacity: 0;
  transform: translateX(-64px);
  transition: flex 0.6s ease, opacity 0.6s ease, transform 0.6s ease, background 0.35s ease;
  cursor: pointer;
}

.process-grid.is-visible article {
  opacity: 1;
  transform: translateX(0);
  animation: processFadeInLeft 0.6s ease both;
}

.process-grid.is-visible article:nth-child(1) {
  animation-delay: 0ms;
}

.process-grid.is-visible article:nth-child(2) {
  animation-delay: 150ms;
}

.process-grid.is-visible article:nth-child(3) {
  animation-delay: 300ms;
}

.process-grid.is-visible article:nth-child(4) {
  animation-delay: 450ms;
}

.process-grid article:nth-child(1) {
  background:
    linear-gradient(rgba(11, 13, 15, 0.52), rgba(11, 13, 15, 0.7)),
    url("assets/assets/images/gallery/kelteks/kelteks-1.jpg") center / cover no-repeat;
}

.process-grid article:nth-child(2) {
  color: var(--black);
  background:
    linear-gradient(rgba(238, 239, 230, 0.78), rgba(238, 239, 230, 0.88)),
    url("assets/assets/images/galerija-reference/05_skole/intro/algebra-kampus-intro.jpg") center / cover no-repeat;
}

.process-grid article:nth-child(3) {
  background:
    linear-gradient(rgba(255, 61, 0, 0.82), rgba(255, 61, 0, 0.9)),
    url("assets/assets/images/galerija-reference/06_stambeni/intro/sp_zgrada_l1_gradiscanska_zg_2020_intro.jpg") center / cover no-repeat;
}

.process-grid article:nth-child(4) {
  background:
    linear-gradient(rgba(11, 13, 15, 0.76), rgba(11, 13, 15, 0.9)),
    url("assets/assets/images/galerija-reference/08_benzinske/intro/09_skurinje.jpg") center / cover no-repeat;
}

.process-grid article.active {
  flex: 3.7;
}

.process-grid span {
  display: block;
  color: currentColor;
  font-size: clamp(64px, 8vw, 125px);
  line-height: 1;
  font-weight: 1000;
  opacity: 0.9;
}

.process-grid h3 {
  max-width: 520px;
  margin: 228px 0 18px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.4s cubic-bezier(0.5, 0.5, 0, 1);
}

.process-grid p {
  max-width: 520px;
  margin: 0;
  color: currentColor;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.4s cubic-bezier(0.5, 0.5, 0, 1);
  transition-delay: 0.1s;
  line-height: 1.7;
}

.process-grid article.active h3,
.process-grid article.active p {
  opacity: 1;
  transform: translateY(0);
}

.process-grid article:not(.active) h3 {
  width: 24rem;
}

@keyframes processFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-64px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.template-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-btn.outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}

.template-btn.outline.dark {
  border-color: var(--dark);
}

.project-list {
  display: grid;
  gap: 0;
}

.project-row {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.project-row.reverse {
  direction: rtl;
}

.project-row.reverse > * {
  direction: ltr;
}

.project-copy ul {
  margin: 0 0 20px;
  padding: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

.project-copy p {
  max-width: 540px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.project-copy a {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  font-weight: 1000;
  text-transform: uppercase;
}

.project-row > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-row > strong {
  position: absolute;
  right: 0;
  bottom: 58px;
  color: rgba(0, 0, 0, 0.07);
  font-size: 142px;
  line-height: 1;
}

.project-row.reverse > strong {
  left: 0;
  right: auto;
}

.feature-marquee {
  padding: 150px 0 90px;
  overflow: hidden;
  max-width: 100vw;
  background: var(--cream);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 22px;
  animation: marquee-right 34s linear infinite;
}

.marquee-track.left {
  animation-name: marquee-left;
}

.marquee-track span,
.marquee-track b {
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  padding: 0 36px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track b {
  color: #fff;
  background: var(--dark);
}

@keyframes marquee-right {
  from { transform: translateX(-22%); }
  to { transform: translateX(0); }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-22%); }
}

.brand {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.brand-left h2,
.testimonial-top h2,
.cta-content h2 {
  margin: 10px 0 18px;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  text-transform: uppercase;
}

.brand-left p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brand-logos img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.brand-logos img:first-child {
  grid-column: 1 / -1;
  height: 380px;
}

.testimonials {
  max-width: none;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.testimonial-top {
  max-width: var(--max);
  margin: 0 auto 70px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.testimonial-top p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 900;
}

.testimonial-slider {
  max-width: var(--max);
  min-height: 300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.testimonial-slider article {
  position: absolute;
  inset: 0 24px auto;
  opacity: 0;
  transform: translateX(70px);
  transition: 260ms ease;
}

.testimonial-slider article.is-active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slider h3 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.05;
  text-transform: uppercase;
}

.testimonial-slider p {
  color: var(--primary);
  font-weight: 1000;
}

.cta-section {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 13, 15, 0.38), rgba(11, 13, 15, 0.72)),
    url("assets/assets/images/gallery/green_hills_2_novosti/gh-4.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.blog-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.blog-grid span {
  display: block;
  margin: 28px 28px 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 0 28px 14px;
  font-size: 28px;
  line-height: 1.12;
  text-transform: uppercase;
}

.blog-grid p {
  margin: 0 28px 32px;
  color: var(--gray);
  line-height: 1.7;
}

.careers {
  padding-top: 40px;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.career-tags span {
  padding: 18px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 1000;
  text-transform: uppercase;
}

.footer_1 {
  color: #fff;
  background: var(--black);
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 40px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  padding: 70px 0;
}

.footer-grid h3 {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom img {
  width: 126px;
  padding: 8px;
  background: #fff;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-open {
    display: block;
  }

  .header-inner {
    padding: 0 22px;
  }

  .about-top,
  .brand,
  .section-title.split,
  .project-row,
  .project-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .about-top p {
    grid-column: auto;
  }

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

  .service-row {
    grid-template-columns: 60px 1fr;
  }

  .service-row em {
    grid-column: 2;
  }

  .history-strip strong {
    font-size: clamp(38px, 5vw, 56px);
  }

  .hero-badge {
    left: 28px;
    bottom: 260px;
    width: 138px;
    height: 138px;
  }
}

@media (max-width: 900px) {
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid article,
  .process-grid article.active {
    display: block;
    flex: unset;
    width: 100%;
    height: auto;
    min-height: 360px;
    padding: 30px 28px;
    opacity: 1;
    transform: none;
  }

  .process-grid h3,
  .process-grid article:not(.active) h3 {
    width: auto;
    max-width: 100%;
    margin-top: 74px;
    opacity: 1;
    transform: none;
  }

  .process-grid p {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .template-header {
    top: 0;
    background: rgba(11, 13, 15, 0.94);
  }

  .header-logo {
    width: 150px;
  }

  .hero-area-one {
    min-height: 760px;
  }

  .hero-content {
    bottom: 58px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-badge {
    left: 22px;
    bottom: 235px;
    width: 126px;
    height: 126px;
  }

  .hero-badge text {
    font-size: 12px;
  }

  .hero-badge span {
    width: 52px;
    height: 52px;
    font-size: 14px;
  }

  .template-section {
    padding: 82px 18px 90px;
  }

  .about-top h2,
  .section-title h2,
  .brand-left h2,
  .testimonial-top h2,
  .cta-content h2 {
    font-size: 42px;
  }

  .about-gallery,
  .blog-grid,
  .footer-grid,
  .brand-logos {
    grid-template-columns: 1fr;
  }

  .about-gallery img,
  .about-gallery img:first-child,
  .project-row > img,
  .brand-logos img,
  .brand-logos img:first-child,
  .blog-grid img {
    height: 310px;
  }

  .history-strip strong {
    font-size: 54px;
  }

  .history-strip {
    grid-template-columns: 1fr;
  }

  .history-strip div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .history-strip div:last-child {
    border-bottom: 0;
  }

  .service-row,
  .service-row.is-active {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 10px;
  }

  .service-row em {
    grid-column: auto;
  }

  .project-row {
    min-height: 0;
    gap: 30px;
    padding: 44px 0;
  }

  .project-row > strong {
    font-size: 82px;
    bottom: 28px;
  }

  .marquee-track span,
  .marquee-track b {
    min-height: 62px;
    font-size: 28px;
  }

  .testimonial-top,
  .footer-cta,
  .footer-bottom {
    display: grid;
  }

  .testimonial-slider {
    min-height: 390px;
  }

  .testimonial-slider h3 {
    font-size: 34px;
  }

  .cta-section {
    min-height: 620px;
  }

  .footer_1 {
    padding-top: 90px;
  }
}

@media screen and (max-width: 900px) {
  section.process .process-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section.process .process-grid article,
  section.process .process-grid article.active {
    display: block;
    flex: none;
    width: 100%;
    height: auto;
    min-height: 360px;
    padding: 30px 28px;
    opacity: 1;
    transform: none;
  }

  section.process .process-grid h3,
  section.process .process-grid article:not(.active) h3 {
    width: auto;
    max-width: 100%;
    margin-top: 74px;
    opacity: 1;
    transform: none;
  }

  section.process .process-grid p {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
}
