/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 48:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:crunchislideshow (INDEX:0) */
<style>
  .slideshow {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fade 15s infinite;
  opacity: 0;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {opacity: 0;}
  20% {opacity: 1;}
  33% {opacity: 1;}
  53% {opacity: 0;}
  100% {opacity: 0;}
}
</style>
/* END_SECTION:crunchislideshow */

/* START_SECTION:multi-column (INDEX:70) */
#background_image {
background-image:url('{{ section.settings.background_image.src | img_url: 'master' }}');
background-size: cover;
}
/* END_SECTION:multi-column */