/** Shopify CDN: Minification failed

Line 165:19 Expected identifier but found whitespace
Line 165:21 Unexpected "{"
Line 165:30 Expected ":"
Line 166:8 Expected identifier but found whitespace
Line 166:10 Unexpected "{"
Line 166:19 Expected ":"
Line 185:19 Expected identifier but found whitespace
Line 185:21 Unexpected "{"
Line 185:30 Expected ":"
Line 186:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.bg-breadcrumb{
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
  .breadcrumb_collection .bg-breadcrumb {
    padding: 100px 0 100px;
  }
  .title-page h2{
    font-size: 45px !important;
    color: black !important;
  }
  .bread-crumb strong, .bread-crumb a, .bread-crumb i{
    color: black !important;
  }
  .container, .col-lg-12 {
    padding-top: 0;
  }
  .about_top{
    margin-top: 0px !important
  }
  .address{
    margin-top: 0px !important;
    border-bottom: 0px !important;
  }
  @media only screen and (max-width: 768px){
    .breadcrumb_collection .bg-breadcrumb {
      padding: 20px 0 0px !important;
    }
    .title-page h2{
      font-size: 14px !important;
      margin: 0px !important;
    }
    .bg-breadcrumb{
      height: 80px !important;
      padding: 20px 0 0px !important;
    }
    .bread-crumb{
      padding: 0 !important;
    }
    .bread-crumb strong, .bread-crumb a{
      font-size: 10px !important;
    }
    
  }
.bg-breadcrumb{
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
  .breadcrumb_collection .bg-breadcrumb {
    padding: 100px 0 100px;
  }
  .title-page h2{
    font-size: 45px !important;
    color: black !important;
  }
  .bread-crumb strong, .bread-crumb a, .bread-crumb i{
    color: black !important;
  }
  .container, .col-lg-12 {
    padding-top: 0;
  }
  .contact-page{
    padding: 0px !important;
  }
  @media only screen and (max-width: 768px){
    .breadcrumb_collection .bg-breadcrumb {
      padding: 20px 0 0px !important;
    }
    .title-page h2{
      font-size: 14px !important;
      margin: 0px !important;
    }
    .bg-breadcrumb{
      height: 80px !important;
      padding: 20px 0 0px !important;
    }
    .bread-crumb{
      padding: 0 !important;
    }
    .bread-crumb strong, .bread-crumb a{
      font-size: 10px !important;
    }
    
  }
.page_aboutus_v1.page_FQA .asked .top_asked{
    padding: 0px !important;
    text-align: center;
    font-size: 28px;
  }
  .right-faq-image{
    text-align: center;
  }
  .box_content_question{
    border-bottom: 2px solid black;
    padding-top: 15px;
    padding-bottom: 15px !important;
  }
  .asked{
    margin-top: 0 !important;
    background-color:  #efefef !important;
    padding: 20px 0px;
  }
.mt-all{
    background-color: #F7F7F7;
  }
  .section-collection-v2 .item{
    padding: 0px !important;
  }
.container-v2 {
    max-width: 1476px;
    padding: 40px 0px 0px 0px;
}

.item {
  position: relative;
  overflow: hidden;
}

/* Desktop hover overlay */
.hover-button-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
  z-index: 2;
  text-align: center;
}

.hover-button {
  display: block;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  width: 100%;
  transition: all 0.6s ease;
}

/* Hover color transitions */
.hover-button:hover {
  background-color: {{ section.settings.button_bg_color_hover }};
  color: {{ section.settings.button_text_color_hover }};
}

/* Mobile adjustments */
.mobile-button-wrapper {
  display: none;
}

.mobile-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  background-color: {{ section.settings.button_bg_color }};
  color: {{ section.settings.button_text_color }};
  transition: all 0.6s ease;
}

.mobile-button:hover {
  background-color: {{ section.settings.button_bg_color_hover }};
  color: {{ section.settings.button_text_color_hover }};
}

@media (min-width: 768px) {
  /* Desktop styles - show overlay, hide mobile button */
  .hover-button-wrapper {
    opacity: 0;
    visibility: hidden;
    bottom: -50px;
  }

  .item:hover .hover-button-wrapper {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }

  .mobile-button-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Mobile styles - hide overlay, show button below */
  .hover-button-wrapper {
    display: none;
  }

  .mobile-button-wrapper {
    display: block;
  }
}