#products,
#products-responsive {
  padding: 56px 0;
}
#products .container.row,
#products-responsive .container.row {
  gap: 24px;
  justify-content: space-between;
}

.card-products {
  width: 30%;
  border-radius: var(--radius-md);
}
.card-products img {
  border-radius: var(--radius-md);
}

#responsive-products {
  margin-top: 56px;
}

#responsive-products .slider-nav {
  top: calc(40% - (var(--spacing-xg) / 2) - var(--spacing-sm));
}

#products .card-products-text,
#responsive-products .card-products-text {
  background: #ffffff;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin: 0 auto;
  width: 83%;
  padding: 24px;
  text-align: center;
  top: -50px;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1;
}

#products .card-products-text h3,
#responsive-products .card-products-text h3 {
  font-size: 24px;
}

.card-products::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 340px;
  top: 0;
  background: transparent;
  display: block;
  transition: var(--transition-speed);
  border-radius: var(--radius-md);
}
.card-products:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
