.products-cate {
  padding: 30px 0;
}

.products-cate .title {
  margin-bottom: 15px;
}

.products-cate .item {
  position: relative;
}

.products-cate .item:not(:last-child) {
  margin-bottom: 30px;
}

.products-cate .info-group {
  padding: 30px 20px;
  color: var(--sub-color);
  background: rgba(28, 64, 62, .65);
}

.products-cate .tit {
  margin-bottom: 11px;
}

.products-cate .info {
  line-height: 30px;
  margin-bottom: 15px;
}

.products-cate .btn {
  width: 150px;
  padding: 7px 15px;
  border-radius: 25px;
  color: var(--style-color);
  background: var(--sub-color);
}

@media (min-width: 992px) {
  .products-cate .info-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 502px;
  }

  .products-cate .item:nth-child(odd) .info-group {
    right: 30px;
  }

  .products-cate .item:nth-child(even) .info-group {
    left: 30px;
  }
}

@media (min-width: 1200px) {
  .products-cate {
    padding: 60px 0;
  }

  .products-cate .title {
    margin-bottom: 30px;
  }

  .products-cate .item:not(:last-child) {
    margin-bottom: 60px;
  }

  .products-cate .info-group {
    padding: 55px 40px 59px;
  }

  .products-cate .item:nth-child(odd) .info-group {
    right: 60px;
  }

  .products-cate .item:nth-child(even) .info-group {
    left: 60px;
  }

  .products-cate .info {
    margin-bottom: 19px;
  }

  .products-cate .btn {
    padding-top: 12px;
    padding-bottom: 12px;
    transition: background .3s;
  }

  .products-cate .btn:hover {
    background: #fff;
  }
}

@media (min-width: 1440px) {
  .products-cate {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .products-cate .title {
    margin-bottom: 53px;
  }

  .products-cate .info-group {
    padding-left: 64px;
    padding-right: 63px;
  }

  .products-cate .item:nth-child(odd) .info-group {
    right: 80px;
  }

  .products-cate .item:nth-child(even) .info-group {
    left: 80px;
  }
}