@charset "utf-8";

@media only screen and (max-width: 767px) {
  .ms-layer {
    transition: all 0.3s;
    transform: scale(2);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 767px) {
  .index-products {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    place-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .index-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .index-products-pic {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    width: 70%;
    margin: 0 auto;
  }
}

.index-products img {
  filter: invert(22%) sepia(45%) saturate(1415%) hue-rotate(171deg)
    brightness(97%) contrast(87%);
}

.index-products ul {
  width: 100%;
  list-style: none;
}
.index-products ul li {
  width: 100%;
  padding: 0.5vw 0;
}
.index-products ul li a {
  width: 100%;
  color: var(--primary-color-800);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}

.index-products ul li img {
  width: clamp(40px, 5.5vw, 60px);

}


.index-products ul li:hover img {
  transition: 2s;
  transform: rotateY(360deg);
}
