body {
  background: #f4f6f9;
}


/* products */
.products {
  padding: 30px 0;
}

.products .row {
  margin-bottom: -30px;
}

.products .row>div {
  margin-bottom: 30px;
}

.products .block {
  display: block;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.products .img {
  border-radius: 10px 6px 6px 10px;
  overflow: hidden;
}

.products .img img {
  width: 100%;
  aspect-ratio: 405 / 273;
}

.products .info-group {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 64.27%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  background: #fff;
  border-radius: 0 0 50% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.products .icon {
  width: auto;
  height: 83px;
}

.products .tit {
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.products .info {
  font-size: 14px;
  color: #8e8e8e;
  line-height: 1.25;
}

@media(min-width: 1200px) {
  .products {
    padding: 60px 0;
  }

  .products .row {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -32px;
  }

  .products .row>div {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .products .img img {
    transition: all 0.9s ease-in-out;
  }

  .products .block:hover .img img {
    transform: scale(1.05);
  }

  .products .info-group {
    padding-left: 38px;
    padding-right: 38px;
  }

  .products .tit {
    margin-top: 26px;
    margin-bottom: 16px;
  }
}

@media(min-width: 1440px) {
  .products {
    padding-bottom: 80px;
  }
}