/* Keep all four employment-solution steps visible without dragging. */
.solution {
  padding: 100px 0;
}

.solution .solution_wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
}

.solution .left_con {
  flex: 0 0 390px;
  width: 390px;
}

.solution .solutionList_wrap {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  overflow: visible;
}

.solution .solutionList {
  width: 100%;
  overflow: visible;
  cursor: default;
}

.solution .solutionList .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  height: auto;
  transform: none !important;
}

.solution .solutionList .item.swiper-slide {
  display: flex;
  width: 100% !important;
  height: 255px;
  margin: 0;
  padding: 34px 32px;
  border-radius: 18px;
  background-size: 82px auto;
  background-position: right 24px bottom 26px;
}

.solution .solutionList .item.step4 {
  background-size: 88px auto;
  background-position: right 20px bottom 24px;
}

.solution .solutionList .item .title {
  margin-top: 14px;
}

.solution .solutionList .item .title p {
  font-size: 22px;
}

.solution .solutionList .item .btm {
  max-width: calc(100% - 86px);
}

.solution .solutionList .item .txt {
  font-size: 15px;
}

@media (max-width: 1199px) {
  .solution {
    padding: 80px 0;
  }

  .solution .solution_wrap {
    flex-wrap: wrap;
    gap: 40px;
  }

  .solution .left_con,
  .solution .solutionList_wrap {
    flex: 0 0 100%;
    width: 100%;
  }

  .solution .left_con::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .solution {
    padding: 64px 0;
  }

  .solution .solutionList .swiper-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution .solutionList .item.swiper-slide {
    min-height: 220px;
    height: auto;
    padding: 28px 24px;
  }

  .solution .solutionList .item .btm {
    max-width: calc(100% - 78px);
  }
}
