/*--------------------------------------------------
   PRODUCT LIST 1
--------------------------------------------------*/
#product-list-1{
  background:#fff;
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}
#product-list-1 .webgene-item .blogImgControl{
  padding: 0 0 75.5%;
}
#product-list-1 .webgene-item .item-text-area .code{
  color:#7e7e7e;
  font-size:14px;
}
#product-list-1 .webgene-item .item-text-area h2{
  font-size:16px;
  font-weight:700;
}
#product-list-1 .webgene-pagination{
  width: 100%;
  padding:60px 20px 20px;
}
#product-list-1 .webgene-pagination ul{
  list-style:none;
  display:flex;
  justify-content: center;
  gap: 1rem;
  padding-left: 0;
}
#product-list-1 .webgene-pagination ul li.number{
  background:#f9f9f9;
  width:40px;
  height:40px;
  line-height:40px;
  text-align:center;
  border-radius:50%;
}
#product-list-1 .webgene-pagination ul li a{
  color:#333;
}
#product-list-1 .webgene-pagination ul li.selected{
  background:#efefef;
  font-weight:700;
}
#product-list-1 .webgene-pagination ul li.prev,
#product-list-1 .webgene-pagination ul li.next{
  line-height:40px;
  text-align:center;
}
#product-list-1 .webgene-pagination ul li.prev::before{
  content:'<< ';
}
#product-list-1 .webgene-pagination ul li.next::after{
  content:' >>';
}

@media screen and (max-width: 767px){
  #product-list-1{
    flex-direction:column;
    padding:40px 20px;
  }
  #product-list-1 .webgene-item {
    width:100%;
    text-align: center;
  }
  #product-list-1 .webgene-item .item-text-area{
    padding:10px 0;
  }
}
@media screen and (min-width: 768px){
  #product-list-1{
    padding:40px;
  }
  #product-list-1 .webgene-item{
    width: calc(25% - 20px);
  }
  #product-list-1 .webgene-item .item-text-area{
    padding:10px;
  }
}
