.infolio-panel-slider {
  width: 300vw;
  min-height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  padding-left: 100px;
  .text{
    .text-bg {
      position: absolute;
      top: 80px;
      left: 150px;
      margin-bottom: 0.2rem;
      margin-top: 0;
    }
  }
  .panel {
    a {
      display: inline-block;
      text-decoration: none;
    }
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    .item {
      position: relative;
      width: calc(50vw - 80px);
      .img {
        height: 480px;
        min-height: 50vh;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
      .plink {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }
}
@media screen and (max-width: 992px) {
  .infolio-panel-slider {
    width: 100%;
    min-height: auto;
    height: auto;
    display: block;
    padding: 70px 0 120px;
    .panel {
      display: block;
      padding: 0 15px !important;
      .item {
        width: 100%;
        margin-top: 50px;
      }
    }
  }
}