/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 24:0 Unexpected "<"
Line 72:0 Unexpected "<"

**/


/* CSS from section stylesheet blocks */
<style>
  .simple-image-text {
    text-align: center;
  }

  .simple-image-text img {
    width: 100%;
    height: auto;
  }

  .simple-image-text__caption {
    margin-top: 10px;
  }
</style>
<style>
  .simple-slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .simple-slideshow__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
  }

  .simple-slideshow__container {
    display: flex;
    transition: transform 0.3s ease;
  }

  .simple-slideshow__item {
    flex: 1 0 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
  }

  .simple-slideshow__item img {
    width: 100%;
    height: auto;
  }

  .simple-slideshow__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
  }

  .simple-slideshow__arrow--left {
    left: 10px;
  }

  .simple-slideshow__arrow--right {
    right: 10px;
  }
</style>