.hiw {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  /* padding: 32px; */
  /* background-color: var(--innerBg2); */
  /* background: linear-gradient(
        to right,
        rgba(134, 138, 255, 0.3) 0%,
        rgba(18, 203, 163, 0.3) 100%
    ); */
  border-radius: var(--brad);
  /* #868bff 0%,
    #64aee7 50%,
    #12cba3 100% */
  /* (#252527, #252527) */
  gap: 48px;
}
.hiw::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--innerBg);
  width: 100%;
  height: 100%;
  filter: blur(64px);
  border-radius: var(--brad);
}

.hiw > div {
  flex: 1 1 50%;
}
.hiw > div:first-child {
  flex: 1 1 50%;
}
.hiwRev {
  flex-direction: row-reverse;
}
.hiwRev > div:first-child > div {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.hiw > div:first-child > a {
  max-width: 40%;
  min-width: 312px;
}
.hiw > div:first-child > div a {
  flex: 1 0 20%;
}

.hiw_swiper {
  border-radius: var(--brad);
  overflow: hidden;
  /* max-height: 640px; */
}
.hiw_swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  gap: 6px;
  max-width: 80%;
}
.hiw_swiper .swiper-slide img {
  /* object-position: top; */
}
.hiw_swiper .swiper-slide > * {
  flex: 1 1 50%;
}

@media (max-width: 768px) {
  .hiw {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    padding: 0;
    gap: 14px;
  }
  .hiw > div {
    width: 100%;
    flex: 1 1 100% !important;
  }
  .hiw > div:first-child {
    margin-top: 24px;
  }
  .hiw > div:first-child > div {
    flex-direction: column;
  }
  .hiw > div:first-child > a {
    max-width: 100%;
  }
}
