.solutions_main {
  padding: 13rem 0 7.4rem;
}
.solutions_main .items {
  max-width: 192rem;
  margin: 7.6rem auto 0;
}
.solutions_main .items .hover_list {
  gap: 0.8rem;
  display: flex;
  counter-reset: item;
}
.solutions_main .item {
  flex: 1;
  height: 100%;
  display: block;
  overflow: hidden;
  padding-top: 3.4rem;
  transition: all 0.5s;
  background: url(../images/solution-item-bg1.svg) no-repeat center / cover;
  counter-increment: item;
  position: relative;
  z-index: 2;
}
.solutions_main .item::before,
.solutions_main .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s;
  background: url(../images/solution-item-bg1.svg) no-repeat center / cover;
}
.solutions_main .item::after {
  opacity: 0;
  background-image: url(../images/solution-item-bg2.svg);
}
.solutions_main .item.active {
  flex: 2.4216;
  background-image: url(../images/solution-item-bg2.svg);
}
.solutions_main .item.active::after {
  opacity: 1;
}
.solutions_main .item.active .img::before {
  opacity: 1;
}
.solutions_main .item.active .img img {
  transform: translate(-50%, -50%);
}
.solutions_main .item.active .info {
  transform: translate(0);
}
.solutions_main .item.active .info h3 {
  color: #fff;
}
.solutions_main .item.active .info p {
  opacity: 1;
  transition: all 0.3s 0.5s;
}
.solutions_main .item.active .info::before {
  color: rgba(255, 255, 255, 0.06);
  transform: translateX(-20%);
  bottom: -13.461538%;
}
.solutions_main .item.active .info::after {
  opacity: 1;
}
.solutions_main .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.03);
}
.solutions_main .item:hover .info::after {
  transform: scale(1.1);
}
.solutions_main .item .img {
  position: relative;
  z-index: 2;
  height: 61.8rem;
}
.solutions_main .item .img::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 63.754045%;
  opacity: 0;
  transition: all 0.3s;
  background: url(../images/solution-item-cir.svg) no-repeat center / contain;
}
.solutions_main .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + var(--offset, 0%)), -50%);
  width: 71.2rem;
  height: 100%;
}
.solutions_main .item .info {
  height: 26rem;
  position: relative;
  text-align: center;
  padding: 0 4.5rem 4.6rem;
  margin-top: -1.2rem;
  transform: translateY(18.461538%);
  transition: all 0.5s;
}
.solutions_main .item .info h3 {
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1.294118;
  transition: all 0.3s;
}
.solutions_main .item .info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.8rem;
  line-height: 3rem;
  opacity: 0;
  margin-top: 1.2rem;
  transition: all 0.3s;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solutions_main .item .info::before {
  content: counter(item, decimal-leading-zero);
  color: #e8e8e8;
  font-size: 12rem;
  font-weight: 700;
  transition: all 0.5s;
  position: absolute;
  right: 0;
  bottom: 5%;
  transform: translateX(5%);
}
.solutions_main .item .info::after {
  content: '';
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  margin: 2.2rem auto 0;
  transition: all 0.3s;
  opacity: 0;
  background: url(../images/arrow-line-r-w.svg) no-repeat center / 33% var(--primary);
}
@media screen and (max-width: 768px) {
  .solutions_main {
    padding: 50px 0 30px;
  }
  .solutions_main .items {
    margin-top: 30px;
  }
  .solutions_main .item {
    padding-top: 15px;
  }
  .solutions_main .item .img {
    height: 260px;
  }
  .solutions_main .item .img img {
    width: 260px;
  }
  .solutions_main .item .info {
    height: 200px;
    padding: 15px 15px 20px;
  }
  .solutions_main .item .info::before {
    font-size: 70px;
  }
  .solutions_main .item .info::after {
    width: 30px;
    height: 30px;
  }
  .solutions_main .item .info h3 {
    font-size: 18px;
  }
  .solutions_main .item .info p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 576px) {
  .solutions_main .items {
    padding: 0 20px;
  }
  .solutions_main .items .hover_list {
    display: grid;
  }
  .solutions_main .item {
    height: auto;
  }
  .solutions_main .item.active .info p {
    color: rgba(255, 255, 255, 0.85);
  }
  .solutions_main .item .info {
    height: auto;
    transform: translate(0);
  }
  .solutions_main .item .info::before {
    font-size: 40px;
  }
  .solutions_main .item .info::after {
    opacity: 1;
  }
  .solutions_main .item .info p {
    color: var(--text);
    opacity: 1;
  }
}
