/** Shopify CDN: Minification failed

Line 45:0 Unexpected "<"
Line 129:0 Unexpected "<"
Line 139:17 Expected identifier but found whitespace
Line 139:19 Unexpected "{"
Line 139:28 Expected ":"
Line 164:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-carousel-wrapper {
    padding: 30px 0;
  }
  .swiper-slide {
    text-align: center;
    padding: 10px;
  }
  .carousel-image-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
  .carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-heading {
    margin: 10px 0;
  }
  .carousel-description {
    margin: 10px 0;
  }
  .carousel-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    margin-top: 10px;
  }
<style>
  .custom-split-section {
    padding: 40px 20px;
  }

  .custom-split-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .split-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .split-left,
  .split-right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .custom-btn {
    display: inline-block;
    padding: 10px 25px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
  }

  .aspect-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .aspect-wrapper img,
  .aspect-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aspect-adapt img,
  .aspect-adapt video {
    position: static;
    width: 100%;
    height: auto;
  }

  .aspect-square { padding-top: 100%; }
  .aspect-portrait { padding-top: 133.33%; }
  .aspect-asos { padding-top: 125%; }
  .aspect-9-15 { padding-top: 166.67%; }
  .aspect-9-14 { padding-top: 155.56%; }

  .font-small { font-size: 1rem; }
  .font-medium { font-size: 1.25rem; }
  .font-large { font-size: 1.75rem; }
  .font-xlarge { font-size: 2.25rem; }

  @media screen and (max-width: 768px) {
    .split-wrapper {
      flex-direction: column;
    }
    .split-left, .split-right {
      width: 100%;
    }
  }
</style>
<style>
  .responsive-image-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .responsive-image-banner .image-wrapper {
    aspect-ratio: {{ section.settings.aspect_ratio }};
  }

  @media screen and (max-width: 749px) {
    .responsive-image-banner .desktop-image { display: none; }
  }

  @media screen and (min-width: 750px) {
    .responsive-image-banner .mobile-image { display: none; }
  }

  .layout-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .layout-wrapped {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .layout-full-width {
    width: 100%;
  }
</style>