/** Shopify CDN: Minification failed

Line 16:26 Unexpected "-->"
Line 77:33 Unexpected "-->"

**/
.type-banner {
  flex: 1 0 100%;
}

.footer__title {
  font-weight: bold;
  font-size: var(--typeBaseSize);
}

<!-- Testimonials section -->
.mySwiper {
                overflow-x: auto; /* Enables horizontal scroll */
                white-space: nowrap; /* Prevent cards from wrapping to the next line */
                scrollbar-width: thin; /* For modern browsers */
                -webkit-overflow-scrolling: touch;
            }
            .mySwiper::-webkit-scrollbar {
                height: 8px; /* Scrollbar height */
            }
            .mySwiper::-webkit-scrollbar-thumb {
                background-color: #ccc; /* Scrollbar thumb color */
                border-radius: 10px;
            }
            .card {
                display: inline-block; /* Ensure cards stay inline */
                white-space: normal; /* Reset text wrapping inside cards */
                margin-right: 15px; /* Space between cards */
            }

            .card-text{
                font-size: 0.8rem;
            }


            .swiper-container {
            position: relative; /* Reference point for the scrollbar */
            padding-bottom: 10px; /* Adds space below the content */
            width: 100%;
            }

            .swiper-slide {
                width: auto; /* or unset */
                /* Optional: Set max-width if needed */
                max-width: 715px; /* Adjust based on your design */
            }

            

            /* Custom scrollbar style */
            .swiper-scrollbar {
            position: absolute; /* Positioned relative to the container */
            bottom: 0; /* Place it at the bottom of the container */
            left: 0;
            width: 50%; /* Full width */
            height: 1px!important; /* Height of the scrollbar */
            background: #ddd; /* Light gray track background */
            }

            .swiper-scrollbar-drag {
            background: #000; /* Red scrollbar thumb */
            border-radius: 0;
            height: 5px;
            width: 4rem!important; /* Adjust the width of the red thumb (shorter than the full scrollbar) */
            margin-top: -2px;
            }

            .swiper-slide a{
                color: #000;
                text-underline-offset: 2px;
            }
<!-- End of Testimonials section -->