@charset "utf-8";
/* CSS Document */
.parallax {
  background: url(/content/dam/casio/global/casio-watches/sep2026/contents/product/oceanus/ocw-p3000/parallax.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 2 / 0.5;
}
.layout-grid > .cmp-container > .aem-Grid.aem-Grid::before, .layout-grid > .cmp-container > .aem-Grid.aem-Grid::after {
  content: none;
  display: none;
}
.layout-grid > .cmp-container > .aem-Grid {
  display: grid;
  justify-content: center;
}
.layout-grid.pc3 > .cmp-container > .aem-Grid {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .parallax {
    aspect-ratio: 3 / 2;
  }
  .layout-grid > .cmp-container > .aem-Grid {
    grid-template-columns: 1fr;
  }
}