/** Shopify CDN: Minification failed

Line 127:13 Expected identifier but found whitespace
Line 127:15 Unexpected "{"
Line 127:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blog-tabs (INDEX:33) */
.ta-wrap{
  padding:20px 0px;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:50px;
  max-width:1200px;
  margin:auto;
}
p.share-blog {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
    margin-top: 10px;
}
.blog-btnn {
    background: #F8F8F8;
    border-radius: 14px;
    padding: 22px 20px;
    /* position: sticky;
    top: 20px;
    height: fit-content; */
}
.ta-nav-title {
    color: #000000;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.ta-btn {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    margin: 5px 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
    color: #656565;
}
/* 
.ta-btn:hover{
  background:rgba(0,0,0,0.05);
} */

.ta-btn.active {
    color: #000;
}


/* CONTENT */

.ta-panel{
  display:none;
}

.ta-panel.active{
  display:block;
}

.ta-content{
  font-size:16px;
  line-height:1.75;
  color:#222;
}

.ta-content h1,
.ta-content h2,
.ta-content h3{
  line-height:1.3;
  margin:25px 0 12px;
}

.ta-content p{
  margin-bottom:18px;
}


/* IMAGE */

.ta-image{
  margin:25px 0;
}

.ta-image img{
  width:100%;
  border-radius:14px;
  display:block;
}


/* MOBILE */

@media(max-width:900px){

  .ta-wrap{
    grid-template-columns:1fr;
    gap:25px;
  }

  .ta-nav{
    position:relative;
    top:auto;
  }

}
/* END_SECTION:blog-tabs */

/* START_SECTION:image-text-product (INDEX:78) */
.custom-image-text {
  background: {{ section.settings.bg_color }};
}

.custom-image-text .wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.custom-image-text .left-text img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16/16;
    height: 100%;
}

.custom-image-text .left-text {
  flex: 1;
}

.custom-image-text .right-text {
  flex: 1;
}

.custom-image-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.custom-image-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 320px;
}

.product-box img {
  width: 60px;
}

.product-box h4 {
  font-size: 15px;
  margin: 0;
}

.product-box span {
  font-size: 14px;
  color: #555;
}

@media(max-width:768px){
  .custom-image-text .wrapper{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .product-box{
    margin: auto;
  }
}
/* END_SECTION:image-text-product */

/* START_SECTION:sticky_video_section (INDEX:144) */
.sticky-video-section {
  display: flex;
  gap: 40px;
  padding: 80px 0;
  align-items: flex-start;
  min-height: 100vh;
}
.sticky-video-left {
    width: 50%;
    position: sticky;
    top: 50px;
}
.sticky-video-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.sticky-video-left p {
  font-size: 16px;
  line-height: 1.6;
}

.sticky-video-points p {
  margin-top: 16px;
}

.sticky-video-right {
  width: 50%;
  /* position: sticky;
  top: 80px; */
  height: fit-content;
}

.sticky-video-right video {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 767px) {
.sticky-video-section {
    flex-direction: column;
    min-height: auto;
    gap: 0;
    padding: 20px 0;
}

  .sticky-video-left,
  .sticky-video-right {
    width: 100%;
    position: static;
    text-align: center;
  }

  .sticky-video-right {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
  .sticky-video-left h2 {
    font-size: 30px;
}
}
/* END_SECTION:sticky_video_section */