.jag {  display: grid;
    grid-template-columns: 1fr;
    /* grid-template-rows: 2fr 1fr 1fr; */
    grid-template-rows: 2fr 1fr 0.5fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "."
      "."
      ".";
  }

/* .gridcart {  display: grid;
  grid-template-columns: 3fr 3fr 1fr 1fr 1.5fr 2fr;
  gap: 0px 2px;
  grid-auto-flow: row;
} */
.gridjag {  display: grid;
  grid-template-columns: 1fr 3fr; 
  gap: 0px 4px;
  grid-auto-flow: row;
}
.grid2filas {  display: grid;
  grid-template-rows: 0.75fr 3fr;
  grid-auto-columns: 1fr;
  gap: 4px 4px;
  grid-auto-flow: row;
  grid-template-areas:
    ""
    "";
}
.gridjag1f {  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-auto-columns: 1fr;
  gap: 4px 4px;
  grid-auto-flow: row;
}


.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}