/*============================================================================================
   Start Product Section CSS
==============================================================================================*/
.product-section.style-2 .product-wrapper {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}
.product-section.style-2 .banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 1rem;
  overflow: hidden;
  min-height: 21rem;
}
.product-section.style-2 .banner figure img {
  display: block;
  width: 100%;
}
.product-section.style-2 .banner .banner-content {
  position: relative;
  z-index: 1;
}
.product-section.style-2 .banner .banner-content a:not(.btn) {
  color: inherit;
}
.product-section.style-2 .banner .banner-content a:not(.btn).active,
.product-section.style-2 .banner .banner-content a:not(.btn):hover {
  color: var(--secondary-color);
}
.product-section.style-2 .banner .banner-info {
  line-height: 1.45;
  margin-bottom: 1rem;
}
.product-section.style-2 .banner-divider {
  width: 4rem;
  height: 0.4rem;
  border: 0;
  margin-left: 0;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .product-section.style-2 .product-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
}


/*============================================================================================
   End Product Section CSS
==============================================================================================*/
