.banner-1 .banners-top ul {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.banner-1 .banners-top li {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  aspect-ratio: 150 / 103;
  overflow: hidden;
}

.banner-1 .banners-top li:hover {
  transform: translateY(-5px);
}

.banner-1 .banners-top li a {
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-1 .banners-top li a img {
  width: 100%;
  border-radius: 5px;
}

.banner-1 .banners-bottom ul {
  grid-template-columns: repeat(7, 150px);
  margin-top: 20px;
}

.banner-1 .banners-bottom li {
  height: 150px;
  width: 151px;
  background-color: var(--first-color);
  transition: all 0.1s ease-in-out;
  padding: 0;
}

.banner-1 .banners-bottom li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.banner-1 .banners-bottom li a:hover {
  transform: translateY(-10px);
}

.banner-1 .text-product {
  position: absolute;
  z-index: 2;
}

@media (max-width: 1023px) {
  .banner-1 .banners-top {
    overflow-x: auto;
  }

  .banner-1 .banners-top ul {
    grid-template-columns: repeat(3, 1fr);
    width: max-content;
  }
}
