:root {
  --red: #df001b;
  --orange: #fb8f03;
  --text: #333333;
  --muted: #666666;
  --light: #f4f4f4;
  --container: 1400px;
  --about-visible: 5;
  --about-gap-total: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #ffffff;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.topbar {
  height: 100px;
  background: #ffffff;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  width: 260px;
  flex: 0 0 auto;
}

.brand img {
  width: 226px;
  height: auto;
}

.slogan {
  padding-left: 18px;
  border-left: 1px solid #e7e7e7;
  line-height: 1.35;
}

.slogan strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0;
  color: #1f1f1f;
}

.slogan span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #5e5e5e;
}

.phone-list {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 62px;
}

.phone-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px auto;
  column-gap: 14px;
  align-items: center;
  min-width: 220px;
}

.phone-item img {
  width: 46px;
  height: 46px;
  grid-row: 1 / span 2;
}

.phone-item span {
  font-size: 14px;
  color: #5d5d5d;
}

.phone-item strong {
  font-size: 25px;
  line-height: 1;
  color: #d4142c;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #d9001b;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-wrap {
  height: 40px;
  background: #df001b;
}

.nav-inner {
  height: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.nav-inner a {
  min-width: 110px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: background .2s ease;
}

.nav-inner a:hover,
.nav-inner a.active {
  background: #fb8f03;
}

.hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  background: #0d1720;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease, transform 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 23px;
  border-top: 3px solid #4b6578;
  border-left: 3px solid #4b6578;
}

.hero-prev {
  left: 62px;
}

.hero-prev::before {
  left: 25px;
  transform: rotate(-45deg);
}

.hero-next {
  right: 62px;
}

.hero-next::before {
  right: 25px;
  transform: rotate(135deg);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 60px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.section {
  padding: 88px 0;
}

.section-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #303030;
}

.products {
  min-height: 1020px;
  background: #f4f4f4;
}

.product-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  margin-bottom: 32px;
}

.product-tabs button {
  min-width: 160px;
  height: 43px;
  padding: 0 24px;
  border: 0;
  border-radius: 22px;
  color: #333333;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.product-tabs button:hover,
.product-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 30px;
}

.product-card {
  height: 306px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card[hidden],
.adv-pane[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.product-card img {
  width: 287px;
  height: 205px;
  object-fit: contain;
  margin-top: 28px;
}

.product-card h3 {
  width: 100%;
  min-height: 58px;
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}

.product-card:hover h3 {
  color: #ffffff;
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.more-link {
  display: block;
  width: fit-content;
  margin: 38px auto 0;
  color: #575757;
  font-size: 16px;
}

.more-link:hover,
.more-link.red {
  color: var(--red);
}

.sale-strip {
  height: 200px;
  background: url("../img/横幅-bg.png") center / cover no-repeat;
}

.sale-strip-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sale-copy {
  flex: 0 0 650px;
  color: #ffffff;
}

.sale-copy strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.sale-copy span {
  display: block;
  margin-top: 18px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 1px;
}

.sale-phone {
  margin-left: 70px;
  display: grid;
  grid-template-columns: 60px auto auto auto;
  align-items: center;
  column-gap: 12px;
  color: #ffffff;
}

.sale-phone img {
  width: 60px;
  height: 60px;
  grid-row: 1 / span 2;
}

.sale-phone span {
  grid-column: 2 / 5;
  font-size: 18px;
  line-height: 1;
}

.sale-phone strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 1px;
}

.sale-phone em {
  align-self: end;
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
}

.about {
  padding-top: 0;
  padding-bottom: 74px;
}

.about-main {
  position: relative;
  min-height: 610px;
  background: url("../img/关于我们bg.png") center top / cover no-repeat;
}

.about-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 62px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
}

.about-inner {
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-copy {
  width: 540px;
  margin-right: 70px;
  color: #5e5e5e;
}

.about-copy h2 {
  margin: 0 0 34px;
  color: #333333;
  font-size: 36px;
  line-height: 1.2;
}

.about-copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
}

.about-copy a {
  display: inline-block;
  margin-top: 10px;
  color: #555555;
}

.about-copy a:hover {
  color: var(--red);
}

.about-gallery-shell {
  margin-top: 38px;
}

.about-gallery-viewport {
  overflow: hidden;
}

.about-gallery {
  display: flex;
  gap: 20px;
  transition: transform .55s ease;
  will-change: transform;
}

.about-gallery img {
  flex: 0 0 calc((100% - var(--about-gap-total)) / var(--about-visible));
  aspect-ratio: 264 / 198;
  object-fit: cover;
}

.advantage {
  position: relative;
  padding-bottom: 0;
  background: #ffffff;
}

.adv-bg {
  position: relative;
  min-height: 760px;
  padding-top: 96px;
  color: #ffffff;
  overflow: hidden;
  background: url("../img/矩形 17 拷贝.png") center / cover no-repeat;
}

.adv-bg::before,
.adv-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.adv-bg::after {
  display: none;
}

.adv-bg .container {
  position: relative;
  z-index: 1;
}

.adv-bg h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
}

.adv-copy {
  width: 760px;
  margin-top: 214px;
}

.adv-copy h3 {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.adv-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .9);
}

.adv-tabs {
  height: 120px;
  margin-top: -60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5f5f5;
  position: relative;
  z-index: 2;
}

.adv-tabs button {
  border: 0;
  color: #333333;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.adv-tabs button img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(98%) saturate(4955%) hue-rotate(343deg) brightness(90%) contrast(101%);
  transition: filter .2s ease;
}

.adv-tabs button.is-active,
.adv-tabs button:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.adv-tabs button.is-active img,
.adv-tabs button:hover img {
  filter: brightness(0) invert(1);
}

.cases {
  padding-top: 60px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.08fr .52fr .52fr;
  grid-template-rows: repeat(2, 246px);
  gap: 28px 30px;
}

.case-card {
  position: relative;
  overflow: hidden;
  background: #eeeeee;
}

.case-large {
  grid-row: span 2;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.case-card:hover img {
  transform: scale(1.05);
}

.case-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 42px;
  padding: 11px 22px;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background: rgba(0, 0, 0, .55);
}

.case-card:hover span {
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.clients {
  background: #f3f3f3;
  min-height: 752px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}

.client-grid img {
  width: 100%;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.client-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.news {
  min-height: 814px;
  background: #ffffff;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.news-card {
  background: #f4f4f4;
  padding-bottom: 26px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.news-card img {
  width: 100%;
  aspect-ratio: 406 / 305;
  object-fit: cover;
}

.news-card h3 {
  margin: 22px 22px 12px;
  font-size: 20px;
  line-height: 1.45;
  color: #333333;
  transition: color .2s ease;
}

.news-card:hover h3 {
  color: #d9001b;
}

.news-card p {
  margin: 0 22px;
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
}

.news-card div {
  margin: 28px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card time,
.news-list time {
  color: #777777;
  font-size: 14px;
}

.news-card a {
  color: #d9001b;
  font-size: 15px;
}

.news-card a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-list a {
  min-height: 86px;
  padding: 19px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f4;
  transition: color .2s ease, background .2s ease;
}

.news-list strong {
  margin-bottom: 10px;
  color: inherit;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
}

.news-list a:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.news-list a:hover time {
  color: rgba(255, 255, 255, .9);
}

.footer {
  color: rgba(255, 255, 255, .66);
  background: #151923 url("../img/矩形 539 拷贝 6.png") center top / cover no-repeat;
}

.footer-main {
  min-height: 390px;
  padding: 68px 0 44px;
  display: grid;
  grid-template-columns: 2.8fr 1.35fr 1.15fr 1fr 1.15fr 1.15fr;
  gap: 42px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 30px;
}

.footer-contact p,
.footer-col a {
  margin: 0 0 16px;
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.footer-col h3 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 17px;
}

.footer-col a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.socials a {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: transform .2s ease, background .2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
}

.socials a:first-child:hover,
.socials a:nth-child(2):hover,
.socials a:nth-child(3):hover,
.socials a:first-child:focus-visible,
.socials a:nth-child(2):focus-visible,
.socials a:nth-child(3):focus-visible {
  background: linear-gradient(90deg, #df001b, #ff7513);
}

.socials > a > img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  transition: filter .2s ease;
}

.socials a:hover > img,
.socials a:focus-visible > img {
  filter: brightness(0) invert(1);
}

.social-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  width: 128px;
  padding: 10px 10px 8px;
  border-radius: 4px;
  color: #333333;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  pointer-events: none;
}

.social-qr::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: translate(-50%, -6px) rotate(45deg);
}

.social-qr img {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 auto 8px;
  object-fit: cover;
  border: 1px solid #e8e8e8;
}

.social-qr span {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 8px;
  background:
    linear-gradient(90deg, #111111 8px, transparent 8px 14px, #111111 14px 20px, transparent 20px 26px, #111111 26px 34px, transparent 34px 46px, #111111 46px 52px, transparent 52px 60px, #111111 60px 68px, transparent 68px),
    linear-gradient(0deg, transparent 8px, #111111 8px 14px, transparent 14px 20px, #111111 20px 28px, transparent 28px 42px, #111111 42px 50px, transparent 50px 62px, #111111 62px 70px, transparent 70px),
    #ffffff;
  background-size: 46px 46px;
  border: 8px solid #ffffff;
  outline: 1px solid #e8e8e8;
}

.social-qr em {
  position: relative;
  z-index: 1;
  display: block;
  color: #666666;
  font-size: 12px;
  line-height: 1;
  font-style: normal;
}

.socials a:hover .social-qr,
.socials a:focus-visible .social-qr {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.copyright {
  min-height: 75px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

@media (max-width: 1440px) {
  :root {
    --container: 1200px;
  }

  .nav-inner a {
    min-width: 96px;
    padding: 0 10px;
    font-size: 15px;
  }

  .phone-list {
    gap: 26px;
  }

  .case-grid {
    grid-template-rows: repeat(2, 220px);
  }
}

@media (max-width: 1100px) {
  :root {
    --about-visible: 3;
    --about-gap-total: 40px;
  }

  .topbar {
    height: 78px;
  }

  .topbar-inner {
    height: 78px;
  }

  .brand {
    width: auto;
  }

  .brand img {
    width: 210px;
  }

  .slogan,
  .phone-list {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .25s ease, opacity .2s ease;
  }

  body.nav-open .nav-wrap {
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-inner {
    width: 100%;
    height: auto;
    padding: 10px 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .nav-inner a {
    min-width: 0;
    height: 42px;
    padding: 0 8px;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    background: rgba(255, 255, 255, .08);
  }

  .hero {
    height: 56vw;
    min-height: 360px;
  }

  .sale-strip-inner {
    justify-content: space-between;
  }

  .sale-copy {
    flex: 0 1 520px;
  }

  .sale-copy strong {
    font-size: 32px;
  }

  .sale-copy span {
    font-size: 20px;
    line-height: 1.25;
  }

  .sale-phone {
    margin-left: 30px;
  }

  .sale-phone strong {
    font-size: 32px;
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
  }

  .hero-arrow::before {
    top: 18px;
  }

  .hero-prev {
    left: 22px;
  }

  .hero-next {
    right: 22px;
  }

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

  .about-inner {
    justify-content: center;
  }

  .about-copy {
    width: min(580px, 100%);
    margin: 0;
    padding: 32px;
    background: rgba(255, 255, 255, .86);
  }

  .case-grid,
  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

  .case-grid {
    grid-template-rows: auto;
  }

  .case-large {
    grid-row: auto;
    grid-column: span 2;
    aspect-ratio: 684 / 380;
  }

  .case-card:not(.case-large) {
    aspect-ratio: 328 / 246;
  }

  .client-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .news-list {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --about-visible: 2;
    --about-gap-total: 20px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .brand img {
    width: 180px;
  }

  .hero {
    height: clamp(160px, 42vw, 280px);
    min-height: 0;
    background: #172331;
  }

  .hero-slide {
    background-position: center center;
    /*background-size: contain;*/
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 16px;
  }

  .hero-dots button {
    width: 34px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .product-tabs {
    gap: 10px;
    flex-wrap: wrap;
  }

  .product-tabs button {
    min-width: auto;
    height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }

  .case-grid,
  .news-layout,
  .news-list {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .products {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-card {
    height: auto;
    min-height: 188px;
  }

  .product-card img {
    width: 100%;
    max-width: 150px;
    height: 112px;
    margin-top: 16px;
  }

  .product-card h3 {
    min-height: 50px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
  }

  .case-large,
  .news-list {
    grid-column: auto;
  }

  .sale-strip {
    height: 120px;
  }

  .sale-strip-inner {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 18px 0;
  }

  .sale-copy {
    flex: none;
  }

  .sale-copy strong {
    font-size: 24px;
  }

  .sale-copy span {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  .sale-phone {
    margin-left: 0;
    grid-template-columns: 38px auto auto auto;
    column-gap: 8px;
  }

  .sale-phone img {
    width: 38px;
    height: 38px;
  }

  .sale-phone span {
    font-size: 13px;
  }

  .sale-phone strong {
    font-size: 24px;
  }

  .sale-phone em {
    padding-bottom: 2px;
    font-size: 12px;
  }

  .about-main,
  .about-inner,
  .adv-bg {
    min-height: auto;
  }

  .about-inner {
    padding: 58px 0;
  }

  .about-copy {
    padding: 24px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adv-bg {
    padding: 58px 0 120px;
  }

  .adv-copy {
    width: 100%;
    margin-top: 70px;
  }

  .adv-tabs {
    height: auto;
    margin-top: -78px;
    grid-template-columns: 1fr 1fr;
  }

  .adv-tabs button {
    min-height: 108px;
    padding: 14px;
    font-size: 14px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .footer-main {
    gap: 28px;
    padding-top: 48px;
  }
}
