/** Shopify CDN: Minification failed

Line 296:4 Unexpected "{"
Line 296:5 Expected identifier but found "%"
Line 297:16 Expected identifier but found whitespace
Line 297:18 Unexpected "{"
Line 297:27 Expected ":"
Line 297:52 Expected ":"
Line 298:4 Unexpected "{"
Line 298:5 Expected identifier but found "%"
Line 300:4 Unexpected "{"
Line 300:5 Expected identifier but found "%"
... and 23 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Style for the error container */
.error-container {
    color: white;
    background-image: url("https://images.unsplash.com/photo-1515703407324-5f753afd8be8?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-family: 'futura-pt';
    font-weight: 900;
    padding-left: 10rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2rem;
    text-shadow: 6px 2px 4px rgba(0, 0, 0, 1);
    z-index: 2; 
  animation: fadeInForward 2s ease 0s 1 normal forwards;
}

.error-middle {
    display: flex;
    align-items:center;
    gap: 2rem;
}

.error-error {
    font-weight: 700;
    font-size: 3.25rem;
}

.error-number {
    font-size: 15rem;
}

.error-text {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.error-button {
    animation: scaleCenter 4s ease 0s 1 normal forwards;
    background-color: white;
    color: black;
  transition: all 0.3s ease-in-out;
}

  .error-button:hover {
    transform: scale(1.1) !important;
  transition: all 0.3s ease-in-out !important;
    
  }

@media (max-width: 768px) {
    .error-error {
        font-size: 2rem;
    }
    .error-number {
        font-size: 6rem;
    }
    .error-container {
        padding: 0 2rem;
    }
    .error-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .error-middle {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .error-container {
        padding: 0 2rem;
    }
}

@keyframes scaleCenter {
	0% {
		transform: scaleX(0.4);
	}

	100% {
		transform: scaleX(1);
	}
}
@keyframes fadeInForward {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px; 
    text-align: center;
    margin-top: 40px;
  }

  .about_main-image {
    max-width: 900px; 
    width: 100%;
  }

    @media (min-width: 768px) {
    .about_text {
      font-size: 19px; 
    }
  }
  
 .about_text {
    margin: 0;
    letter-spacing: .5px;
    font-size: 15px;
  }

  .about_button {
    margin: 32px 0;
  }

    @media (max-width: 768px) {
    .about_images {
      display: flex;
      flex-wrap: wrap;
    }
  }
  .about_images {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 16px;
  }

  .about_image {
    width: 162px;
  }
.brand-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
      }
      
      .brand-grid__item {
        text-align: center;
      	flex: 0 0 50%;
      	padding: 0 5px;
      }
      
      .brand-grid__item h2 { 
        font-size: 1em; 
        text-align: center; 
      }
      
      @media screen and (min-width: 600px) {
        .brand-grid__item {
          flex: 0 0 33.3%;
        }
      }
      
      @media screen and (min-width: 1024px) {
        .brand-grid__item {
          flex: 0 0 20%;
        }
      }
.brand-carousel-container {
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 1rem;
      }

      .brand-carousel {
        display: inline-block;
        animation: scroll 60s linear infinite;
        margin-top: -1rem;
        
        animation-play-state: running;
      }

      .brand-carousel:hover {
        animation-play-state: paused;
      }

       .brand-carousel img {
        width: 100px; /* Adjust this size as needed */
        height: auto;
        display: inline-block;
        margin: 0 0.5rem;
        opacity: .75;
      }

      .brand-carousel img:hover {
      transform: scale(1.15);
        opacity: 1;
        transition: all 0.3s ease-in-out;
      }

      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-195%);
        }
      }

      .brands {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .brand-carousel-link {
        text-decoration: none;
      }
      .brand-carousel-title {
        font-size: 2.25rem !important;
        padding-left: 2rem;
        font-family: Roboto, sans-serif;
        font-weight: 700;
        margin: 0;
      }

      @media (max-width: 768px) {
        .brand-carousel-title {
          font-size: 1.6rem !important;
          padding: 0;
        }
      }
.clearance {
    padding: 5px 10px;
    margin-top: 20px;
  }

  @media (min-width: 768px) {
    .clearance {
      padding: 5px 15px;
    }
  }

  @media (min-width: 1024px) {
    .clearance {
      padding: 5px 30px;
    }
  }

  .wide-grid-item:hover {
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;    
    margin-top: -1rem;
  }

  .clearance-image {
  border-radius: 5px;
  }
.headline {
    margin: 50px 0;
    padding: 25px 0;
  }

  .headline_title {
    margin-bottom: 0;
    color: black;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    line-height: 0.89;
    letter-spacing: -2px;
    font-weight: 700;
    {% if section.settings.title_size < 52 %}
      font-size: {{ section.settings.title_size }}px;
    {% else %}
      font-size: 52px;
    {% endif %}
  }
  .headline_subtitle {
    margin:0;
    padding-bottom: 18px;
    color: black;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    line-height: 0.89;
    letter-spacing: -2px;
    font-weight: 700;
    {% if section.settings.title_size < 52 %}
      font-size: {{ section.settings.title_size }}px;
    {% else %}
      font-size: 52px;
    {% endif %}
  }

  .headline_header p {
    color: black;
  }

  .paragraph_one {
    margin-bottom: 0;
    font-size: {{ section.settings.text_size }}px;
  }
  .paragraph_two {
    margin-bottom: 18px;
    font-size: {{ section.settings.text_size }}px;
  }
  @media (max-width: 768px) {
    .headline_title {
      line-height: 1; /* Adjust line height for smaller screens */
      font-size: 52px !important;
    }
    .headline_subtitle {
      line-height: 1; /* Adjust line height for smaller screens */
      font-size: 52px !important;
    }
    .headline {
      padding: 0px 10px;
    }
    .paragraph_one,
    .paragraph_two {
      font-size: {{ section.settings.text_size | divided_by: 1.5 }}px;
    }
  }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}



.mobile_banner-image,
.desktop_banner-image {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.slick-slide {
    margin: 0 12px;
  }

  .carousel_container {
    margin: 1.5rem 0;
  }

  .carousel_container-top {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
  }

  .carousel_title {
   font-size: 2.25rem !important;
      padding-left: 2rem;
    font-weight: 900;
    font-family: Roboto, sans-serif;
  
  }

  .carousel_arrows {
    display: flex;
    gap: 1rem;
  }

  .carousel_icon-left {
    /* background-color: #e5e5e5; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -4.5rem;
    right: 4.75rem;
  }
    .carousel_icon-right {
    /* background-color: #e5e5e5; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -4.5rem;
      right: 1rem;
  }

  .carousel_icon-left:hover, .carousel_icon-right:hover {
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
  }

  @media (max-width: 768px) {
    .carousel_icon-left, .carousel_icon-right {
      width: 30px;
      height: 30px;
      top: -3.5rem;
      right: 2.75rem;
    }

    .carousel_title {
      font-size: 1.6rem !important;
      padding: 0;
    }
    .icon-image-arrow {
      width: 12px !important;
    }

    .carousel_icon-right {
      right: 0.5rem;
    }
  }

  .icon-image-arrow {
    width: 18px;
  }

  .icon-image:first-child {
  padding-right: 3px;
  }

  .icon-image:last-child {
    padding-left: 3px;
    margin-left: 2px
  }

  .carousel_slides {
    display: flex;
  }

  .carousel_main-image {
    border-radius: 5px;
    width: 100%;
    height: auto;
  }

  .slick-slide img:hover {
    transform: scale(.97);
    transition: all 0.2s ease-in-out;
  }

  .image_button {
    position: relative !important;
    background-color: white;
    color: black;
    bottom:  70px;
    left: 69px;
    border-radius: 2rem !important;
    padding: 1rem 2rem;
  }

  .slick-list {
    overflow: visible;
  }
  
  @media screen and (min-width: 200px) and (max-width: 500px) {
    .carousel_main-image {
      width: 63%;
      margin: 0 auto;
      padding: 0 3px;
    }

    .image_button {
      left: 125px;
    }

    .carousel_container-top {
      margin: 1rem;
    }
    .carousel-links, .slick-active, .slick-current, .slick-slide {
      margin: 0 -5.5rem;
    }

    
  @media (min-width: 600px) {
    .carousel_icon-left, .carousel_icon-right {
      display: flex !important;
    }

    .carousel_title {
      font-size: 2rem !important;
    }
    .carousel_container-top {
      margin: 1rem 2rem;
    }
  }

  @media (min-width: 768px) {
    .carousel_container {
      margin: 1rem 0rem;
    }

    .carousel_container-top {
      margin: 1rem 2.5rem;
    }

    .carousel_title {
      font-size: 2.25rem !important;
      padding-left: 2rem;
    }
  }
  @media (min-width: 1024px) {
    .carousel_container {
      margin: 1rem 0rem;
    }

    .carousel_title {
      font-size: 2.1em !important;
    }
    .carousel_container-top {
      margin: 1rem 3rem;
    }
  }
.marquee-section {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-images-container {
  display: flex;
  position: relative;
  animation: marquee linear infinite;
}

.marquee-image {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-image[data-marquee-speed="slow"] {
  animation-duration: 30s;
}

.marquee-image[data-marquee-speed="medium"] {
  animation-duration: 20s;
}

.marquee-image[data-marquee-speed="fast"] {
  animation-duration: 10s;
}

.marquee-image[data-marquee-direction="right"] {
  transform: scaleX(-1);
  animation-direction: reverse;
}
/* Product Highlights Section Style */
    .product {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      padding: 20px;
      /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); */
    }

@media(max-width: 768px) {
  .product-highlight-bottom {
      flex-direction: column;
  }
}

    .product-highlight-title {
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-align: center;
    }

    .product-highlight-text {
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .product-highlight-bottom {
      display: flex;
      justify-content: space-between;
      margin-top: 1rem;
    }

    .product-highlight-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
      padding-top: 1rem;
    }

    .product-highlight-image {
      border-radius: 5% !important;
      width: auto;
      /* height: 275px; */
      object-fit: cover;
    }

    .product-highlight-image:hover {
      transform: scale(1.1);
      transition: all 0.3s ease-out;
    }

    .product-highlight-subtitle {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .product-highlight-button {
      background-color: black;
      color: white;
      padding: 0.7rem 1.25rem;
      border: none;
      font-weight: 600;
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .5s ease-in-out, visibility 0.5s ease-in-out;
      cursor: pointer;
      transform: translateY(50px);
    }

  .product-highlight-button-all:hover {
    background-color: red;
  }

    .product-highlight-item:hover .product-highlight-button {
      opacity: 1;
      visibility: visible;
      animation: myAnim 1s ease 0s 1 normal forwards;
    }

    .product-highlight-button-all {
      background-color: red;
      color: white;
      padding: 0.7rem 1.25rem;
      border: none;
      font-weight: 600;
      border-radius: 5px;
      margin-top: 0.5rem;
    }

    

    @media (min-width: 768px) {
      .product {
        padding-top:2rem;
      }
      .product-highlight-title {
        font-size: 4rem;
      }
      .product-highlight-bottom {
        flex-direction: row !important;
        justify-content: space-evenly;
        margin-top: 2.5rem;
      }

      .product-highlight-image {
        width: auto;
        height: 300px;
      }

      .product-highlight-item {
      margin: 0 2rem;
        width: 33%;
      }
    }

  @media (min-width: 1000px) {
    .product-highlight-image {
      width: auto;
      height: 370px;
    }
  }

@media (min-width: 1400px) {
  .product-highlight-image {
    width: auto;
    height: 425px;
  }
}

@keyframes myAnim {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Product showcase styles */
  .showcase {
      display: flex;
      justify-content: center;
      align-items: center;
    margin: 4rem 0;
    }
    .showcase-left {
     margin-right: -6rem;
    width: 50%;
      height: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4.75rem 5rem !important;
   -webkit-box-shadow: -38px 0px 24px -13px rgba(0,0,0,0.41);
    box-shadow: -38px 0px 24px -18px rgba(0,0,0,0.41);
    }
    .showcase-right {
      display: flex;
      height: 480px;
      justify-content: center;
    }
  .showcase-logo {
    width: 130px;
    margin-bottom: 1.5rem;
  }

  .showcase-title {
    font-size: 3rem !important;
    padding-left: .75rem;
  }
  .showcase-text {
    padding-right: 5rem;
    padding-left: .75rem;
  }
  .showcase-btn {
    border-radius: 8px !important;
    margin-left: .75rem;
  }
  .showcase-image{
    border-top-left-radius: 1px !important;
    border-bottom-left-radius: 1px !important;
  }

  .showcase-image-link {
    display: flex;
  }

  @media (min-width: 900px) {
    .showcase-right {
      -webkit-box-shadow: 30px 3px 39px -15px rgba(0,0,0,0.41);
      box-shadow: 30px 3px 39px -15px rgba(0,0,0,0.41);
    }
  }

  @media (max-width: 1200px) {
    .showcase-left {
      height: auto;
    }

    .showcase-image-link {
      display: flex;
    }
  }

  @media (max-width: 900px) {
    .showcase {
      flex-direction: column;
    }
    .showcase-left {
      margin: 0 auto;
      -webkit-box-shadow: 0px -18px 38px -2px rgba(0,0,0,0.41);
      box-shadow: 0px -18px 38px -2px rgba(0,0,0,0.41);
      width: 80%;
      height: auto;
    }
    .showcase-text {
      padding: 0;
      padding-left: .75rem;
    }
  }

  @media (max-width: 700px) {

    .showcase {
      margin: 4rem 0;
    }
    .showcase-left {
      padding: 2.75rem 2rem !important;
      box-shadow: 0px -5px 22px -2px rgba(0, 0, 0, 0.41);
      height: auto;
      width: 90%;
      border-radius: 8px;
    }
    .showcase-right {
      height: auto;
    }
    .showcase-title {
      font-size: 2rem !important;
    }
    .showcase-text {
      font-size: .8rem;
    }
    .showcase-image {
      width: 90%;
    }
    .showcase-image-link {
      display: flex;
      justify-content: center;
    }
  }
.reviews_container {
    margin: auto;
    text-align: center;
    margin-top: 5rem !important; 
    max-width: 1000px;
  }

  @media (min-width: 1024px) {
    .reviews_container {
     margin: 0 auto;
  }
  }