.hero {
  height: 10.8rem;
  position: relative;
  overflow: hidden;
}

.heroSlide {
  overflow: hidden;
}

.heroBackground {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.heroShade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .32);
}

.heroText {
  width: 10rem;
  position: absolute;
  top: 5.23rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.heroText h1 {
  font-size: clamp(32px, .53rem, 53px);
  line-height: 1.4;
  font-weight: 800;
  color: #fff;
}

.heroText p {
  margin-top: .06rem;
  font-size: clamp(32px, .53rem, 53px);
  line-height: 1.5;
  font-weight: 800;
  color: #fff;
}

.heroOrbit {
  width: 4.69rem !important;
  height: 3.97rem !important;
  position: absolute;
  left: 50%;
  z-index: 2;
  pointer-events: none;
}

.heroOrbitTop {
  top: 2.7rem;
  transform: translateX(-50%);
}

.heroOrbitBottom {
  top: 5.75rem;
  transform: translateX(-50%) scaleY(-1);
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: .52rem;
  height: .52rem;
  top: auto;
  bottom: .43rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(241, 245, 248, .72);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.hero .swiper-button-prev {
  left: auto;
  right: 3.12rem;
}

.hero .swiper-button-next {
  right: 2.4rem;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: .22rem;
  font-weight: 700;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: rgba(0, 54, 153, .88);
  transform: scale(1.05);
}

.scrollDown {
  position: absolute;
  left: 50%;
  bottom: .44rem;
  width: .3rem;
  height: .46rem;
  border: .02rem solid #ffffff;
  border-radius: .2rem;
  color: #ffffff;
  font-size: 0;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: auto;
  z-index: 1;
}

.scrollDown::before {
  content: '';
  position: absolute;
  top: .08rem;
  left: 50%;
  width: .04rem;
  height: .1rem;
  border-radius: .03rem;
  background: #ffffff;
  opacity: 0;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    top: .08rem;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    top: .26rem;
    opacity: 0;
  }
}

.sectionHeading {
  text-align: center;
}

.sectionHeading h2 {
  color: #000;
  font-size: clamp(24px, .34rem, 34px);
  line-height: 1.25;
  font-weight: 700;
}

.sectionHeading p {
  margin-top: .11rem;
  color: var(--blue);
  font-size: clamp(15px, .26rem, 26px);
  font-weight: 700;
}

.sectionHeading.white h2,
.sectionHeading.white p {
  color: #fff;
}

.products {
  min-height: 10.1rem;
  padding-top: .65rem;
  position: relative;
  isolation: isolate;
  background: #fff;
  overflow: hidden;
}

.products::before,
.products::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 3.84rem;
  bottom: 0;
  z-index: -1;
}

.products::before {
  background: var(--product-background-image, url('../images/product-fire-background.png')) center 13.8% / cover no-repeat;
}

.products::after {
  background: rgba(0, 0, 0, .4);
}

.products .sectionHeading {
  position: relative;
  z-index: 1;
}

.products .sectionHeading p {
  margin-top: .16rem;
}

.productPanel {
  height: 3.66rem;
  margin-top: .46rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  border-radius: .1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 .23rem rgba(0, 0, 0, .1);
}

.productPanel canvas {
  position: absolute;
  left: 0;
  top: 2rem;
  width: 100%;
  height: 100%;
}

.productItem {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: .95rem;
  color: #111;
  transition: transform .25s ease;
}

.productItem::before {
  position: absolute;
  inset: .14rem .11rem;
  z-index: -1;
  border-radius: .06rem;
  content: '';
  transition: background .25s ease;
}

.productItem:not(:last-child)::after {
  position: absolute;
  top: .65rem;
  right: 0;
  z-index: 2;
  width: .01rem;
  height: 2.32rem;
  background: #d9d9d9;
  content: '';
}

.productItem:hover::before {
  background: rgba(255, 129, 6, .1);
}

.productItem:hover {
  transform: translateY(-.04rem);
}

/* .productItem:not(.active):hover::before {
  background: rgba(0, 54, 153, .06);
} */

.productIcon {
  width: .78rem;
  height: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productItem h3 {
  margin-top: .25rem;
  color: #111;
  font-size: clamp(20px, .26rem, 26px);
  line-height: 1.2;
  font-weight: 700;
}

.productItem b {
  width: .32rem;
  height: .32rem;
  margin-top: .46rem;
  position: relative;
  display: block;
  flex: 0 0 auto;
  background: var(--blue);
}

.productItem b::before,
.productItem b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .16rem;
  height: .02rem;
  background: #fff;
  content: '';
  transform: translate(-50%, -50%);
}

.productItem b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.productItem:hover b,
.productItem.active b {
  background: var(--orange);
}

.productNote {
  width: 9.42rem;
  position: absolute;
  z-index: 1;
  top: 7.65rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(14px, .16rem, 16px);
  line-height: 1.75;
  text-align: center;
}

.solutions {
  min-height: 7.87rem;
  padding: .72rem 0 .55rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.solutionShade {
  display: none;
}

.solutionMain {
  position: relative;
  z-index: 1;
}

.solutionTabs {
  display: flex;
  justify-content: center;
  gap: .22rem;
  margin: .4rem 0 .39rem;
}

.solutionTabs button {
  width: 1.85rem;
  height: .5rem;
  border: .01rem solid var(--blue);
  border-radius: .06rem;
  background: #fff;
  color: #111;
  font-size: clamp(14px, .2rem, 20px);
  transition: background .25s ease, color .25s ease;
}

.solutionTabs button:hover,
.solutionTabs button.active {
  background: var(--blue);
  color: #fff;
}

.solutionSwiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}

.solutionSwiper .swiper-wrapper {
  align-items: center;
}

.solutionSwiper .swiper-slide {
  width: 10.22rem;
  opacity: .5;
  transition: opacity .35s ease;
}

.solutionSwiper .swiper-slide-active {
  opacity: 1;
}

.solutionCard {
  width: 10.22rem;
  height: 4.89rem;
  margin: 0;
  display: flex;
  position: relative;
  border-radius: .1rem;
  background: #fff;
  box-shadow: 0 0 .23rem rgba(0, 0, 0, .1);
}

.solutionText {
  width: 4.68rem;
  margin-left: .72rem;
  padding-top: .55rem;
  flex: 0 0 auto;
}

.solutionText h3 {
  color: var(--blue);
  font-size: clamp(21px, .26rem, 26px);
  line-height: 1.2;
  font-weight: 700;
}

.solutionText i {
  width: .41rem;
  height: .03rem;
  display: block;
  margin: .28rem 0 .34rem;
  background: #d9d9d9;
}

.solutionText p {
  width: 3.94rem;
  color: #222;
  font-size: clamp(14px, .16rem, 16px);
  line-height: 1.75;
}

.outlineBtn {
  width: fit-content;
  min-width: 1.24rem;
  height: .45rem;
  padding: 0 .18rem;
  margin-top: .31rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  border: .01rem solid var(--blue);
  border-radius: .06rem;
  color: var(--blue);
  font-size: clamp(14px, .14rem, 14px);
  transition: all .25s ease;
}

.outlineBtn b {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.outlineBtn:hover {
  color: #fff;
  background: var(--blue);
}

.solutionImage {
  width: 5.3rem;
  height: 4.15rem;
  margin-top: .37rem;
  flex: 0 0 auto;
  border-radius: .1rem;
  overflow: hidden;
}

.solutionImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.solutionCard:hover .solutionImage img {
  transform: scale(1.04);
}

.news {
  min-height: 10.8rem;
  padding: .92rem 0 1.1rem;
  background: url('../images/figma-01.png') center bottom / cover no-repeat;
  position: relative;
}

.news .main {
  position: relative;
  z-index: 1;
}

.news::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 7.27rem;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.about {
  min-height: 9rem;
  padding: .74rem 0 1.28rem;
  /* background: #fff; */
  overflow: hidden;
  position: relative;
  background: #fff url(../images/aboutBack.png) bottom left / 11.38rem auto no-repeat;
}

.eyebrow {
  color: #000000;
  font-size: clamp(18px, .34rem, 34px);
  font-weight: 700;
}

.aboutText h2 {
  margin-top: .2rem;
  color: var(--blue);
  font-size: clamp(14px, .26rem, 26px);
  line-height: 1.45;
  font-weight: 700;
}

.aboutText article {
  width: 7.96rem;
  color: #000;
  margin: .53rem 0 .74rem;
  font-size: clamp(14px, .16rem, 16px);
  line-height: 1.8;
}

.blueBtn {
  margin-top: .25rem;
}

.aboutStats {
  margin-top: .43rem;
  display: flex;
  gap: .68rem;
}

.aboutStats b {
  color: var(--orange);
  font-family: Poppins;
  font-size: clamp(25px, .54rem, 54px);
  font-weight: 700;
  line-height: 1;
}

.aboutStats b span {
  line-height: 1;
}

.aboutStats p {
  width: auto;
  margin-top: .08rem;
  color: #000;
  font-size: clamp(12px, .16rem, 16px);
}

.aboutImage {
  position: absolute;
  width: 8.68rem;
  top: 0;
  right: 0;
  height: 100%;
}

.aboutImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partners {
  min-height: 7.87rem;
  padding: .75rem 0 .95rem;
  background: #F7F7F7 url(../images/partners.png) center .59rem / 16.82rem auto no-repeat;
}

.partnerIntro {
  width: 7.6rem;
  margin: .34rem auto .52rem;
  text-align: center;
  color: #000;
  font-size: clamp(14px, .2rem, 20px);
  font-weight: 700;
  line-height: 1.7;
}

.partnerGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .1rem;
}

.partnerGrid a {
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: .06rem;
  box-shadow: 0 .02rem .1rem rgba(0, 0, 0, .06);
  transition: transform .25s ease, color .25s ease;
  padding: .3rem;
}

.partnerGrid a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newsExperience {
  position: relative;
}

.newsExperience .titleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsExperience .newsImages {
  height: 4.33rem;
  display: flex;
  gap: .11rem;
  margin-top: .42rem;
  flex-wrap: wrap;
}

.newsExperience .newsImage {
  flex: 1;
  display: block;
  border-radius: .1rem;
  position: relative;
  overflow: hidden;
  transition: flex .35s ease;
}

.newsExperience .newsImage:hover {
  flex: 0 0 6.4rem;
}

.newsExperience .newsImage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  transition: background .25s ease;
}

.newsExperience .newsImage>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.newsExperience .newsImage:hover>img {
  transform: scale(1.06);
}

.newsExperience .newsImage:hover::after {
  background: rgba(0, 54, 153, .18);
}

.newsImageLabel {
  position: absolute;
  top: .28rem;
  left: .28rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.newsImageLabel>img {
  width: .3rem !important;
  height: .3rem !important;
  margin-bottom: .08rem;
  object-fit: contain !important;
}

.newsImageLabel strong {
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  line-height: 1.35;
  font-weight: 700;
}

.newsImageLabel em {
  margin-top: .02rem;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(11px, .14rem, 14px);
  line-height: 1.35;
  font-style: normal;
}

.noticeTicker {
  height: .61rem;
  margin-top: .42rem;
  border-radius: .1rem;
  background: #fff;
  box-shadow: 0 0 .14rem rgba(0, 0, 0, .12);
  overflow: hidden;
}

.noticeTrack {
  width: max-content;
  display: flex;
  animation: newsTicker 18s linear infinite;
}

.noticeTicker:hover .noticeTrack {
  animation-play-state: paused;
}

.noticeSequence {
  display: flex;
  flex: 0 0 auto;
}

.noticeItem {
  width: 4.8rem;
  height: .61rem;
  padding: 0 .34rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  position: relative;
  color: #222;
  white-space: nowrap;
}

.noticeItem::before {
  width: .02rem;
  height: .18rem;
  background: #999;
  content: '';
  flex: 0 0 auto;
}

.noticeItem time,
.noticeItem span {
  color: inherit;
  font-size: clamp(13px, .16rem, 16px);
}

.noticeItem time {
  font-family: Arial, sans-serif;
}

.noticeItem span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsCardSwiper {
  width: 14.4rem;
  margin-top: .6rem;
  overflow: visible;
}

.newsCardSwiper .swiper-slide {
  height: 2.34rem;
}

.newsCard {
  height: 1.78rem;
  padding: .22rem .33rem;
  border-radius: .1rem;
  background: #fff;
  box-shadow: 0 0 .14rem rgba(0, 0, 0, .21);
  overflow: hidden;
  transition: height .25s ease, transform .25s ease, background .25s ease;
}

.newsCard:hover {
  height: 2.34rem;
  transform: none;
  background: #fff;
}

.newsCard .date {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.newsCard .date b {
  color: var(--blue);
  font-size: clamp(26px, .34rem, 34px);
  line-height: 1;
  font-weight: 500;
}

.newsCard .date span,
.newsCard .date em {
  color: var(--blue);
  font-size: clamp(12px, .16rem, 16px);
  font-style: normal;
}

.newsCard .date em {
  color: #585858;
  margin-left: .08rem;
}

.newsCard h3 {
  margin-top: .17rem;
  color: #111;
  font-size: clamp(14px, .16rem, 16px);
  line-height: 1.45;
  font-weight: 700;
}

.newsExcerpt {
  display: none;
  margin-top: .16rem;
  color: #777;
  font-size: clamp(12px, .14rem, 14px);
  line-height: 1.6;
}

.newsCard:hover .newsExcerpt {
  display: block;
}

.newsDetail {
  display: block;
  margin-top: .19rem;
  color: var(--blue);
  font-size: clamp(12px, .14rem, 14px);
}

.newsCardPrev,
.newsCardNext {
  width: .36rem;
  height: .36rem;
  top: .78rem;
  margin-top: 0;
  border-radius: 50%;

  background: rgba(88, 88, 88, 0.50);
  color: #fff;
}

.newsCardPrev {
  left: -.18rem;
}

.newsCardNext {
  right: -.18rem;
}

.newsCardPrev::after,
.newsCardNext::after {
  font-size: .16rem;
  font-weight: 700;
}

.newsCardPrev:hover,
.newsCardNext:hover {
  background: rgba(0, 54, 153, .58);
}

@keyframes newsTicker {
  to {
    transform: translateX(-50%);
  }
}

.newsCardCarousel {
  margin-top: .6rem;
  position: relative;
}

.newsCardCarousel .newsCardSwiper {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.newsCardCarousel .newsCardPrev {
  left: -.18rem;
}

.newsCardCarousel .newsCardNext {
  right: -.18rem;
}

@media (max-width: 768px) {
  .hero {
    height: 5.7rem;
  }

  .heroText {
    width: 90%;
    top: 2.55rem;
  }

  .heroText h1,
  .heroText p {
    font-size: clamp(25px, .34rem, 34px);
    line-height: 1.45;
  }

  .heroOrbit {
    width: 3.2rem !important;
    height: auto !important;
  }

  .heroOrbitTop { top: 1.28rem; }
  .heroOrbitBottom { top: 3.32rem; }
  .hero .swiper-button-prev { right: .78rem; }
  .hero .swiper-button-next { right: .2rem; }
  .hero .swiper-button-prev,
  .hero .swiper-button-next { bottom: .24rem; }
  .scrollDown { display: none; }

  .sectionHeading h2 { font-size: clamp(22px, .3rem, 30px); }
  .sectionHeading p { font-size: clamp(14px, .18rem, 18px); line-height: 1.5; }

  .products,
  .solutions,
  .news,
  .about,
  .partners,
  .newsExperience {
    min-height: 0;
    padding: .5rem 0;
  }

  .aboutImage img{
    display: none;
  }

  .aboutText article{
    width: 100%;
  }

  .products::before,
  .products::after { top: 2.7rem; }

  .productPanel {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: .3rem;
  }

  .productPanel canvas { display: none; }
  .productItem { min-height: 2rem; padding: .22rem; }
  .productItem:not(:last-child)::after { display: none; }
  .productItem:nth-child(odd) { border-right: .01rem solid #e5e8ed; }
  .productItem:nth-child(-n+2) { border-bottom: .01rem solid #e5e8ed; }

  .solutionMain,
  .aboutMain {
    display: block;
  }

  .solutionTabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: .1rem;
  }

  .solutionTabs button { flex: 0 0 auto; }

  .solutionSwiper {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .solutionSwiper .swiper-slide {
    width: 100%;
    opacity: 1;
  }

  .solutionCard {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: .25rem;
    display: block;
    box-sizing: border-box;
  }

  .solutionText {
    width: auto;
    margin-left: 0;
    padding: .12rem 0 .28rem;
  }

  .solutionText p {
    width: auto;
  }

  .solutionImage {
    width: 100%;
    height: 2.5rem;
    margin-top: 0;
  }

  .news .main { width: 92%; }
  .newsExperience .titleRow { display: block; }
  .newsExperience .newsImages,
  .partnerGrid { grid-template-columns: repeat(2, 1fr); }
  .newsImage { height: 2.05rem;flex: none !important  ;width: 49%; }

  .aboutText,
  .aboutImage { width: 100%; }
  .aboutImage { margin-top: .32rem; }
  .aboutStats { justify-content: flex-start; gap: .22rem; }

  .partnerIntro { width: 100%; line-height: 1.7; }
  .noticeTicker { margin-top: .28rem; }
  .noticeItem { width: 3.6rem; padding: 0 .18rem; gap: .14rem; }
  .newsCardSwiper { width: 100%; margin-top: .35rem; }
  .newsCardSwiper .swiper-slide { height: auto; }
  .newsCard,
  .newsCard:hover { height: auto; min-height: 1.65rem; padding: .2rem; }
  .newsExcerpt { display: block; }
  .newsCardPrev { left: -.08rem; }
  .newsCardNext { right: -.08rem; }
}
