@charset "utf-8";
.in-banner{
  width: 100%;
  position: relative;
  z-index:998;
  overflow: hidden; 
}
.in-banner .swiper-container {
  width: 100%;
  height: 100%;
  display: block;
}
.in-banner .swiper-slide {
  position: relative;
}
.in-banner .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.in-banner .swiper-slide .word{
  width: 100%;
  position: absolute;
  color: #fff;
  top:300px;
  left: 0;
  display: flex;
  flex-direction: column;
}
.in-banner .swiper-slide .word .wrap{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.in-banner .swiper-slide .word .title{
  font-size: 54px;
  font-weight: 700;
  position: relative;
}
.in-banner .swiper-slide .word .title:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background: #006428;
}
.in-banner .swiper-slide .word .title span{
  position: relative;
  z-index: 1;
}
.in-banner .swiper-slide .word .content{
  font-size: 24px;
  margin-top: 20px;
}
.in-banner .swiper-slide .word .button{
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.in-banner .swiper-slide .word .button a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
  gap: 20px;
  padding: 10px 30px;
}
.in-banner .swiper-slide .word .button a:nth-child(1){
  background: #006428;
}
.in-banner .swiper-slide .word .button a:nth-child(2){
  border: 2px #fff solid;
}
.in-banner .swiper-pagination{
  position: static;
  width: auto;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  margin-bottom: 40px;
}
.in-banner .swiper-pagination .swiper-pagination-bullet{
  width: 36px;
  height: 1px;
  background: #fff;
  border-radius: 0;
  opacity: 1;
}
.in-banner .swiper-pagination .swiper-pagination-bullet-active{
  height: 3px;
  background: #006428;
}
@media (max-width: 1600px) {
  .in-banner .swiper-slide .word{
    top: 200px;
  }
  .in-banner .swiper-slide .word .title{
    font-size: 48px;
  }
  .in-banner .swiper-slide .word .title:after{
    height: 16px;
    bottom: 4px;
  }
}
@media (max-width: 1360px) {
  .in-banner{
    height: calc(100% - 80px);
  }
  .in-banner .swiper-slide .word{
    top: 100px;
  }
  .in-banner .swiper-slide .word .title{
    font-size: 42px;
  }
  .in-banner .swiper-slide .word .title:after{
    height: 16px;
    bottom: 4px;
  }
  .in-banner .swiper-slide .word .content{
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .in-banner{
    height: calc(100% - 60px);
  }
  .in-banner .swiper-slide .word{
    top: 20%;
  }
  .in-banner .swiper-slide .word .title{
    font-size: 32px;
  }
  .in-banner .swiper-slide .word .title:after{
    height: 16px;
    bottom: 4px;
  }
  .in-banner .swiper-slide .word .content{
    font-size: 20px;
    margin-top: 2%;
  }
  .in-banner .swiper-slide .word .button{
    margin-top: 5%;
  }
  .in-banner .swiper-pagination{
    margin-bottom: 4%;
  }
}
@media (max-width: 750px) {
  .in-banner{
    height: calc(100% - 50px);
  }
  .in-banner .swiper-slide .word .title{
    font-size: 24px;
  }
  .in-banner .swiper-slide .word .title:after{
    height: 10px;
  }
  .in-banner .swiper-slide .word .content{
    font-size: 14px;
  }
  .in-banner .swiper-slide .word .button,
  .in-banner .swiper-slide .word .button a{
    gap: 10px;
  }
  .in-banner .swiper-slide .word .button a{
    padding: 5px 20px;
  }
  .in-banner .swiper-slide .word .button i{
    font-size: 12px;
  }
}

.in-advantage{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
}
.in-advantage .list{
  width: 100%;
  background: rgba(0, 0, 0, .3);
  padding: 60px 0;
  overflow: hidden;
}
.in-advantage .list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
.in-advantage .list li{
  width: calc(25% - 37.5px);
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 40px 30px;
}
.in-advantage .list .icon{
  flex: 1;
}
.in-advantage .list .icon img{
  max-width: 100%;
  display: block;
}
.in-advantage .list .word{
  width: 60%;
}
.in-advantage .list .word .word-1{
  font-size: 32px;
  font-weight: 500;
}
.in-advantage .list .word .word-2{
  line-height: 1.5;
}
.in-advantage .list .word .word-2 .text-1{
  display: flex;
  align-items: center;
  gap: 10px;
}
.in-advantage .list .word .word-2 .text-1:after{
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #006428;
}
.in-advantage .list .word .word-2 .text-2{
  font-size: 14px;
}
@media (max-width: 1600px) {
  .in-advantage .list ul{
    gap: 40px;
  }
  .in-advantage .list li{
    width: calc(25% - 30px);
  }
  .in-advantage .list .word .word-1{
    font-size: 24px;
  }
}
@media (max-width: 1360px) {
  .in-advantage .list ul{
    gap: 30px;
  }
  .in-advantage .list li{
    width: calc(25% - 22.5px);
  }
  .in-advantage .list .word .word-1{
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .in-advantage .list{
    padding: 6% 0;
  }
  .in-advantage .list ul{
    gap: 20px;
  }
  .in-advantage .list li{
    width: calc(50% - 10px);
    padding: 4%;
  }
  .in-advantage .list .icon{
    flex: none;
  }
  .in-advantage .list .icon img{
    max-width: 60px;
  }
  .in-advantage .list .word{
    flex: 1;
  }
  .in-advantage .list .word .word-1{
    font-size: 18px;
  }
  .in-advantage .list .word .word-2 .text-1:after,
  .in-advantage .list .word .word-2 .text-2{
    display: none;
  }
}
@media (max-width: 1024px) and (orientation: landscape) {
    .in-advantage .list li{
      width: calc(25% - 15px);
      padding: 2%;
    }
}
@media (max-width: 750px) {
  .in-advantage .list ul{
    gap: 10px;
  }
  .in-advantage .list li{
    width: calc(50% - 5px);
  }
  .in-advantage .list li{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    gap: 5px;
  }
  .in-advantage .list .icon,
  .in-advantage .list .word{
    width: 100%;
  }
  .in-advantage .list .icon{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .in-advantage .list .icon img{
    max-width: 50px;
  }
  .in-advantage .list .word .word-1{
    display: none;
  }
  .in-advantage .list .word .word-2 .text-1{
    justify-content: center;
  }
}

.in-products{
  margin-top: 120px;
  overflow: hidden;
}
.in-products .title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.in-products .title .title-1{
  display: flex;
  align-items: center;
  color: #006428;
}
.in-products .title .title-1 span{
  display: block;
  width: 3px;
  height: 14px;
  background: #006428;
  margin-left: 4px;
  transform: skew(-20deg);
}
.in-products .title .title-1 span:nth-child(1){
  margin-left: 10px;
}
.in-products .title .title-2{
  font-size: 48px;
  font-weight: 600;
}
.in-products .list,
.in-products .button{
  margin-top: 50px;
}
.in-products .list .swiper-slide{
  background: #fafafa;
}
.in-products .list .swiper-slide .word{
  border-bottom: 1px #eee solid;
  margin:0 20px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.in-products .list .swiper-slide .word .lt{
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.in-products .list .swiper-slide .word .rt{
  width: 16px;
}
.in-products .list .swiper-slide .image{
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.in-products .list .swiper-slide .image .box{
  width: 100%;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  padding:20px;
  overflow: hidden;
}
.in-products .list .swiper-slide .image .box img{
  background: #fff;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.in-products .list .swiper-slide a:hover .image .box img{
  transform: scale(1.03);
}
.in-products .button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.in-products .button .swiper-button-prev,
.in-products .button .swiper-button-next{
  position: static;
  margin:0;
  background: #f6f6f6;
  padding:10px 30px;
  color: #000;
  height: auto;
}
.in-products .button .swiper-button-prev:after,
.in-products .button .swiper-button-next:after{
  display: none;
}
.in-products .button .swiper-button-prev i{
  transform: rotate(180deg);
}
.in-products .button .center{
  background: #006428;
  color: #fff;
  padding:10px 40px;
}
.in-products .list {
  width: 100%;
}
@media (max-width: 1600px) {
  .in-products .title .title-2{
    font-size: 42px;
  }
}
@media (max-width: 1360px) {
  .in-products .title .title-2{
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .in-products{
    margin-top: 10%;
  }
  .in-products .title .title-2{
    font-size: 32px;
  }
  .in-products .list, 
  .in-products .button{
    margin-top: 5%;
  }
}
@media (max-width: 750px) {
  .in-products .title .title-2{
    font-size: 20px;
  }
  .in-products .button .swiper-button-prev, 
  .in-products .button .swiper-button-next,
  .in-products .button .center{
    padding: 10px 20px;
  }
  .in-products .button .center i,
  .in-products .button .swiper-button-prev i,
  .in-products .button .swiper-button-next i{
    font-size: 14px;
  }
}

.in-why{
  width: 100%;
  padding: 120px 0;
  margin-top: 120px;
  background: url(../images/in-bg2.jpg) repeat;
  color: #fff;
  overflow: hidden;
}
.in-why .title{
  padding-top: 40px;
  position: relative;
}
.in-why .title:before{
  content: "";
  display: block;
  width: 50px;
  background: #fff;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.in-why .title h1{
  font-size: 60px;
  line-height: 60px;
}
.in-why .title h2{
  margin-top: 20px;
}
.in-why .list{
  margin-top: 100px;
}
.in-why .list ul{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.in-why .list li{
  width: calc(33.333333% - 40px);
}
.in-why .list .number{
  font-size: 64px;
  line-height: 64px;
}
.in-why .list .word{
  margin-top: 50px;
}
.in-why .list .word .word-1{
  font-size: 30px;
  font-weight: 600;
}
.in-why .list .word .word-2{
  margin-top: 10px;
}
.in-why .list .image{
  margin-top: 50px;
}
.in-why .list .image img{
  width: 100%;
  display: block;
}
@media (max-width: 1600px) {
  .in-why .title h1,
  .in-why .list .number{
    font-size: 54px;
    line-height: 54px;
  }
  .in-why .list .word .word-1{
    font-size: 28px;
  }
}
@media (max-width: 1360px) {
  .in-why .title h1,
  .in-why .list .number{
    font-size: 42px;
    line-height: 42px;
  }
  .in-why .list .word .word-1{
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .in-why{
    margin-top: 10%;
    padding: 10% 0;
  }
  .in-why .title h1,
  .in-why .list .number{
    font-size: 32px;
    line-height: 32px;
  }
  .in-why .title{
    padding-top: 4%;
  }
  .in-why .title h2{
    margin-top: 10px;
  }
  .in-why .list{
    margin-top: 10%;
  }
  .in-why .list ul{
    gap: 24px;
  }
  .in-why .list li{
    width: calc(50% - 12px);
  }
  .in-why .list .word,
  .in-why .list .image{
    margin-top: 10px;
  }
  .in-why .list .word .word-1{
    font-size: 20px;
  }
  .in-why .list .word .word-2{
    margin-top: 10px;
  }
}
@media (max-width: 750px) {
  .in-why .title h1,
  .in-why .list .number{
    font-size: 20px;
    line-height: 24px;
  }
  .in-why .list li{
    width: 100%;
  }
  .in-why .list .word .word-1{
    font-size: 16px;
  }
}

.in-about{
  width: 100%;
  padding-right: 11%;
  background: url(../images/in-bg2.jpg) repeat;
  overflow: hidden;
}
.in-about .box{
  width: 100%;
  background: url(../images/in-bg3.jpg) #fff no-repeat right;
  padding: 120px 0;
  padding-left: 12.25%;
  overflow: hidden;
}
.in-about .box .about-box{
  display: flex;
  padding-right: 6%;
  justify-content: space-between;
  gap: 60px;
}
.in-about .box .about-box .image{
  width: 50%;
}
.in-about .box .about-box .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.in-about .box .about-box .word{
  flex:1;
}
.in-about .box .about-box .word .title{
  font-size: 42px;
  font-weight: 700;
}
.in-about .box .about-box .word .title span{
  color: #006428;
}
.in-about .box .about-box .word .content{
  margin-top: 20px;
}
.in-about .box .about-box .word .content h1{
  font-weight: 700;
  font-size: 20px;
}
.in-about .box .about-box .word .content h1 span{
  color: #006428;
}
.in-about .box .about-box .word .content h2{
  margin-top: 20px;
}
.in-about .box .about-box .word .public-more{
  margin-top: 60px;
}
.in-about .box .number-box{
  display: flex;
  padding-right: 6%;
  justify-content: space-between;
  margin-top: 100px;
}
.in-about .box .number-box .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.in-about .box .number-box .item .number span:nth-child(1){
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}
.in-about .box .number-box .line{
  width: 1px;
  background: #eee;
}
@media (max-width: 1600px) {
  .in-about{
    padding-right: 8%;
  }
  .in-about .box{
    padding-left: 9%;
  }
  .in-about .box .about-box .word .title{
    font-size: 36px;
  }
  .in-about .box .number-box .item .number span:nth-child(1){
    font-size: 54px;
    line-height: 54px;
  }
}
@media (max-width: 1360px) {
  .in-about{
    padding-right: 3%;
  }
  .in-about .box{
    padding-left: 3%;
  }
  .in-about .box .about-box,
  .in-about .box .number-box{
    padding-right: 3%;
  }
  .in-about .box .about-box .word .title{
    font-size: 28px;
  }
  .in-about .box .about-box .word .content h1{
    font-size: 18px;
  }
  .in-about .box .number-box .item .number span:nth-child(1){
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 1024px) {
  .in-about .box{
    padding: 10% 0;
    padding-left: 3%;
  }
  .in-about .box .about-box{
    flex-direction: column;
    gap: 20px;
  }
  .in-about .box .about-box .image{
    width: 100%;
  }
  .in-about .box .about-box .word .title{
    font-size: 20px;
  }
  .in-about .box .about-box .word .content,
  .in-about .box .about-box .word .content h2{
    margin-top: 2%;
  }
  .in-about .box .about-box .word .public-more{
    margin-top: 5%;
  }
  .in-about .box .number-box{
    margin-top: 10%;
    flex-wrap: wrap;
  }
  .in-about .box .number-box .item .number span:nth-child(1){
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 750px) {
  .in-about .box .about-box .word .title{
    font-size: 18px;
  }
  .in-about .box .about-box .word .content h1{
    font-size: 16px;
  }
  .in-about .box .number-box .item .number span:nth-child(1){
    font-size: 28px;
    line-height: 28px;
  }
  .in-about .box .number-box .item{
    width: 50%;
  }
  .in-about .box .number-box .item.mt{
    margin-top: 6%;
  }
  .in-about .box .number-box .line{
    display: none;
  }
}

.in-solution{
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
}
.in-solution .title{
  padding-top: 120px;
  text-align: center;
  overflow: hidden;
}
.in-solution .title .word{
  font-size: 42px;
  font-weight: 700;
}
.in-solution .title .tab{
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 200px;
}
.in-solution .title .tab:after{
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px #cbcbcb dashed;
  position: absolute;
  left: 0;
  top: 76px;
}
.in-solution .title .tab .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.in-solution .title .tab .item .image img{
  display: block;
}
.in-solution .title .tab .item .image .green{
  display: none;
}
.in-solution .title .tab .item.active .image .green{
  display: block;
}
.in-solution .title .tab .item.active .image .gray{
  display: none;
}
.in-solution .title .tab .item .icon{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 5px #939393 solid;
  background: #fff;
  margin:30px 0 20px 0;
  position: relative;
  z-index: 1;
}
.in-solution .title .tab .item.active .icon{
  border-color: #006428;
  background: #006428;
}
.in-solution .title .tab .item .text{
  font-weight: 600;
  font-size: 18px;
}
.in-solution .title .tab .item.active .text{
  color: #006428;
}
.in-solution .content .item{
  display: none;
  position: relative;
}
.in-solution .content .item.active{
  display: block;
}
.in-solution .content .item .background{
  width: 100%;
  display: block;
}
.in-solution .content .item .word{
  width: 100%;
  position: absolute;
  top: 0;
  padding-top: 120px;
  color: #fff;
}
.in-solution .content .item .word .half{
  width: 60%;
}
.in-solution .content .item .word .word-1{
  display: flex;
  align-items: center;
  font-size: 42px;
  font-weight: 500;
  gap: 20px;
}
.in-solution .content .item .word .word-1 img{
  display: block;
}
.in-solution .content .item .word .word-2{
  font-size: 18px;
  margin: 30px 0;
}
.in-solution .content .item .word .public-more{
  margin-top: 50px;
}
@media (max-width: 1600px) {
  .in-solution .title .word,
  .in-solution .content .item .word .word-1{
    font-size: 36px;
  }
}
@media (max-width: 1360px) {
  .in-solution .title .word,
  .in-solution .content .item .word .word-1{
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .in-solution .title{
    padding-top: 10%;
  }
  .in-solution .title .word,
  .in-solution .content .item .word .word-1{
    font-size: 24px;
  }
  .in-solution .title .tab{
    margin: 5% 0;
    gap: 50px;
  }
  .in-solution .title .tab:after{
    top: 56px;
  }
  .in-solution .title .tab .item .image img{
    width: 30px;
  }
  .in-solution .content .item .word .half{
    width: 100%;
  }
  .in-solution .content .item .word .word-2{
    margin: 3% 0;
    font-size: 16px;
  }
  .in-solution .title .tab .item .icon{
    margin: 20px 0 10px 0;
  }
  .in-solution .title .tab .item .text{
    font-size: 16px;
  }
  .in-solution .content .item .background{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
  }
  .in-solution .content .item .word{
    position: relative;
    padding: 10% 0;
  }
  .in-solution .content .item .word .word-1{
    gap: 10px;
  }
  .in-solution .content .item .word .word-1 img{
    width: 30px;
  }
  .in-solution .content .item .word .public-more{
    margin-top: 5%;
  }
}
@media (max-width: 750px) {
  .in-solution .title .word,
  .in-solution .content .item .word .word-1{
    font-size: 20px;
  }
  .in-solution .title .tab .item .image img,
  .in-solution .content .item .word .word-1 img{
    width: 24px;
  }
  .in-solution .title .tab .item .icon{
    margin: 10px 0;
    width: 10px;
    height: 10px;
  }
  .in-solution .title .tab:after{
    top: 37px;
  }
  .in-solution .title .tab .item .text{
    font-size: 14px;
  }
}

.in-customer{
  width: 100%;
  box-sizing: border-box;
  padding-block: clamp(3rem, 8vw, 7.5rem);
  padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
  background: url(../images/in-bg1.jpg) #fff no-repeat center right;
  background-size: auto 100%;
}
.in-customer__head{
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 3.5rem);
  padding-inline: clamp(12px, 4vw, 24px);
}
.in-customer__title{
  font-size: clamp(1.375rem, calc(0.5rem + 3vw), 2.625rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
  line-height: 1.2;
}
.in-customer__sub{
  font-size: clamp(0.875rem, calc(0.5rem + 1.2vw), 1.125rem);
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.in-customer__rows{
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 10px);
  width: 100%;
  max-width: 100%;
}
.in-customer__row{
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
/* 两行各自有上下 padding 给阴影留白，视觉上会「叠成双倍空隙」，用负 margin 拉回行间距离 */
.in-customer__row:not(:last-child){
  margin-bottom: clamp(-20px, -2vw, -14px);
}
.in-customer__viewport{
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* 需盖住 box-shadow 的 blur+offset（约 6px + 24px），略多留 2～4px */
  padding-block: clamp(14px, 2.4vw, 28px);
  box-sizing: border-box;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
@media (min-width: 751px) {
  .in-customer__viewport{
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
}
.in-customer__track{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}
.in-customer__row--left .in-customer__track{
  animation: customer-scroll-left 48s linear 2.5s infinite backwards;
}
.in-customer__row--right .in-customer__track{
  animation: customer-scroll-right 44s linear 2.5s infinite backwards;
}
.in-customer__row:nth-child(3) .in-customer__track{
  animation-duration: 40s;
}
@media (hover: hover){
  .in-customer__row:hover .in-customer__track{
    animation-play-state: paused;
  }
}
@keyframes customer-scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@keyframes customer-scroll-right{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}
.in-customer__group{
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.625rem, 2.2vw, 1.5rem);
  padding-inline: clamp(4px, 1.2vw, 10px);
}
.in-customer__cell{
  flex: 0 0 auto;
}
.in-customer__skew{
  transform: skewX(-12deg);
  background: #fff;
  border-radius: clamp(4px, 1vw, 8px);
  box-shadow: 0 clamp(2px, 1vw, 6px) clamp(12px, 3vw, 24px) rgba(0, 0, 0, 0.08);
  padding: clamp(0.625rem, 2.2vw, 1.125rem) clamp(0.875rem, 4.5vw, 2.75rem);
}
.in-customer__inner{
  transform: skewX(12deg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(5.5rem, 24vw, 10.5rem);
  min-height: clamp(2.875rem, 9vw, 4.25rem);
}
.in-customer__inner img{
  display: block;
  max-width: min(200px, 38vw);
  max-height: clamp(2rem, 8vw, 3.75rem);
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (prefers-reduced-motion: reduce){
  .in-customer__row--left .in-customer__track,
  .in-customer__row--right .in-customer__track{
    animation: none !important;
    transform: translateX(0) !important;
  }
}
@media (max-width: 1024px) {
  .in-customer{
    background-position: top right;
    background-size: min(55vw, 420px) auto;
  }
  .in-customer__skew{
    transform: skewX(-10deg);
  }
  .in-customer__inner{
    transform: skewX(10deg);
  }
}
@media (max-width: 750px) {
  .in-customer{
    background-size: min(70vw, 320px) auto;
    background-position: top center;
  }
  .in-customer__skew{
    transform: skewX(-8deg);
  }
  .in-customer__inner{
    transform: skewX(8deg);
  }
}
@media (max-width: 480px) {
  .in-customer__skew,
  .in-customer__inner{
    transform: none;
  }
  .in-customer__inner{
    min-width: clamp(5rem, 32vw, 7.5rem);
  }
  .in-customer__inner img{
    max-width: min(160px, 42vw);
    max-height: 2.75rem;
  }
}