*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{

    font-family:'Inter',sans-serif;

    font-size:16px;
    line-height:1.7;

    color:var(--text);
    background:#fff;

    overflow-x:hidden;

    min-height:100vh;

    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}
a{

    text-decoration:none;
    color:inherit;

}
ul,
ol{

    list-style:none;

}
:root{
    --heading-font:'Montserrat',sans-serif;
    --body-font:'Inter',sans-serif;
}

body{
    font-family:var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:var(--heading-font);
}

.labdel-header-menu a{
    font-family:var(--heading-font);
    font-weight:600;
}

.labdel-btn{
    font-family:var(--heading-font);
    font-weight:600;
}
.labdel-top-header-wrap{
    background:#1dcafa;
    padding:8px 0;
}

.labdel-top-header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.labdel-top-header-inner a{
    color:#fff;
    text-decoration:none;
    font-size: 16px;
  font-weight: 600;
}

.labdel-main-header-wrap{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.labdel-main-header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.labdel-logo-box img{
    height:40px;
}

.labdel-navigation-wrap ul{
    display:flex;
    gap:28px;
    list-style:none;
    margin-bottom: 0;
    padding-left: 0;
}

.labdel-navigation-wrap a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-family: "Montserrat", sans-serif;
}

.labdel-header-right-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.labdel-search-trigger-btn{
    width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #ff7e13;
  cursor: pointer;
  color: #fff;
}

.labdel-get-quote-btn{
    background: #1ecbfb;
  color: #fff;
  text-decoration: none;
  padding: 6px 20px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.labdel-mobile-menu-btn{
    display:none;
    flex-direction:column;
    gap:5px;
    border:none;
    background:none;
}

.labdel-mobile-menu-btn span{
    width:26px;
    height:3px;
    background:#111;
}

/* SEARCH POPUP */

.labdel-search-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:99999;
}

.labdel-search-popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.labdel-search-popup-container{
    max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  position: relative;
}
.popup-inside-section{
    overflow: auto;
      height: 75vh;
}
.labdel-search-close-btn{
    float:right;
    border:none;
    width:40px;
    height:40px;
    border-radius: 0 12px;
  cursor: pointer;
  background: #ef6161;
    color:#fff;
    position: absolute;
  top: 0;
  right: 0;
}

.labdel-search-top-area{
    margin-bottom:0px;
}


.labdel-search-input-wrapper{
    position:relative;
    width:100%;
}

.labdel-search-top-area input{
    width:100%;
    height:60px;
    padding:0 20px;
    border:2px solid #e5e5e5;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.labdel-search-top-area input:focus{
    border-color:#0d6efd;
}

.labdel-search-suggestion-box{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.15);
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.35s ease;
}

.labdel-search-suggestion-box.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.labdel-search-suggestion-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px 18px;
    cursor:pointer;
    transition:.3s;
}

.labdel-search-suggestion-item:hover{
    background:#f6f9ff;
}

.labdel-search-suggestion-item img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.labdel-search-suggestion-item span{
    color:#222;
    font-size:15px;
    font-weight:500;
}

.labdel-search-category-grid,
.labdel-search-subcategory-grid,
.labdel-search-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:20px;
}

.labdel-search-category-grid a,
.labdel-search-subcategory-grid a,
.labdel-search-product-grid a{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:15px;
    border:1px solid #eee;
    border-radius:15px;
    text-decoration:none;
    color:#222;
    transition:.35s;
    background:#fff;
}

.labdel-search-category-grid a:hover,
.labdel-search-subcategory-grid a:hover,
.labdel-search-product-grid a:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.labdel-search-category-grid img,
.labdel-search-subcategory-grid img,
.labdel-search-product-grid img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:10px;
}

.labdel-search-category-grid span,
.labdel-search-subcategory-grid span,
.labdel-search-product-grid span{
    font-size:14px;
    font-weight:600;
}

.labdel-search-fade-item{
    animation:labdelFadeIn .35s ease;
}

@keyframes labdelFadeIn{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}





.labdel-search-top-area input{
    width: 100%;
  height: 50px;
  border: 2px solid #ff7e13;
  border-radius: 12px;
  padding: 0 25px;
  font-size: 15px;
}

.labdel-search-category-grid,
.labdel-search-subcategory-grid,
.labdel-search-product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.labdel-search-category-grid a,
.labdel-search-subcategory-grid a,
.labdel-search-product-grid a{
    text-decoration:none;
    color:#111;
}

.labdel-search-category-grid img,
.labdel-search-subcategory-grid img,
.labdel-search-product-grid img{
    width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  max-width: 150px;
}

.labdel-search-category-section,
.labdel-search-subcategory-section,
.labdel-search-product-section{
    margin-top:22px;
}

.labdel-search-category-section h3,
.labdel-search-subcategory-section h3,
.labdel-search-product-section h3{
    margin-bottom: 20px;
  font-size: 20px;
  color: #000;
}

@media(max-width:991px){

.labdel-navigation-wrap{
    display:none;
}

.labdel-mobile-menu-btn{
    display:flex;
}

.labdel-search-category-grid,
.labdel-search-subcategory-grid,
.labdel-search-product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.labdel-search-category-grid,
.labdel-search-subcategory-grid,
.labdel-search-product-grid{
    grid-template-columns:1fr;
}

.labdel-get-quote-btn{
    display:none;
}

}
/* _-------------------Mega menu */
.labdel-mega-parent-item{
    position:relative;
}

.labdel-mega-menu-wrapper{

    position:absolute;

    top:200%;
    left:50%;

    transform:translateX(-36%) translateY(20px);

    width:1400px;

    background:#fff;

    border-radius:12px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transition:.45s ease;

    z-index:999;

    padding:30px;

}

.labdel-mega-parent-item:hover
.labdel-mega-menu-wrapper{

    opacity:1;
    visibility:visible;

    transform:
    translateX(-36%)
    translateY(0);
    
}

.labdel-mega-category-slider{

    padding-bottom:30px;

    border-bottom:
    1px solid #eee;
    overflow-y: auto;
  height: 250px;
  padding-top: 8px;
}

.labdel-mega-category-track{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;
    position: relative;

}

.labdel-mega-category-item{

    cursor:pointer;

    border-radius:12px;

    /* overflow:hidden; */
    overflow: visible;
    background:#fff;

     border:2px solid transparent;

    transition:.3s;

}

.labdel-mega-category-item:hover{

    border-color:#FE6E18;

    transform:translateY(-6px);

}
.labdel-mega-category-item::before{
    content: '\F229';
    font-family: 'Bootstrap-Icons';
    position: absolute;
    bottom: -35px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 99999;
  opacity: 1;
  font-size: 35px;
    color: #fe850d;
}
.labdel-mega-category-item img{
width: 100%;
  height: 150px;
  object-fit: cover;
  max-width: 150px;
  display: block;
  margin: 0 auto;

}

.labdel-mega-category-item span{

    display:block;

    text-align:center;

    padding:15px;

    font-weight:600;

}

.labdel-mega-subcategory-container{

    padding-top:30px;

    min-height:220px;

}

.labdel-subcategory-panel{

    display:none;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;

    animation:
    labdelMegaFade .4s ease;

}

.labdel-subcategory-panel.active{

    display:grid;

}

.labdel-subcategory-panel a{

    text-decoration: none;
  color: #111;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px;

}

.labdel-subcategory-panel img{

   width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 15px;
  max-width: 100px;
  margin: 0 auto;
  display: block;

}

.labdel-subcategory-panel span{

    display:block;

    margin-top:12px;

    text-align:center;

    font-weight:600;

}

@keyframes labdelMegaFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* -----------------Banner */
.labdel-hero-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
    linear-gradient(
    135deg,
    #f6fbff 0%,
    #e9f5ff 45%,
    #fff8f2 100%);
    background-image: url(../images/ban3.png);
    background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.labdel-hero-wrapper{
    display:grid;
    grid-template-columns:1fr;
    gap:60px;
    align-items:center;
}

.labdel-banner-tag{
    display:inline-block;
    padding:10px 20px;
    background:#e9f5ff;
    color:#0086ff;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.labdel-hero-content h1{
    font-size:40px;
    font-weight:500;
    color:#0d1b42;
    line-height:1.1;
    margin-bottom:0px;
}

.labdel-hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:#eaf4ff;
    color:#1e63ff;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.labdel-text-slider{
    height:85px;
    overflow:hidden;
    position:relative;
    margin-top:0px;
}

.labdel-text-slider-track{
    display:flex;
    flex-direction:column;
    animation:labdelTextRotate 15s infinite;
}

.labdel-text-slider-track span{
    height:85px;
    display:flex;
    align-items:center;
    color:#ff7b00;
    font-size:60px;
    font-weight: 600;
}

@keyframes labdelTextRotate{

    0%,15%{
        transform:translateY(0);
    }

    20%,35%{
        transform:translateY(-85px);
    }

    40%,55%{
        transform:translateY(-170px);
    }

    60%,75%{
        transform:translateY(-255px);
    }

    80%,95%{
        transform:translateY(-340px);
    }

    100%{
        transform:translateY(-425px);
    }

}

.labdel-hero-content p{
    max-width: 800px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a6682;
  margin-bottom: 35px;
}

@media(max-width:991px){

    .labdel-hero-content h1{
        font-size:52px;
    }

    .labdel-text-slider{
        height:60px;
    }

    .labdel-text-slider-track span{
        height:60px;
        font-size:42px;
    }

}

@media(max-width:576px){

    .labdel-hero-content h1{
        font-size:38px;
    }

    .labdel-text-slider{
        height:50px;
    }

    .labdel-text-slider-track span{
        height:50px;
        font-size:28px;
    }

}

.labdel-primary-btn,
.labdel-secondary-btn{
    text-decoration:none;
    padding:8px 18px;
    border-radius: 12px;
    font-weight:600;
    transition:.4s;
}

.labdel-primary-btn{
    background:#ff7b00;
    color:#fff;
}
.labdel-hero-buttons {
  display: flex;
  gap: 15px;
}
.labdel-primary-btn:hover{
    transform:translateY(-3px);
}

.labdel-secondary-btn{
    border: 2px solid #1dcafa;
  color: #1cc9f9;
  background: #fff;
}

.labdel-secondary-btn:hover{
    background: #1cc9f9;
  color: #fff;
}



/* Image */

.labdel-hero-image{
    position: relative;
  width: 400px;
}

.labdel-hero-image img{
    width:100%;
    display:block;
    animation:labdelFloat 4s ease-in-out infinite;
    max-width: 300px;
}

@keyframes labdelFloat{
    50%{
        transform:translateY(-12px);
    }
}

.labdel-floating-card{
    position:absolute;
    background:#fff;
    padding:14px 20px;
    border-radius:15px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.1);
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.labdel-floating-card i{
    color:#ff7b00;
}

.card-one{
    top:10%;
    left:-20px;
}

.card-two{
    top:45%;
    right:-20px;
}

.card-three{
    bottom:10%;
    left:20px;
}

/* Responsive */

@media(max-width:1200px){

    .labdel-hero-content h1{
        font-size:55px;
    }

}

@media(max-width:991px){

    .labdel-hero-wrapper{
        grid-template-columns:1fr;
    }

    .labdel-hero-content{
        text-align:center;
    }

    .labdel-banner-search{
        margin:auto auto 30px;
    }

    .labdel-banner-btns,
    .labdel-banner-categories{
        justify-content:center;
    }

    .labdel-banner-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .labdel-hero-banner{
        padding:70px 0;
    }

    .labdel-hero-content h1{
        font-size:38px;
    }

    .labdel-banner-stats{
        grid-template-columns:1fr;
    }

    .labdel-banner-search input{
        padding:15px;
    }

}
/* ------------Category section */
.labdel-category-showcase-section{
    padding:80px 0;
    background:#f8fbff;
}

.labdel-section-heading{
    text-align:left;
    margin-bottom:30px;
}

.labdel-section-heading h2{
    font-size: 30px;
  font-weight: 500;
    color:#000;
}

/* .labdel-section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
} */

.labdel-category-showcase-wrapper{
    display: grid;
  /* grid-template-columns: 370px 1fr; */
  grid-template-columns: 310px 1fr;
  gap: 20px;
}

.labdel-active-category-panel{
    background:#fff;
    border-radius: 12px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.labdel-active-category-image-wrap{
    height: auto;
}

.labdel-active-category-image-wrap img{
    width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 220px;
  max-height: 220px;
  margin: 10px auto;
  display: block;
}

.labdel-active-category-content{
    padding:15px;
}

.labdel-active-category-content h3{
    font-size: 22px;
  margin-bottom: 15px;
  color: #ff7e13;
  font-weight: 600;
}

.labdel-active-category-content p{
   line-height: 1.6;
  color: #666;
  font-size: 14px;
}

.labdel-product-count{
    margin: 20px 0;
  font-weight: 600;
  color: #1cc8f8;
}

.labdel-category-btn{
    display: inline-flex;
  padding: 8px 20px;
  border-radius: 12px;
  text-decoration: none;
  background: #1ecbfb;
  color: #fff;
  font-weight: 600;
}

.labdel-category-slider-area{
    position:relative;
}

.labdel-slider-controls{
    display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  top: 46%;
}

.labdel-slider-controls button{
    width:48px;
    height:48px;
    border:none;
    z-index: 9;
    background: #1cc9f9;
    color:#fff;
    cursor:pointer;
    font-size:20px;
}
.labdel-prev-category{
    border-radius: 0 50% 50% 0;
}
.labdel-next-category{
    border-radius: 50% 0 0 50%;
}
.labdel-category-slider-track{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.labdel-category-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.labdel-category-card:hover{
    transform:translateY(-10px);
}

.labdel-category-card.active-card{
    border:2px solid #1cc9f9;
}

.labdel-category-card img{
    width: 100%;
  height: 180px;
  object-fit: cover;
  /* background: aliceblue; */
  max-width: 180px;
  margin: 0 auto;
  display: block;
  /* border-bottom: 1px solid; */
}

.labdel-category-card h4{
   padding: 10px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
  border-top: 2px solid #1cc9f9;
}

@media(max-width:991px){

    .labdel-category-showcase-wrapper{
        grid-template-columns:1fr;
    }

    .labdel-category-slider-track{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .labdel-category-slider-track{
        grid-template-columns:1fr;
    }

    .labdel-section-heading h2{
        font-size:30px;
    }
}
.labdel-category-showcase-wrapper-a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  margin-top: 18px;
}
.labdel-category-slider-track-a {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
/* -----------Showcase */
.labdel-showcase-section{
    position:relative;
    /* overflow:hidden; */
    padding:100px 0;
    background:#f7fbff;
}

.labdel-showcase-container{
    max-width:1296px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}
.labdel-showcase-container::before{
   content: '';
  width: 580px;
  height: 194px;
  background-color: #ffffff7a;
  position: absolute;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  left: 142px;
  bottom: 113px;
  background: #d4d4d4;
}
.labdel-showcase-content h1{
   font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  background-color: #ffffff4f;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  margin-right: auto;
}

.labdel-showcase-content p{
    font-size:15px;
    line-height:1.8;
    color:#5b667a;
    /* max-width:550px; */
    text-align: left;
}

.labdel-showcase-tag{
    display:inline-block;
    background:#e8f3ff;
    color:#0d6efd;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
}

.labdel-showcase-visual{
    position:relative;
    text-align:center;
}

.labdel-showcase-visual img{
    width:100%;
    max-width:350px;
    transition:.6s;
}

.labdel-hotspot-box{
    position:absolute;
    display:flex;
    align-items:center;
    gap:12px;
}

.labdel-hotspot-line{
    width:90px;
    height:2px;
    background:#0d6efd;
}

.labdel-hotspot-label{
    background:#fff;
    padding:10px 16px;
    border-radius:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    font-weight:600;
    color:#082c62;
}

.hotspot-top{
    top:12%;
    left:-40px;
}

.hotspot-right{
    top:40%;
    right:-80px;
}

.hotspot-bottom{
    bottom:12%;
    left:-20px;
}

.labdel-showcase-fade{
    animation:labdelFade .8s ease;
}

@keyframes labdelFade{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.labdel-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.showcase-btn-group{
   display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
  width: 100%;
}
.labdel-showcase-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.labdel-showcase-btn{
    text-decoration:none;
    padding: 6px 18px;
  border-radius: 8px;
    font-size:15px;
    font-weight:600;
    transition:all .35s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.labdel-showcase-btn-primary{
    background:#ff7b22;
    color:#fff;
    border:2px solid #ff7b22;
}

.labdel-showcase-btn-primary:hover{
    background:#ff6600;
    border-color:#ff6600;
    transform:translateY(-3px);
}

.labdel-showcase-btn-outline{
    background: #fff;
  color: #1dcafa;
  border: 2px solid #1dcafa;
}

.labdel-showcase-btn-outline:hover{
    background:#1c74ff;
    color:#fff;
    transform:translateY(-3px);
}

.labdel-showcase-btn-secondary{
    background: #1dcafa;
  color: #fff;
  border: 2px solid #1cc9f9;
}

.labdel-showcase-btn-secondary:hover{
    background:#0057d8;
    border-color:#0057d8;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .labdel-showcase-buttons{
        gap:10px;
    }

    .labdel-showcase-btn{
        width:100%;
    }

}
/* ------------Category showcase */
.labdel-category-showcase{
    padding:80px 0;
    background:#fff;
}

.labdel-category-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:30px;
}

.labdel-category-banner{
   position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* min-height: 700px; */
  min-height: auto;
  background-color: #ffe0cc40;
  border: 1px solid #ff7b22;
}

.labdel-category-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 300px;
  max-height: 300px;
  margin: 38px auto;
  display: block;
  background: #fff;
  border-radius: 8px;
}

.labdel-banner-overlay{
    position: absolute;
  bottom: 18px;
  left: 0;
  color: #5a5a5a;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.labdel-banner-overlay span{
    display: block;
  font-size: 11px;
  margin-bottom: 4px;
}

.labdel-banner-overlay h2{
    font-size: 28px;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.labdel-banner-overlay p{
    text-align: justify;
    font-size: 14px;
  font-weight: 500;
}
.labdel-category-content{
    /* background:#edf2f3; */
    background: #ffe0cc40;
    border-radius:12px;
    padding:30px;
    border: 1px solid #ff7b22;
}

.labdel-category-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:30px;
}

.labdel-tab{
    border:none;
    background:#fff;
    padding: 6px 25px;
  border-radius: 8px;
  font-size: 15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.active-tab{
    background: #fff;
  color: #1dcafa;
  border: 2px solid #1dcafa;
}

.labdel-slider-wrapper{

    position:relative;
    width:100%;
}

.labdel-product-slider{
    overflow:hidden;
    width:100%;
}

.labdel-product-track{
    display:flex;
    gap:24px;
    transition:transform .6s ease;
    will-change:transform;
}

.labdel-product-card{
    flex:0 0 calc(33.333% - 16px);
    background:#fff;
    border-radius:8px;
    overflow:hidden;
}

.labdel-product-card img{
    width:100%;
    display:block;
}

.labdel-nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:50px;
    height:50px;
    border:none;
    border-radius: 8px;
  cursor: pointer;
  background: #ffffff59;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.labdel-prev{
    left:-25px;
}

.labdel-next{
    right:-25px;
}
.labdel-product-card:hover{
    /* transform:translateY(-8px); */
}

.labdel-product-image{
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px;
}

.labdel-product-image img{
    max-width: 100%;
  max-height: 170px;
  width: 170px;
}

.labdel-product-info{
    /* text-align:center; */
    padding: 8px;
}

.labdel-product-info h4{
    font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}

.labdel-product-info span{
   color: #1dcafa;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat',sans-serif;
}

.labdel-product-actions{
    display:flex;
    border-top:1px solid #eee;
}

.labdel-product-actions a{
    flex:1;
    text-align:center;
    padding:15px;
    color:#333;
    text-decoration:none;
}

.labdel-slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    background:#0d6efd;
    color:#fff;
    cursor:pointer;
    z-index:5;
}

.prev-btn{
    left:-22px;
}

.next-btn{
    right:-22px;
}

.skeleton{
    height:430px;
    border-radius:15px;
    background:linear-gradient(
    90deg,
    #e8e8e8 25%,
    #f5f5f5 50%,
    #e8e8e8 75%);
    background-size:200% 100%;
    animation:skeleton 1.2s infinite;
}

@keyframes skeleton{
    0%{
        background-position:200% 0;
    }
    100%{
        background-position:-200% 0;
    }
}

@keyframes fadeCard{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:992px){

.labdel-category-layout{
    grid-template-columns:1fr;
}

.labdel-product-track{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.labdel-product-track{
    grid-template-columns:1fr;
}

}

/* ----------------Featured Cards */

/* 
   LABDEL PRODUCTS SECTION
 */

.labdel-products-section{
    padding:60px 0;
    background:#f7fafc;
}

.labdel-product-grid{
    display:flex;
    flex-wrap:wrap;
    margin:0 -10px;
}

/* 5 Columns */

.labdel-product-col{
    width:25% !important;
    padding:10px !important;
}

/* Card */

.labdel-equipment-card{
    position:relative;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e7edf3;
    transition:.4s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.labdel-equipment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#1dcafa;
}

/* Badge */

.labdel-product-badge{
    position:absolute;
    top:15px;
    left:15px;
    z-index:2;
    background:#0d6efd;
    color:#fff;
    font-size:12px;
    padding:6px 12px;
    border-radius:50px;
    font-weight:600;
}

/* Image */

.labdel-equipment-image{
    height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #edf2f3;
}

.labdel-equipment-image img{
    max-width:100%;
    max-height:150px;
    object-fit:contain;
    transition:.4s ease;
}

.labdel-equipment-card:hover .labdel-equipment-image img{
    transform:scale(1.08);
}

/* Content */

.labdel-equipment-content{
    padding:20px;
    flex:1;
}

.labdel-equipment-content h4{
   font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
    color:#152238;
}

.labdel-equipment-tag{
    display:inline-block;
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

/* Specification */

.labdel-spec-list{
    list-style:none;
    padding:0;
    margin:0;
}

.labdel-spec-list li{
    font-size: 13px;
  color: #6e6e6e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.labdel-spec-list li span{
    color: #000;
    font-weight: 600;
}
.labdel-spec-list li::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#ff7b22;;
}

/* Footer */

.labdel-equipment-footer{
    border-top:1px solid #edf2f7;
    position:relative;
}

/* Get Quote */

.labdel-quote-btn{
    position:absolute;
    left: 0px;
  right: 0px;
    top: -41px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
}

.labdel-equipment-card:hover .labdel-quote-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.labdel-quote-btn a{
    display:block;
    text-align:center;
    background:#1dcafa;
    color:#fff;
    color: #fff;
  padding: 8px 12px;
    border-radius: 10px 10px 0 0;
    text-decoration:none;
    font-weight:600;
}

/* Actions */

.labdel-action-group{
    display:flex;
}

.labdel-action-group a{
    flex:1;
    height: 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-right:1px solid #edf2f7;
    color:#152238;
    font-size: 17px;
    text-decoration:none;
    transition:.3s;
}

.labdel-action-group a:last-child{
    border-right:none;
}

.labdel-action-group a:hover{
    background:#0d6efd;
    color:#fff;
}

/* 
   RESPONSIVE
 */

@media(max-width:1400px){

    .labdel-product-col{
        width:25%;
    }

}

@media(max-width:1200px){

    .labdel-product-col{
        width:33.333%;
    }

}

@media(max-width:768px){

    .labdel-product-col{
        width:50%;
    }

}

@media(max-width:576px){

    .labdel-product-col{
        width:100%;
    }

}