/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.product-list {
  padding-top: 20px;
  padding-bottom: 70px;
}
.product-list.product-list-dark {
  background-color: #2a2f37;
}
.product-list .nav-container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product-list .info-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-list nav {
  font-size: 14px;
  color: #4a4a4a;
}
.product-list .info-list {
  padding-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-list .item {
  width: 300px;
  margin-bottom: 80px;
}
.product-list .item-img {
  width: 300px;
  height: 190px;
  -webkit-clip-path: polygon(0% 20%, 20% 0%, 100% 0%, 100% 100%, -0% 100%);
  clip-path: polygon(0% 16%, 12% 0%, 100% 0%, 100% 100%, -0% 100%);
}
.product-list .item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-list .item-name {
  font-size: 18px;
  font-weight: bold;
  color: #2a2f37;
  margin-top: 10px;
  margin-bottom: 6px;
}
.product-list .item-description {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 48px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.product-list .item-link {
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #4a4a4a;
  border-bottom: 1px solid #c3c3c3;
  margin-top: 28px;
}
.product-list .arrow {
  display: inline-block;
  background-image: url(../img/icon/arrow_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 8px;
  height: 20px;
}
.product-list .item-link:hover .arrow {
  background-image: url(../img/icon/arrow_icon_h.svg);
}
.product-list .item-link:hover {
  color: #014e98;
}
.product-list .item-link .more-icon {
  width: 8px;
  height: 20px;
  display: block;
  margin-right: 4px;
  background-image: url(../img/icon/arrow_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product-list .item-link:hover {
  color: #014e98;
}

.product-list.product-list-dark .item-link:hover {
  color: #ffc408;
}

.product-list.product-list-dark .item-description {
  color: #fff;
}
.product-list.product-list-dark .item-name {
  color: #ffc408;
}
.product-list.product-list-dark .item-link {
  color: #fff;
}

.product-list.product-list-dark .arrow {
  display: inline-block;
  background-image: url(../img/icon/arrow_icon2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 8px;
  height: 20px;
}
.product-list.product-list-dark .item-link:hover .arrow {
  background-image: url(../img/icon/arrow_icon_h2.svg);
}
