/** Shopify CDN: Minification failed

Line 904:4 Unexpected "{"
Line 904:5 Expected identifier but found "%"
Line 904:35 Unexpected "{"
Line 904:36 Expected identifier but found "%"
Line 906:4 Unexpected "{"
Line 906:5 Expected identifier but found "%"
Line 906:36 Unexpected "{"
Line 906:37 Expected identifier but found "%"

**/
/* Hide slideshow arrows */

/* .slideshow__controls .slider-button{
    display:none !important;
} */
.header-wrapper{
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.multicolumn__title .custom-multi-heading {
  text-align: center;
}
.multicolumn__title {
  display: flex !important;
  justify-content: center !important;
}
/* ==== announcement bar styles=== */
  .announcement-item a {
    text-decoration: none;
    color: inherit;
}
.announcement-item a:hover {
    text-decoration: underline;
}
.announcement-scroll{
  overflow:hidden;
  white-space:nowrap;
  width:100%;
  min-height:40px;
  display:flex;
  align-items:center;
  font-size: 14px;
}
.announcement-scroll-inner{
  display:flex;
  gap:30px;
  align-items:center;
  padding-left:100%;
  animation:announcementTicker 25s linear infinite;
}
.announcement-scroll-inner:hover{
  animation-play-state:paused;
}
/* ==== image marquee styles=== */
.custom-marquee-section {
  overflow: hidden;
  width: 100%;
  padding-top: var(--custom-padding-top);
  padding-bottom: var(--custom-padding-bottom);
  background: transparent;
}
.custom-marquee-heading-wrapper {
  text-align: center;
  width: 100%;
  margin-bottom: 40px; 
}
.custom-marquee-heading {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
}
.custom-marquee-track {
  display: flex;
  width: max-content;
}
.custom-marquee-content {
  display: flex;
  animation: custom-marquee-loop var(--custom-speed) linear infinite;
  gap: var(--custom-gap);
  padding-right: var(--custom-gap);
}
.custom-marquee-track:hover .custom-marquee-content {
  animation-play-state: paused;
}
.custom-marquee-img {
    height: 100%;
    max-height: 30px;
    width: 100%;
}
/* Infinite Scroll Keyframes */
@keyframes custom-marquee-loop {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
  /* ==== product trust badges ===== */

    .product-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .badge-item img {
    margin-bottom: 8px;
  }
  .badge-item span {
    font-size: 12px;
    line-height: 1.2;
  }
  @media screen and (max-width: 768px) {
    .product-trust-badges {
      gap: 4px;
    }
    .product-trust-badges {
    grid-template-columns: repeat(4, 1fr);
    }
   .badge-item span {
    font-size: 9px;
  }
}
/* ==== product description tabs css ==== */
.custom-product-tabs-section {
  width: 100%;
}
.custom-product-tabs-nav-container {
  overflow: hidden;
}
.custom-product-tabs-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 15px;
}
.custom-product-tabs-nav-item {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.custom-product-tabs-nav-item:hover, 
.custom-product-tabs-nav-item.custom-product-tabs-active {
  color: #000;
}
.custom-product-tabs-nav-item.custom-product-tabs-active {
  font-weight: 500;
}
.custom-product-tabs-nav-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.custom-product-tabs-nav-item.custom-product-tabs-active::after {
  transform: scaleX(1);
}
.custom-product-tabs-separator {
  color: #ccc;
  font-size: 1.6rem;
  user-select: none;
}
.custom-product-tabs-border-line {
  border: 0;
  border-top: 1px solid #d3d3d3;
  margin: 0 0 2.5rem 0;
}

.custom-product-tabs-mobile-trigger {
  display: none;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
}

.custom-product-tabs-panel {
  display: none;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  color: #2b2b2b;
}
.custom-product-tabs-panel.custom-product-tabs-active {
  display: block;
}

/* Responsive Mobile Breakpoint: 425px */
@media screen and (max-width: 425px) {
  .custom-product-tabs-hide-mobile {
    display: none !important;
  }
  .custom-product-tabs-accordion-wrapper {
    border-bottom: 1px solid #e8e8e8;
  }
  .custom-product-tabs-accordion-wrapper:first-child {
    border-top: 1px solid #e8e8e8;
  }
  .custom-product-tabs-mobile-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-align: left;
    cursor: pointer;
  }
  .custom-product-tabs-mobile-trigger.custom-product-tabs-active {
    font-weight: 500;
    color: #000;
  }
  .custom-product-tabs-icon {
    position: relative;
    width: 12px;
    height: 12px;
  }
  .custom-product-tabs-icon::before, 
  .custom-product-tabs-icon::after {
    content: '';
    position: absolute;
    background-color: #666;
    transition: transform 0.25s ease;
  }
  .custom-product-tabs-icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 1.5px;
  }
  .custom-product-tabs-icon::after {
    top: 0;
    left: 5px;
    width: 1.5px;
    height: 12px;
  }
  .custom-product-tabs-mobile-trigger.custom-product-tabs-active .custom-product-tabs-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  
  .custom-product-tabs-panel {
    overflow: hidden;
  }
  .custom-product-tabs-inner-content {
    padding: 0 0 2rem 0;
  }
}
/* ==== collection list styles ==== */
  .custom-heading-row {
    display: flex;
    align-items: center;
    max-width: var(--page-width);
    margin: 0 auto 24px auto;
  }

  .custom-heading-row h2 {
    margin: 0 auto;
  }

  .view-all-btn {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    width: 80px;
    text-align: right;
  }

  .heading-spacer {
    width: 80px;
    visibility: hidden;
  }

  .slider-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  @media screen and (min-width: 750px) {
    .collection-list.slider {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }
    
    .collection-list.slider::-webkit-scrollbar {
      display: none;
    }

    .slider--desktop .slider__slide {
      width: calc(22.222% - 12px) !important;
      max-width: calc(22.222% - 12px) !important;
      flex-shrink: 0 !important;
      scroll-snap-align: start !important;
    }
  }

  /* 425px AND BELOW - CENTERED BLOCK LAYOUT */
  @media screen and (max-width: 425px) {

    .custom-heading-row .heading-spacer {
      display: none !important;
    }
    .custom-heading-row h2 {
      margin: 0 0 10px 0 !important;
    }
    .custom-heading-row .view-all-btn {
      display: block !important;
      width: 100% !important;
      text-align: center !important;
    }
  }

 .custom-slider-width {
    overflow: hidden;
  }
  /* ==== custom testimonial style ==== */
  .custom-testimonial-card {
    padding: 20px;
    margin: 10px;
    border: 1px solid rgba(var(--color-foreground), 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-align: inherit;
  }
  .custom-name h3 { margin: 0 0 10px; font-size: 40px; }
  .custom-review p { font-size: 14px; line-height: 1.6; }
  .custom-cantact-size {
    width: 70% !important;
  }
  .card-inner {
    overflow: hidden;
}
@media (max-width:425px){
   .custom-cantact-size {
    width: 100% !important;
 }
 .slick-carousel {
  overflow: hidden;
 }
 }
  /*==== info-grid styles ==== */
.custom-info-container {
  display: flex;
  gap: 20px;
}

.custom-info-card {
  width: 32%;
  position: relative;
  overflow: hidden; 
  height: 500px;
  cursor: pointer;
}

.custom-info-card:hover .custom-info-image img {
  transform: scale(1.05);
}

.custom-info-image {
  height: 100%;
  width: 100%;
}

.custom-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease; 
}

.custom-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  transition: background 0.3s ease; 
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .custom-info-card {
    width: 100%;
  }
  .custom-info-container {
  flex-wrap:wrap;
}
}

.custom-info-title h3, 
.custom-info-title p, 
.custom-info-text p {
  color: #ffffff;
  margin: 0 0 10px;
}

.custom-info-text p {
  font-size: 14px;
  line-height: 1.5;
}

/* ==== custom map section styles==== */
  .custom-map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 14px;
  }
  .custom-map-card {
    border: 1px solid rgba(var(--color-foreground), 0.1);
    background: var(--gradient-background);
  }
  .custom-map-embed iframe { 
    display: block; 
    width: 100%; 
    height: 500px; 
  }
  .custom-office-details { 
    text-align: center; 
    padding:12px;
  }
  .custom-address-text p {
    margin: 0;
  }
  .custom-office-details h3 {
    font-weight: 600;
 }
  /* Mobile responsiveness */
  @media screen and (max-width: 768px) {
    .custom-map-grid { 
      grid-template-columns: 1fr; 
    }
    .custom-map-embed iframe { 
      height: 300px; 
    }
  }
/* ==== contact card styles ==== */
  .custom-contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .custom-contact-card {
    background: rgba(var(--color-foreground), 0.04);
    padding: 30px;
    border-radius: 4px;
  }
 .custom-contact-image img {
    height: 100%;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 15px auto;
    display: block;
 }
  .custom-contact-heading,
  .custom-contact-richtext {
    text-align: center;
  }
  .custom-contact-richtext p {
    line-height: 1.5;
    font-size: 14px;
 }
  .custom-contact-richtext a {
    color: inherit;
  }

  @media screen and (max-width: 749px) {
    .custom-contact-card {
      max-width: 100%;
    }
  }
  /* ==== custom icon with text styles===== */
  .custom-full-width-container { 
    width: 100%; 
    text-align: center; 
  }
    .custom-width-wrapper {
    width: 100%;
  }
  .custom-section-heading {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
  }
  .custom-item { 
    padding: 30px; 
  }

.custom-img img {
    max-width: 70px;
    width: 100%;
    height: 100%;
}
  @media screen and (max-width: 425px) {
    .custom-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .custom-item { padding: 15px; }
    .custom-width-wrapper {
    padding: 15px;
   }
  }

  /* ==== shipping table styles ==== */
.shipping-table-container {
    overflow: scroll; 
    width: 100%; 
    margin: 0 auto;
}

.shipping-table {
    width: 100%;
    min-width: 700px;
    text-align: left;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.shipping-table th,
.shipping-table td {
    padding: 12px;
    border: 1px solid #ddd; 
}

.shipping-table th[colspan="2"], 
.shipping-table td[colspan="2"] {
    text-align: left;
    padding-left: 10px;
}

.shipping-section a {
    text-decoration: none;
    color: #4A4A49;
}
/* ===== Featured collection styles & Structural Global Layouts ===== */
.custom-heading-row {
  display: flex;
  align-items: center;
  max-width: var(--page-width);
  margin: 0 auto 24px auto;
}
.custom-heading-row h2 {
  margin: 0 auto;
}
.view-all-btn {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  white-space: nowrap;
  width: 80px;
  text-align: right;
}
.heading-spacer {
  width: 80px;
  visibility: hidden;
}
.slider-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/* ---------- Tablet & Desktop Slider (750px and up) ---------- */
@media screen and (min-width: 750px) {
  .product-grid.slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: default; /* Normal pointer */
    padding-left: 15px;
  }
  .product-grid.slider::-webkit-scrollbar {
    display: none;
  }
  .product-grid.slider--desktop .slider__slide {
    width: calc(22.222% - 12px);
    max-width: calc(22.222% - 12px);
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
/* ---------- Mobile Styles (Below 750px) ---------- */
@media screen and (max-width: 749px) {
  .custom-heading-row {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .view-all-btn,
  .heading-spacer,
  .slider-buttons {
    display: none !important;
  }
  .product-grid .slider__slide {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ---------- Extra Small Mobile (425px and below) ---------- */
@media screen and (max-width: 425px) {
  .custom-heading-row {
    display: block !important;
    text-align: center !important;
  }
  .custom-heading-row .heading-spacer {
    display: none !important;
  }
  .custom-heading-row h2 {
    margin-bottom: 10px !important;
  }
}

@media (min-width:769px)
{
.custom-slider-width .grid {
    column-gap: 40px;
}
}
.cust-class h3 {
    font-size: 18px;
}
/* ==== custom sale ==== */
.custom-sale__item {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-radius: var(--media-radius);
  }
  .custom-sale__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
  }
  .custom-sale__item:hover .custom-sale__bg {
    transform: scale(1.05);
  }
  .custom-sale__content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    max-width: 80%;
  }

  .custom-sale__subheading {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }

  .custom-sale__heading {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 30px;
}
  .custom-sale__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    color: currentColor;
  }
  .custom-sale__link:hover {
    text-decoration: underline;
  }
  .custom-sale__link svg {
    width: 1.5rem;
    height: auto;
    transition: transform 0.3s ease;
  }
  .custom-sale__item:hover .custom-sale__link svg {
    transform: translateX(4px);
  }
  /* ==== custom- feature styles ====  */
   .custom-feature__item {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .custom-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
  }

  .custom-feature__icon img,
  .custom-feature__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .custom-feature__content {
    flex-grow: 1;
  }

  .custom-feature__title {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
  }

  .custom-feature__description {
    margin: 0;
    color: rgba(var(--color-foreground), 0.7);
    line-height: 1.4;
  }
  .product__sku span {
  display: inline-block;
  margin-right: 5px; /* Adds space between the label and the SKU number */
}
/*custom collection wrapper css*/
 .custom-collection-flex .collection-item a {
  text-decoration: none;
  color: inherit;
  display: block; /* Ensures the whole block is clickable */
  line-height: 1.2;
  font-weight:600;
}
.custom-collection-flex .collection-item a:hover {
  text-decoration: none;
  opacity: 0.8;
}
/* Container */
.custom-collection-wrapper {
  width: 100%;
  box-sizing: border-box;
}
.custom-collection-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 20px;
}
.custom-collection-flex .collection-item {
  flex: 0 0 auto;
  width: calc(16.66% - 17px);
}
@media screen and (max-width: 1024px) {
  .custom-collection-flex .collection-item {
    width: calc(25% - 15px);
  }
}
@media screen and (max-width: 650px) {
  .custom-collection-flex .collection-item {
    width: calc(33.33% - 14px);
  }
  .custom-collection-flex p {
    font-size: 12px;
}
}
.custom-collection-flex .collection-item img {
  width: 100%;
  display: block;
  height: auto;
}

.pickup-guidance{
  margin:20px 0;
  padding:16px;
  background:#f7fbf7;
  border-left:4px solid #2E8B57;
  border-radius:8px;
}

.pickup-guidance h3{
  margin:0 0 8px;
  font-size:15px;
}

.pickup-guidance p{
  margin:0;
  line-height:1.6;
  font-size:14px;
}
/*=========================================================Location selection dropdown===============================================================*/
.location-selection {
  margin: 2rem 0;
  max-width: 44rem;
}

.location-selection__label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.location-selection__message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  background: rgba(var(--color-foreground), 0.04);
  font-size: 1.4rem;
  line-height: 1.5;
}

.location-selection select {
  width: 100%;
}

.location-option-hidden {
  display: none !important;
}

 /* .card-discount {
    display: inline-block;
    background: #221617ff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    margin: 8px 0;
    text-transform: uppercase;
    border-radius: 2px;
}  */
.custom-cta-banner{
    width:100%;
}

.custom-cta-banner .cta-banner{
    position:relative;
    width:100%;
    min-height:360px;
    overflow:hidden;
    border-radius:0;
    display:flex;
    align-items:center;
}

.custom-cta-banner .cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.custom-cta-banner .cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.custom-cta-banner .page-width{
    position:relative;
    z-index:2;
    width:100%;
}

.custom-cta-banner .cta-content{
    width:100%;
    max-width:560px;
    color:#fff;
    padding:90px 0;
}

.custom-cta-banner h2{
    {% comment %} margin:0 0 18px; {% endcomment %}
    font-size:40px;
    {% comment %} line-height:1.15; {% endcomment %}
    color:#fff;
    font-weight:700;
}

.custom-cta-banner p{
    margin:0 0 30px;
    font-size:16px;
    line-height:1.8;
    color:#fff;
}

.custom-cta-banner .cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 36px;
    background:#fff;
    color:#111;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s ease;
    font-size:14px;
}

.custom-cta-banner .cta-btn span{
    transition:.35s;
}

.custom-cta-banner .cta-btn:hover{
    background:#E81E26;
    color:#fff;
}

.custom-cta-banner .cta-btn:hover span{
    transform:translateX(5px);
}

@media screen and (max-width:990px){

.custom-cta-banner .cta-banner{
    min-height:320px;
}

.custom-cta-banner h2{
    font-size:38px;
}

}

@media screen and (max-width:749px){

.custom-cta-banner .cta-banner{
    min-height:450px;
}

.custom-cta-banner .cta-content{
    padding:50px 0;
    text-align:center;
}

.custom-cta-banner h2{
    font-size:30px;
}

.custom-cta-banner p{
    font-size:15px;
}

}
/*Multi features.liquid style*/
.section-heading{
  text-align:center;
  margin-bottom:50px;
}

.section-heading h2{
  margin:0;
  font-size:38px;
  font-weight:700;
  position:relative;
}

.quality-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.quality-card {
    text-align: center;
    padding: 30px 12px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.quality-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#E81E26;
  transform:scaleX(0);
  transform-origin:left;
  transition:.35s;
}

.quality-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.quality-card:hover::before{
  transform:scaleX(1);
}

/* Icon Animation */

.quality-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:20px;
}

.quality-icon img{
  width:70px;
  height:70px;
  object-fit:contain;
  transition:transform .45s ease;
}

.quality-card:hover .quality-icon img{
  transform:scale(1.15) rotate(8deg);
}

/* Heading */

.quality-card h3{
  margin:0 0 12px;
  font-size:20px;
  transition:.3s;
  font-weight:600;
}

.quality-card:hover h3{
  color:#E81E26;
}

/* Paragraph */

.quality-card p{
  margin:0;
  color:#666;
  line-height:1.7;
}

/* Mobile */

@media(max-width:989px){

  .quality-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:749px){

  .quality-grid{
    grid-template-columns:1fr;
  }

  .section-heading h2{
    font-size:24px;
  }

}
/*custom contact us styles*/
  .formsection {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
  }

  .column {
    display: flex;
    width: 33.33%;
    background-size: cover;
    background-position: bottom;
 }

  .middle-col {
    min-height: 300px;
  }

  .right-col {
    padding: 40px;
    display: flex;
    align-items: center;
  }

  .left-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .content-box {
    width: 100%;
    padding: 60px;
    text-align: left;
  }

  .content-box h3 {
    margin-bottom: 10px;
  }

  .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    color:#FFFFFF;
  }

  .social-links a {
    font-size: 22px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
  }

  .social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .field {
    margin-bottom: 20px;
  }

  @media screen and (max-width: 768px) {

    .column {
      display:flex;
      width: 100%;
      min-height: 500px;
    }

    .content-box {
      padding: 30px;
    }

    .right-col {
      padding: 25px;
    }

  }
/*custom video css*/
.custom-video-section{
    width:100%;
    padding:60px 20px;
}

.custom-video-wrapper{
    max-width:700px;
    margin:auto;
}

.custom-video-wrapper video{
    width:100%;
    height:100%;
    max-height: 600px;
    display:block;
}

.custom-video-heading{
    text-align:center;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

@media screen and (max-width:768px){

.custom-video-section{
    padding:40px 15px;
}

.custom-video-heading{
    font-size:26px;
}
}

.custom-brand-logo-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.custom-brand-logo {
  display: block;
  width:100%;
  max-width: 75px;
  height: auto;
}

.product-gallery-brand-logo{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.product-gallery-brand-logo {
    display: block;
    width: 100%;
    max-width: 100px;
    object-fit: contain;
    height: auto;
}
@media (max-width: 425px) {
.product-gallery-brand-logo {
    max-width: 50px;
}
.custom-brand-logo {
  max-width: 50px;
}
}
