*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", Arial, Helvetica, sans-serif !important;
    /* font-family: "Poppins", sans-serif !important; */
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;

    color: #333333;
    background: #ffffff;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 
   LABTRO HEADER
 */

.labtro-header {
    width: 100%;

    position: relative;

    z-index: 999;

    background: #ffffff;
}


/* 
   COMMON CONTAINER
 */

.labtro-header .custom_container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;
}


/* 
   TOP HEADER
 */

.labtro-top-header {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}


.labtro-top-container {
    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* 
   LOGO
 */

.labtro-logo-area {
    flex: 0 0 auto;
}


.labtro-logo {
    display: flex;

    align-items: center;

    width: 190px;

    text-decoration: none;
}


.labtro-logo img {
    width: 100%;
    height: auto;

    max-height: 60px;

    object-fit: contain;

    display: block;
}


/* 
   STORE INFORMATION
 */

.labtro-store-info {
    flex: 1;

    display: flex;

    align-items: center;

    gap: 18px;

    padding-left: 15px;
}


.labtro-store-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #626b76;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease;
}
.labtro-store-location:hover {
    color: #1455a0;
}
.labtro-store-location > i:first-child {
    font-size: 19px;
    color: #737c87;
}
.labtro-store-location .bi-chevron-down {
    font-size: 9px;
    color: #929aa3;
}
.labtro-store-divider {
    width: 1px;
    height: 25px;
    background: #e4e7ea;
}
.labtro-opening-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #727b85;
    font-size: 14px;
    white-space: nowrap;
}
.labtro-opening-time strong {
    color: #1455a0;
    font-weight: 700;
}
/* 
   TOP RIGHT MENU
 */
.labtro-top-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
.labtro-top-menu a {
    color: rgb(119,119,119);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease;
    font-family: "Mulish", sans-serif;
}
.labtro-top-menu a:hover {
    color: rgb(36,36,36);
}
.labtro-top-menu > span {
    width: 1px;
    height: 18px;

    background: #e1e4e7;
}


.labtro-account {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.labtro-account i {
    font-size: 22px;

    color: #222f3e;
}


/* 
   MAIN NAVIGATION
 */

.labtro-navigation {
    width: 100%;

    background: #262756;
}


.labtro-nav-container {
    min-height: 60px;

    display: flex;

    align-items: center;

    gap: 0;
}


/* 
   ALL CATEGORIES
 */

/* .labtro-categories-wrapper {
    position: relative;

    flex: 0 0 auto;
} */


/* .labtro-all-categories {
    height: 60px;
    padding: 0 25px;
    border: 0;
    background: #104591;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.25s ease;
}


.labtro-all-categories:hover {
    background: #0d3d80;
}


.labtro-all-categories > i:first-child {
    font-size: 17px;

    opacity: 0.9;
} */


.category-arrow {
    margin-left: 4px;

    font-size: 9px;

    transition:
        transform 0.25s ease;
}


/* .labtro-categories-wrapper.open
.category-arrow {
    transform: rotate(180deg);
} */


/* 
   CATEGORIES DROPDOWN
 */

/* .labtro-categories-dropdown {
    width: 280px;

    min-height: 190px;

    padding: 20px;

    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    background: #ffffff;

    border: 1px solid #e7eaee;

    box-shadow:
        0 15px 40px rgba(
            0,
            0,
            0,
            0.10
        );

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
} */


/* .labtro-categories-wrapper.open
.labtro-categories-dropdown {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
} */


.labtro-category-placeholder {
    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.labtro-category-placeholder i {
    margin-bottom: 9px;

    color: #262756;

    font-size: 24px;
}


.labtro-category-placeholder h4 {
    margin: 0 0 5px;

    color: #253346;

    font-size: 13px;

    font-weight: 600;
}


.labtro-category-placeholder p {
    margin: 0;

    color: #929aa3;

    font-size: 9px;

    line-height: 1.6;
}


/* 
   MAIN MENU
 */

.labtro-main-menu {
    height: 70px;

    flex: 1;

    display: flex;

    align-items: center;

    padding-left: 12px;
}


.labtro-menu-link {
    height: 70px;

    padding:
        0 13px;

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


.labtro-menu-link::after {
    content: "";

    width: 0;
    height: 2px;

    position: absolute;

    left: 50%;
    bottom: 0;

    background: #ffffff;

    transform:
        translateX(-50%);

    transition:
        width 0.3s ease;
}


.labtro-menu-link:hover::after,
.labtro-menu-link.active::after {
    width: calc(100% - 26px);
}


.labtro-menu-link:hover,
.labtro-menu-link.active {
    color: #ffffff;
}


/* 
   SEARCH
 */

.labtro-search-wrapper {
    width: 400px;

    flex: 0 0 400px;

    position: relative;

    margin-left: auto;
}


.labtro-search {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
}


.labtro-search input {
    width: 100%;
    height: 100%;
    flex: 1;
    padding: 0 10px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #344255;
    font-family: inherit;
    font-size: 13px;
}


.labtro-search input::placeholder {
    color: #9aa1a9;
}


.labtro-search button {
    width: 48px;
    height: 100%;

    border: 0;

    background: transparent;

    color: #546171;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        color 0.25s ease;
}


.labtro-search button:hover {
    color: #262756;
}


.labtro-search button i {
    font-size: 18px;
}


/* 
   SEARCH SUGGESTION
 */

.labtro-search-suggestion {
    width: 100%;

    min-height: 100px;

    padding: 15px;

    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    background: #ffffff;

    border-radius: 3px;

    border: 1px solid #e8ebef;

    box-shadow:
        0 15px 35px rgba(
            0,
            0,
            0,
            0.12
        );

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(8px);

    transition:
        all 0.25s ease;

    z-index: 100;
}


.labtro-search-wrapper.search-open
.labtro-search-suggestion {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.labtro-search-placeholder {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 7px;

    text-align: center;

    color: #a1a8b0;

    font-size: 8px;
}


.labtro-search-placeholder i {
    font-size: 18px;

    color: #262756;
}


/* 
   GET QUOTE
 */

.labtro-get-quote {
    height: 40px;
    margin-left: 10px;
    padding:
        0 17px;
    border: 1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );
    border-radius: 3px;
    background: #ffffff;
    color: #262756;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        all 0.3s ease;
}


.labtro-get-quote i {
    font-size: 13px;
    transition:
        transform 0.3s ease;
}


.labtro-get-quote:hover {
    background: transparent;

    color: #ffffff;

    border-color: #ffffff;
}


.labtro-get-quote:hover i {
    transform:
        translateX(4px);
}


/* 
   MOBILE MENU BUTTON
 */

.labtro-mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #253346;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}


.labtro-mobile-menu-btn i {
    font-size: 25px;
}


/* 
   MOBILE NAVIGATION
 */

.labtro-mobile-navigation {
    width: 330px;
    max-width: 88%;

    height: 100vh;

    padding: 20px;

    position: fixed;

    top: 0;
    left: 0;

    background: #ffffff;

    z-index: 2000;

    transform:
        translateX(-100%);

    transition:
        transform 0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    overflow-y: auto;

    box-shadow:
        10px 0 40px
        rgba(
            0,
            0,
            0,
            0.12
        );
}


.labtro-mobile-navigation.open {
    transform:
        translateX(0);
}


/* Mobile Header */

.labtro-mobile-header {
    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #eeeeee;
}


.labtro-mobile-header span {
    color: #253346;

    font-size: 16px;

    font-weight: 700;
}


.labtro-mobile-header button {
    width: 35px;
    height: 35px;

    border: 0;

    background: #f3f5f7;

    border-radius: 50%;

    color: #455264;

    cursor: pointer;
}


/* Mobile Search */

.labtro-mobile-search {
    padding:
        18px 0;
}


.labtro-mobile-search form {
    height: 43px;

    border: 1px solid #e1e5e9;

    border-radius: 4px;

    display: flex;

    align-items: center;
}


.labtro-mobile-search input {
    min-width: 0;

    flex: 1;

    height: 100%;

    padding: 0 12px;

    border: 0;
    outline: 0;

    font-family: inherit;

    font-size: 10px;
}


.labtro-mobile-search button {
    width: 45px;
    height: 100%;

    border: 0;

    background: transparent;

    color: #262756;

    cursor: pointer;
}


/* Mobile Links */

.labtro-mobile-menu {
    display: flex;

    flex-direction: column;
}


.labtro-mobile-menu a {
    min-height: 48px;

    padding: 0 5px;

    border-bottom: 1px solid #eef0f2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #455264;

    font-size: 11px;

    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding 0.25s ease;
}


.labtro-mobile-menu a:hover,
.labtro-mobile-menu a.active {
    color: #262756;

    padding-left: 10px;
}


.labtro-mobile-menu a i {
    font-size: 10px;
}


/* Mobile Quote */

.labtro-mobile-quote {
    height: 45px;

    margin-top: 25px;

    padding: 0 17px;

    border-radius: 4px;

    background: #262756;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;
}


.labtro-mobile-quote i {
    font-size: 12px;
}


/* 
   MOBILE OVERLAY
 */

.labtro-mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 1999;

    background:
        rgba(
            10,
            20,
            30,
            0.45
        );

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.labtro-mobile-overlay.open {
    opacity: 1;

    visibility: visible;
}


/* 
   RESPONSIVE - 1200px
 */

@media (max-width: 1200px) {

    .labtro-header
    .custom_container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .labtro-menu-link {
        padding:
            0 8px;

        font-size: 10px;
    }


    .labtro-search-wrapper {
        width: 205px;

        flex-basis: 205px;
    }


    .labtro-get-quote {
        padding:
            0 12px;
    }

}


/* 
   RESPONSIVE - 991px
 */

@media (max-width: 991px) {

    .labtro-top-container {
        min-height: 75px;
    }


    .labtro-logo {
        width: 155px;
    }


    .labtro-store-info {
        display: none;
    }


    .labtro-top-menu {
        margin-left: auto;
    }


    .labtro-top-menu a {
        font-size: 11px;
    }


    .labtro-main-menu {
        display: none;
    }


    .labtro-navigation {
        display: none;
    }


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


    .labtro-top-menu {
        display: none;
    }

}

/* 
   RESPONSIVE - 575px
 */

@media (max-width: 575px) {

    .labtro-header
    .custom_container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .labtro-top-container {
        min-height: 68px;
    }


    .labtro-logo {
        width: 140px;
    }


    .labtro-mobile-menu-btn {
        width: 38px;
        height: 38px;
    }


    .labtro-mobile-navigation {
        width: 300px;
    }

}
/* -----banner section */

/* 
   LABTRO HERO SECTION
 */

.labtro-hero {
    width: 100%;
    height: 630px;

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(340px, 1fr);

    gap: 0;

    overflow: hidden;

    background: #eef3f8;
}


/* 
   LEFT HERO SLIDER
 */

.labtro-hero-slider {
    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;

    background: #edf2f7;
}


/* 
   SLIDE
 */

.labtro-hero-slide {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    display: grid;

    grid-template-columns: 43% 57%;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.015);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 1s ease;
        background: linear-gradient( 135deg, #dfe7ee 0%, #cdd7e0 100% );
}
.labtro-hero-slide::before{
    content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  right: -145px;
  top: -90px;
  border-radius: 50%;
  border: 35px solid rgba( 255, 255, 255, 0.25 );
    
}
.labtro-hero-slide::after{
    content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  left: -85px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba( 22, 77, 162, 0.08 );
}
.labtro-hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


/* 
   SLIDE CONTENT
 */

.labtro-slide-content {
    height: 100%;

    padding:
        0px
        45px
        80px
        clamp(35px, 5vw, 80px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 3;

    background:
        linear-gradient(
            135deg,
            #dfe7ee 0%,
            #cdd7e0 100%
        );

    /* overflow: hidden; */
}


/* Decorative Circle */

.labtro-slide-content::before {
    content: "";

    width: 260px;
    height: 260px;

    position: absolute;

    right: -145px;
    top: -90px;

    border-radius: 50%;

    border:
        35px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
}


/* Decorative Bottom */

.labtro-slide-content::after {
    content: "";

    width: 150px;
    height: 150px;

    position: absolute;

    left: -85px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(
            22,
            77,
            162,
            0.08
        );
}


/* 
   SUBTITLE
 */

.labtro-slide-subtitle {
    margin-bottom: 16px;

    color: #262756;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.4px;

    line-height: 1.4;

    opacity: 0;

    transform:
        translateX(-35px);

    transition:
        opacity 0.7s ease 0.15s,
        transform 0.7s ease 0.15s;
}


.labtro-hero-slide.active
.labtro-slide-subtitle {
    opacity: 1;

    transform:
        translateX(0);
}


/* 
   HEADING
 */

.labtro-slide-content h1 {
    max-width: 540px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(
        32px,
        4vw,
        56px
    );

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.2px;

    opacity: 0;

    transform:
        translateX(-45px);

    transition:
        opacity 0.75s ease 0.25s,
        transform 0.75s ease 0.25s;
}


.labtro-hero-slide.active
.labtro-slide-content h1 {
    opacity: 1;

    transform:
        translateX(0);
}


.labtro-slide-content h1 strong {
    display: block;

    color: #262756;

    font-weight: 700;
}


/* 
   DESCRIPTION
 */

.labtro-slide-content p {
    max-width: 480px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateX(-40px);

    transition:
        opacity 0.7s ease 0.35s,
        transform 0.7s ease 0.35s;
}


.labtro-hero-slide.active
.labtro-slide-content p {
    opacity: 1;

    transform:
        translateX(0);
}


/* 
   MAIN BUTTON
 */

.labtro-slide-btn {
    width: fit-content;

    min-height: 40px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    background: #262756;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;

    text-decoration: none;

    opacity: 0;

    transform:
        translateX(-35px);

    transition:
        opacity 0.7s ease 0.45s,
        transform 0.7s ease 0.45s,
        background 0.3s ease,
        gap 0.3s ease;
    
   
}


.labtro-hero-slide.active
.labtro-slide-btn {
    opacity: 1;

    transform:
        translateX(0);
}


.labtro-slide-btn:hover {
    background: #0c3c82;

    color: #ffffff;

    gap: 20px;
}


.labtro-slide-btn i {
    font-size: 13px;
}


/* 
   SLIDE IMAGE
 */

.labtro-slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    /* position: relative; */

    overflow: hidden;
    background: linear-gradient( 135deg, #dfe7ee 0%, #cdd7e0 100% );
    /* background: #d9e0e6; */
}


.labtro-slide-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(
                0,
                0,
                0,
                0.08
            ),
            transparent 35%
        );
}


.labtro-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    transform:
        scale(1.08);
    opacity: 0;
    transition:
        opacity 0.9s ease,
        transform 1.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
   max-width: 315px;
  margin: auto;
  max-height: 315px;
}


.labtro-hero-slide.active
.labtro-slide-image img {
    opacity: 1;

    transform:
        scale(1);
}


/* 
   SLIDER ARROWS
 */

.labtro-slider-arrow {
    width: 42px;
    height: 42px;

    position: absolute;

    top: 50%;

    z-index: 10;

    transform:
        translateY(-50%);

    border: 1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    border-radius: 3px;

    background:
        rgba(
            18,
            48,
            85,
            0.30
        );

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    backdrop-filter:
        blur(5px);

    transition:
        all 0.3s ease;
}


.labtro-slider-arrow:hover {
    background: #262756;

    border-color: #262756;

    transform:
        translateY(-50%)
        scale(1.08);
}


.labtro-slider-arrow i {
    font-size: 16px;
}


.labtro-slider-prev {
    left: 18px;
}


.labtro-slider-next {
    right: 18px;
}


/* 
   SLIDER DOTS
 */

.labtro-slider-dots {
    position: absolute;

    left: 50%;

    bottom: 22px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 7px;

    transform:
        translateX(-50%);
}


.labtro-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.55
        );

    cursor: pointer;

    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}


.labtro-dot.active {
    width: 26px;

    border-radius: 10px;

    background: #ffffff;
}


/* 
   RIGHT SIDE
 */

.labtro-hero-side {
    width: 100%;
    height: 100%;

    padding: 0;

    display: grid;

    grid-template-rows:
        1fr
        1fr;

    gap: 0;

    background: #262756;
}


/* 
   PROMOTIONAL CARD
 */

.labtro-promo-card {
    width: 100%;
    min-height: 0;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: stretch;
}


/* 
   FIRST PROMO CARD
 */

.labtro-promo-equipment {
    background: #262756;
}


.labtro-promo-equipment
.labtro-promo-content {
    width: 58%;

    padding:
        18px 20px 30px 38px;

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.labtro-promo-equipment
.labtro-promo-image {
    width: 42%;

    height: 100%;

    position: absolute;

    right: 0;
    top: 0;

    overflow: hidden;
}


.labtro-promo-equipment
.labtro-promo-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.labtro-promo-equipment:hover
.labtro-promo-image img {
    transform:
        scale(1.07);
}


/* Image Overlay */

.labtro-promo-equipment
.labtro-promo-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #262756 0%,
            rgba(
                22,
                77,
                162,
                0.25
            ) 50%,
            transparent 100%
        );
}


/* 
   PROMO LABEL
 */

.labtro-promo-label {
    margin-bottom: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.2px;
}


/* 
   PROMO HEADING
 */

.labtro-promo-card h2 {
    max-width: 360px;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(
        22px,
        2vw,
        31px
    );

    font-weight: 700;

    line-height: 1.15;
}


/* 
   PROMO TEXT
 */

.labtro-promo-card p {
    max-width: 330px;

    margin: 0 0 18px;

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

    font-size: 10px;

    line-height: 1.7;
}


/* 
   PROMO BUTTON
 */

.labtro-promo-btn {
    width: fit-content;

    min-height: 30px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: #ffffff;

    color: #262756;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.3s ease;
}


.labtro-promo-btn:hover {
    background: #0c3c82;

    color: #ffffff;

    gap: 13px;
}


.labtro-promo-btn i {
    font-size: 10px;
}


/* 
   SECOND CARD
 */

.labtro-promo-catalog {
    background:
        linear-gradient(
            135deg,
            #f0b66f 0%,
            #eaa75c 100%
        );
}


.labtro-catalog-content {
    width: 62%;

    padding:
        0px 15px 30px 38px;

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.labtro-promo-catalog
.labtro-promo-label {
    color:
        rgba(
            67,
            45,
            25,
            0.65
        );
}


.labtro-promo-catalog h2 {
    color: #ffffff;
}


.labtro-promo-catalog p {
    color:
        rgba(
            255,
            255,
            255,
            0.9
        );
}


.labtro-promo-catalog
.labtro-promo-btn {
    background: #262756;

    color: #ffffff;
}


.labtro-promo-catalog
.labtro-promo-btn:hover {
    background: #0c3c82;
}


/* 
   CATALOG GRAPHIC
 */

.labtro-catalog-shape {
    width: 43%;

    height: 100%;

    position: absolute;

    right: 0;
    top: 0;
}


.labtro-catalog-circle {
    width: 220px;
    height: 220px;

    position: absolute;

    right: -60px;
    bottom: -95px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );
}


.labtro-catalog-box {
    width: 120px;
    height: 145px;

    position: absolute;

    right: 45px;
    top: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform:
        translateY(-50%)
        rotate(5deg);

    border-radius: 4px;

    background: #ffffff;

    box-shadow:
        0 15px 30px
        rgba(
            79,
            46,
            15,
            0.18
        );

    transition:
        transform 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.labtro-promo-catalog:hover
.labtro-catalog-box {
    transform:
        translateY(-50%)
        rotate(0deg)
        translateY(-7px);
}


.labtro-catalog-box i {
    margin-bottom: 8px;

    color: #262756;

    font-size: 34px;
}


.labtro-catalog-box span {
    color: #777777;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


.labtro-catalog-box strong {
    margin-top: 2px;

    color: #262756;

    font-size: 14px;

    font-weight: 800;
}


/* 
   RESPONSIVE - 1300px
 */

@media (max-width: 1300px) {

    .labtro-hero {
        height: 560px;
    }


    .labtro-slide-content {
        padding-left: 45px;
    }


    .labtro-slide-content h1 {
        font-size: 42px;
    }


    .labtro-promo-equipment
    .labtro-promo-content,
    .labtro-catalog-content {
        padding-left: 28px;
    }


    .labtro-promo-card h2 {
        font-size: 25px;
    }

}


/* 
   RESPONSIVE - 1100px
 */

@media (max-width: 1100px) {

    .labtro-hero {
        height: 520px;
    }


    .labtro-hero-slide {
        grid-template-columns: 48% 52%;
    }


    .labtro-slide-content {
        padding:
            40px 25px 55px 35px;
    }


    .labtro-slide-content h1 {
        font-size: 36px;
    }


    .labtro-slide-content p {
        font-size: 11px;
    }


    .labtro-promo-equipment
    .labtro-promo-content,
    .labtro-catalog-content {
        width: 70%;

        padding-left: 25px;
    }


    .labtro-promo-equipment
    .labtro-promo-image {
        width: 45%;

        opacity: 0.75;
    }


    .labtro-catalog-shape {
        width: 38%;
    }


    .labtro-catalog-box {
        right: 15px;

        width: 95px;
        height: 120px;
    }

}


/* 
   RESPONSIVE - 900px
 */

@media (max-width: 900px) {

    .labtro-hero {
        height: auto;

        display: block;
    }


    .labtro-hero-slider {
        height: 510px;
    }


    .labtro-hero-side {
        height: auto;

        grid-template-columns:
            1fr 1fr;

        grid-template-rows: 250px;
    }


    .labtro-promo-card {
        min-height: 250px;
    }

}


/* 
   RESPONSIVE - 767px
 */

@media (max-width: 767px) {

    .labtro-hero-slider {
        height: 560px;
    }


    .labtro-hero-slide {
        grid-template-columns: 1fr;
    }


    .labtro-slide-content {
        width: 100%;
        height: 100%;

        padding:
            45px 55px 70px;
    }


    .labtro-slide-image {
        display: none;
    }


    .labtro-slide-content h1 {
        max-width: 500px;

        font-size: 40px;
    }


    .labtro-slide-content p {
        max-width: 480px;

        font-size: 12px;
    }


    .labtro-slider-prev {
        left: 12px;
    }


    .labtro-slider-next {
        right: 12px;
    }


    .labtro-hero-side {
        grid-template-columns: 1fr;

        grid-template-rows:
            260px
            260px;
    }


    .labtro-promo-card {
        min-height: 260px;
    }

}


/* 
   RESPONSIVE - 575px
 */

@media (max-width: 575px) {

    .labtro-hero-slider {
        height: 500px;
    }


    .labtro-slide-content {
        padding:
            35px 35px 65px;
    }


    .labtro-slide-subtitle {
        font-size: 11px;
    }


    .labtro-slide-content h1 {
        font-size: 31px;

        letter-spacing: -0.5px;
    }


    .labtro-slide-content p {
        font-size: 11px;

        line-height: 1.7;
    }


    .labtro-slider-arrow {
        width: 35px;
        height: 35px;
    }


    .labtro-slide-btn {
        min-height: 43px;

        padding:
            0 15px;

        font-size: 9px;
    }


    .labtro-promo-equipment
    .labtro-promo-content,
    .labtro-catalog-content {
        width: 72%;

        padding:
            25px 15px 25px 25px;
    }


    .labtro-promo-equipment
    .labtro-promo-image {
        width: 50%;

        opacity: 0.45;
    }


    .labtro-promo-card h2 {
        font-size: 21px;
    }


    .labtro-promo-card p {
        font-size: 9px;

        max-width: 230px;
    }


    .labtro-catalog-shape {
        width: 40%;
    }


    .labtro-catalog-box {
        width: 75px;
        height: 95px;

        right: 10px;
    }


    .labtro-catalog-box i {
        font-size: 25px;
    }


    .labtro-catalog-box strong {
        font-size: 10px;
    }

}

/* -------------------------Dropdown categories */

/* 
   LABTRO ALL CATEGORIES
 */

.labtro-categories-wrapper {
    width: 100%;
    height: 52px;
    position: relative;
    z-index: 1000;
}


/* 
   ALL CATEGORIES BUTTON
 */

.labtro-all-categories {
    width: 100%;
    height: 52px;
    max-width: 220px;
    padding: 0 20px;

    border: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    background: #103e85 !important;

    color: #ffffff;

    font-family: inherit;

    /* font-size: 13px; */
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease;
}


.labtro-all-categories:hover,
.labtro-all-categories.active {
    background: #103e85;
}


.labtro-all-categories-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
}


.labtro-all-categories-icon i {
    font-size: 17px;
}


.labtro-all-categories-text {
    flex: 1;

    text-align: left;

    white-space: nowrap;
}


.labtro-category-arrow {
    font-size: 11px;

    transition:
        transform 0.35s ease;
}


.labtro-all-categories.active
.labtro-category-arrow {
    transform: rotate(180deg);
}


/* 
   MAIN DROPDOWN
 */

.labtro-categories-dropdown {
    width: 100%;
    min-width: 1378px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 0 0 5px 5px;
    box-shadow:
        0 18px 45px
        rgba(
            15,
            38,
            70,
            0.16
        );

    opacity: 0;
    visibility: hidden;
    transform:
        translateY(12px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
    overflow: hidden;
}


.labtro-categories-wrapper:hover
.labtro-categories-dropdown,
.labtro-categories-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* 
   INNER
 */

.labtro-categories-inner {
    width: 100%;

    min-height: 475px;

    display: grid;

    grid-template-columns:
        265px
        minmax(0, 1fr);
}


/* 
   LEFT SIDEBAR
 */

.labtro-category-sidebar {
    width: 100%;

    padding: 12px 0;

    background: #f7f9fc;

    border-right: 1px solid #e5e9ef;

    overflow-y: auto;
}


.labtro-category-item {
    width: 100%;

    min-height: 52px;

    padding:
        7px 17px;

    display: flex;

    align-items: center;

    gap: 11px;

    position: relative;

    cursor: pointer;

    color: #46515f;

    background: transparent;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding 0.25s ease;
}


.labtro-category-item:hover,
.labtro-category-item.active {
    color: #262756;

    background: #ffffff;

    padding-left: 21px;
}


.labtro-category-item.active::before {
    content: "";

    width: 3px;

    height: 28px;

    position: absolute;

    left: 0;

    top: 50%;

    transform:
        translateY(-50%);

    background: #262756;

    border-radius:
        0 4px 4px 0;
}


/* 
   CATEGORY ICON
 */

.labtro-category-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: #ffffff;

    border: 1px solid #e6ebf1;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.labtro-category-item:hover
.labtro-category-icon,
.labtro-category-item.active
.labtro-category-icon {
    border-color: #c7d7ee;

    transform:
        scale(1.05);
}


.labtro-category-icon img {
    width: 25px;
    height: 25px;

    object-fit: contain;
}


.labtro-category-name {
    flex: 1;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.4;
}


.labtro-category-item-arrow {
    color: #a1aab6;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.labtro-category-item:hover
.labtro-category-item-arrow,
.labtro-category-item.active
.labtro-category-item-arrow {
    color: #262756;

    transform:
        translateX(3px);
}


/* 
   VIEW ALL CATEGORIES
 */

.labtro-view-all-categories {
    margin:
        12px 17px 3px;

    min-height: 42px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #dce4ee;

    border-radius: 4px;

    color: #262756;

    background: #ffffff;

    font-size: 10px;

    font-weight: 600;

    transition:
        all 0.3s ease;
}


.labtro-view-all-categories:hover {
    color: #ffffff;

    background: #262756;

    border-color: #262756;
}


.labtro-view-all-categories i {
    font-size: 11px;

    transition:
        transform 0.3s ease;
}


.labtro-view-all-categories:hover i {
    transform:
        translateX(4px);
}


/* 
   RIGHT CONTENT
 */

.labtro-category-mega-content {
    min-width: 0;

    position: relative;

    background: #ffffff;

    overflow: hidden;
}


/* 
   MEGA PANEL
 */

.labtro-mega-panel {
    width: 100%;

    min-height: 475px;

    padding: 27px 30px;

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s ease;
}


.labtro-mega-panel.active {
    position: relative;

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);
}


/* 
   MEGA HEADER
 */

.labtro-mega-header {
    min-height: 75px;

    padding-bottom: 19px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #edf0f4;
}


.labtro-mega-label {
    display: block;

    margin-bottom: 5px;

    color: #262756;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.labtro-mega-title {
    display: block;

    margin-bottom: 7px;

    color: #1d2733;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.2;
}


.labtro-mega-description {
    max-width: 570px;

    margin: 0;

    color: #788392;

    font-size: 10px;

    line-height: 1.7;
}


.labtro-mega-view-all {
    flex-shrink: 0;

    margin-top: 4px;

    padding:
        9px 13px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: 1px solid #dce4ee;

    color: #262756;

    font-size: 9px;

    font-weight: 600;

    transition:
        all 0.3s ease;
}


.labtro-mega-view-all:hover {
    color: #ffffff;

    background: #262756;

    border-color: #262756;
}


.labtro-mega-view-all i {
    transition:
        transform 0.3s ease;
}


.labtro-mega-view-all:hover i {
    transform:
        translateX(3px);
}


/* 
   MEGA GRID
 */

.labtro-mega-grid {
    width: 100%;

    padding-top: 23px;

    display: grid;

    grid-template-columns:
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(190px, 0.9fr);

    gap: 25px;
}


/* 
   SUBCATEGORY COLUMN
 */

.labtro-subcategory-column {
    min-width: 0;

    padding-right: 12px;
}


.labtro-subcategory-heading {
    min-height: 37px;

    margin-bottom: 8px;

    padding-bottom: 9px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: #1f2c3b;

    border-bottom: 1px solid #edf0f4;

    font-size: 11px;

    font-weight: 700;
}


.labtro-subcategory-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    background: #edf4fd;

    color: #262756;
}


.labtro-subcategory-icon i {
    font-size: 12px;
}


.labtro-subcategory-column > a {
    display: block;

    padding:
        5px 0;

    color: #687484;

    font-size: 10px;

    line-height: 1.5;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.labtro-subcategory-column > a:hover {
    color: #262756;

    padding-left: 5px;
}


.labtro-subcategory-column > a::before {
    content: "";

    width: 4px;
    height: 4px;

    margin-right: 7px;

    display: inline-block;

    vertical-align: middle;

    border-radius: 50%;

    background: #cbd3dc;

    transition:
        background 0.25s ease;
}


.labtro-subcategory-column > a:hover::before {
    background: #262756;
}


/* 
   FEATURED IMAGE
 */

.labtro-mega-featured {
    min-height: 300px;

    position: relative;

    overflow: hidden;

    border-radius: 5px;

    background: #262756;
}


.labtro-featured-image {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;
}


.labtro-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;
}


.labtro-mega-featured:hover
.labtro-featured-image img {
    transform:
        scale(1.06);
}


.labtro-featured-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(
                10,
                31,
                59,
                0.05
            ) 20%,
            rgba(
                10,
                31,
                59,
                0.85
            ) 100%
        );
}


/* 
   FEATURED CONTENT
 */

.labtro-featured-content {
    position: absolute;

    left: 19px;
    right: 19px;
    bottom: 18px;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.labtro-featured-content span {
    margin-bottom: 5px;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.1px;
}


.labtro-featured-content strong {
    margin-bottom: 13px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2;
}


.labtro-featured-content a {
    padding:
        8px 11px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #262756;

    background: #ffffff;

    font-size: 8px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}


.labtro-featured-content a:hover {
    color: #ffffff;

    background: #262756;
}


.labtro-featured-content a i {
    transition:
        transform 0.3s ease;
}


.labtro-featured-content a:hover i {
    transform:
        translateX(3px);
}


/* 
   SCROLLBAR
 */

.labtro-category-sidebar::-webkit-scrollbar {
    width: 4px;
}


.labtro-category-sidebar::-webkit-scrollbar-track {
    background: #f7f9fc;
}


.labtro-category-sidebar::-webkit-scrollbar-thumb {
    background: #ccd5df;

    border-radius: 10px;
}


/* 
   LARGE DESKTOP
 */

@media (min-width: 1400px) {

    .labtro-categories-inner {
        min-height: 510px;

        grid-template-columns:
            285px
            minmax(0, 1fr);
    }


    .labtro-mega-panel {
        min-height: 510px;

        padding:
            32px 38px;
    }


    .labtro-category-item {
        min-height: 56px;
    }


    .labtro-mega-grid {
        gap: 35px;
    }

}


/* 
   TABLET / SMALL DESKTOP
 */

@media (max-width: 1100px) {

    .labtro-categories-inner {
        grid-template-columns:
            225px
            minmax(0, 1fr);
    }


    .labtro-category-item {
        padding-left: 12px;
        padding-right: 12px;
    }


    .labtro-category-item:hover,
    .labtro-category-item.active {
        padding-left: 15px;
    }


    .labtro-mega-panel {
        padding:
            22px 20px;
    }


    .labtro-mega-grid {
        grid-template-columns:
            1fr
            1fr
            180px;

        gap: 15px;
    }


    .labtro-mega-title {
        font-size: 18px;
    }

}


/* 
   TABLET
 */

@media (max-width: 850px) {

    .labtro-categories-inner {
        grid-template-columns:
            200px
            minmax(0, 1fr);
    }


    .labtro-mega-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    .labtro-mega-featured {
        display: none;
    }


    .labtro-mega-description {
        max-width: 400px;
    }

}


/* 
   MOBILE
 */

@media (max-width: 767px) {

    .labtro-categories-dropdown {
        width: 100%;

        max-height:
            calc(100vh - 100px);

        overflow-y: auto;
    }


    .labtro-categories-inner {
        display: block;

        min-height: auto;
    }


    .labtro-category-sidebar {
        border-right: 0;

        border-bottom:
            1px solid #e5e9ef;

        overflow: visible;
    }


    .labtro-category-item {
        min-height: 48px;
    }


    .labtro-category-mega-content {
        min-height: 0;
    }


    .labtro-mega-panel {
        min-height: auto;

        position: relative;

        display: none;

        padding:
            22px 18px;
    }


    .labtro-mega-panel.active {
        display: block;
    }


    .labtro-mega-grid {
        grid-template-columns: 1fr;
    }


    .labtro-mega-featured {
        display: block;

        min-height: 220px;
    }

}
/* ---------------------------------popular category section */
.custom_container{
    width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.popular-categories {
  width: min(100% - 64px, var(--container-width));
  margin: 38px auto 48px;
}

.popular-categories h1 {
  margin: 0 0 50px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Mulish", sans-serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 52px;
  row-gap: 64px;
}

.category-card {
  min-width: 0;
  text-align: center;
}

.category-image {
  width: 138px;
  height: 138px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(15,15,15,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 12px 25px rgba(32, 37, 43, 0.12); */
}

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

.category-card h2 {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}

.category-card h2 a {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
}

.category-card h2 a:hover {
  color: #1769aa;
}

.category-card h2 a:focus-visible,
.category-image:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: 4px;
  border-radius: 4px;
}

.product-count {
  margin: 0;
  color: #999;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 54px;
  }
}

@media (max-width: 650px) {
  .popular-categories {
    width: min(100% - 32px, 500px);
    margin-top: 28px;
  }

  .popular-categories h1 {
    margin-bottom: 35px;
    font-size: 27px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
    row-gap: 42px;
  }

  .category-image {
    width: 115px;
    height: 115px;
    margin-bottom: 18px;
  }

  .category-card h2 {
    font-size: 17px;
  }

  .product-count {
    font-size: 16px;
  }
}
/* ---------------------------------Featured product section */

/* 
   FEATURED PRODUCTS SECTION
 */

.featured-products {
    width: 100%;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    user-select: none;
}


/* 
   CONTAINER
 */

.featured-products .custom_container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* 
   SECTION HEADING
 */

.featured-products-heading {
    width: 100%;
    padding-top: 65px;
    padding-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.featured-products-heading-content {
    max-width: 720px;
}


.featured-products-subtitle {
    display: block;
    margin-bottom: 8px;
    color: #1655a6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


.featured-products-title {
    margin: 0 0 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Mulish", sans-serif;
}


.featured-products-description {
    max-width: 650px;
    margin: 12px 0 0;
    color: #788494;
    font-size: 13px;
    line-height: 1.7;
}


/* 
   CATEGORY TABS
 */

.featured-products-tabs-wrapper {
    width: 100%;
    padding-bottom: 25px;
}


.featured-products-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    /* border-bottom: 1px solid #e4e9ef; */
    overflow-x: auto;
    scrollbar-width: none;
    background: #f7f9fc;
}


.featured-products-tabs::-webkit-scrollbar {
    display: none;
}


.featured-products-tab {
    flex-shrink: 0;
    position: relative;
    padding: 13px 19px;
    border: 0;
    background: transparent;
    color: #687584;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease;
     font-family: "Mulish", sans-serif;
}


.featured-products-tab::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -1px;
    background: #1655a6;
    transform: translateX(-50%);
    transition:
        width 0.3s ease;
}


.featured-products-tab:hover {
    color: #1655a6;
}


.featured-products-tab.active {
    color: #1655a6;
}


.featured-products-tab.active::after {
    width: 100%;
}


/* 
   PRODUCT GRID
   IMPORTANT:
   Spacing is controlled ONLY by grid gap.
   No margin/padding is applied to cards.
 */

.featured-product-grid {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;

    padding:
        0 30px 120px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0px;
      align-items: start;
}


/* 
   PRODUCT CARD
   NO BORDER RADIUS
   NO MARGIN
   NO PADDING
 */

.featured-product-card {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    position: relative;
    align-self: start;
    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 0;

    overflow: visible;

    cursor: default;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

    user-select: none;
    -webkit-user-select: none;
}


.featured-product-card:hover {
    border-color: #cbd8e7;

    box-shadow:
        0 15px 35px
        rgba(
            20,
            54,
            94,
            0.10
        );

    /* transform:
        translateY(-4px); */
     z-index: 10;
}


/* 
   PRODUCT IMAGE
 */

.featured-product-image {
    width: 100%;
    height: 245px;

    position: relative;

    background: #f7f9fb;

    overflow: hidden;
}


.featured-product-image-link {
    width: 100%;
    height: 100%;

    display: block;

}


.featured-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;

    transition:
        transform 0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

        max-width: 180px;
  max-height: 180px;
  margin: 35px auto;
}


.featured-product-card:hover
.featured-product-image img {
    transform:
        scale(1.055);
}


/* 
   PRODUCT CATEGORY BADGE
 */

.featured-product-category {
    position: absolute;

    top: 13px;
    left: 13px;

    padding:
        6px 9px;

    background: #ffffff;

    color: #1655a6;

    border: 1px solid #dfe6ef;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* 
   PRODUCT CONTENT
 */

.featured-product-content {
    width: 100%;
    position: relative;

    padding:
        17px;
}


/* 
   PRODUCT NAME
 */

.featured-product-name {
    display: block;

    min-height: 23px;

    margin: 0;

    color: #1c2938;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.25s ease;

    font-family: "Mulish", sans-serif;
}


.featured-product-name:hover {
    color: #1655a6;
}


/* 
   BUTTON GROUP
 */

.featured-product-actions {
    width: 100%;

    margin-top: 14px;

    display: grid;

    /* grid-template-columns:
        1fr 1fr; */
grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 7px;
}


.featured-product-btn {
    width: 100%;
    min-height: 30px;
     font-family: "Mulish", sans-serif;
    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        8px 10px;

    font-size: 15px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease;
}


/* Get Quote */

.featured-product-quote {
    color: #ffffff;

    background: #262756;

    border: 1px solid #262756;
}


.featured-product-quote:hover {
    color: #ffffff;

    background: #103f80;

    border-color: #103f80;

    transform:
        translateY(-1px);
}


/* Catalog */

.featured-product-catalog {
    color: #262756 !important;

    background: #ffffff;

    border: 1px solid #cbd8e5;
}


.featured-product-catalog:hover {
    color: #ffffff !important;

    background: #262756;

    border-color: #262756;

    transform:
        translateY(-1px);
}


/* 
   SPECIFICATIONS
 */

.featured-product-specifications {
    width: 100%;
     margin-top: 0;
    max-height: 0;

    opacity: 0;

    overflow: hidden;

    transform:
        translateY(-7px);

    visibility: hidden;

    transition:
        max-height 0.4s
        ease,
        opacity 0.25s ease,
        transform 0.3s ease,
        margin-top 0.3s ease,
        visibility 0.3s ease;
padding: 16px 16px 16px 16px;
}


/*
   SHOW SPECIFICATIONS
   ON CARD HOVER
*/

.featured-product-card:hover
.featured-product-specifications {
    height: 100%;
    min-height: 145px;
    opacity: 1;
     visibility: visible;
    transform:
        translateY(0);

    /* margin-top: 14px; */


    position: absolute;
  width: 100%;
  left: 0;
  z-index: 999;
  top: 90px;
  background: #fff;
  overflow: visible;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}


/* 
   SPECIFICATION TITLE
 */

.featured-product-spec-title {
    padding-top: 12px;

    margin-bottom: 8px;

    border-top:
        1px solid #e8edf2;

    color: #263545;

    font-size: 13px;

    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;

    letter-spacing: 0.7px;
    font-family: "Mulish", sans-serif;
}


/* 
   SPECIFICATION LIST
 */

.featured-product-specifications ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.featured-product-specifications li {
    min-height: 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    border-bottom:
        1px solid #f0f2f5;

    color: #7a8592;

    font-size: 12px;

    line-height: 1.4;

     font-family: "Mulish", sans-serif;
}


.featured-product-specifications li:last-child {
    border-bottom: 0;
}


.featured-product-specifications li span {
    flex: 1;
     min-width: 0;  
}


.featured-product-specifications li strong {
    flex-shrink: 0;

    color: #3c4958;

    font-size: 12px;

    font-weight: 600;

    text-align: right;
     font-family: "Mulish", sans-serif;
}


/* 
   TAB HIDDEN STATE
 */

.featured-product-card.featured-product-hidden {
    display: none;
}


/* 
   CARD APPEAR ANIMATION
 */

.featured-product-card.featured-product-show {
    animation:
        featuredProductShow
        0.4s
        ease
        both;
}


@keyframes featuredProductShow {

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

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

}


/* 
   DISABLE IMAGE / TEXT DRAGGING
 */

.featured-product-card,
.featured-product-card *,
.featured-product-card img {
    -webkit-user-drag: none;
}


.featured-product-card img {
    user-select: none;
}


/* 
   LARGE DESKTOP
 */

@media (max-width: 1200px) {

    .featured-product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* 
   TABLET
 */

@media (max-width: 900px) {

    .featured-products .custom_container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .featured-product-grid {
        padding-left: 22px;
        padding-right: 22px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .featured-products-heading {
        padding-top: 50px;
    }


    .featured-products-title {
        font-size: 28px;
    }

}


/* 
   MOBILE
 */

@media (max-width: 576px) {

    .featured-products .custom_container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .featured-products-heading {
        padding-top: 40px;
        padding-bottom: 22px;
    }


    .featured-products-title {
        font-size: 24px;
    }


    .featured-products-description {
        font-size: 12px;
    }


    .featured-products-tabs-wrapper {
        padding-bottom: 20px;
    }


    .featured-products-tab {
        padding:
            12px 13px;

        font-size: 11px;
    }


    .featured-product-grid {
        padding:
            0 15px 50px;

        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .featured-product-image {
        height: 260px;
    }

}


/* 
   VERY SMALL MOBILE
 */

@media (max-width: 380px) {

    .featured-product-actions {
        grid-template-columns:
            1fr;
    }


    .featured-product-image {
        height: 230px;
    }

}

/* ------------------------Vertical tab section */

/* 
   FEATURED CATEGORY SECTION
 */

.verti-slide {
    width: 100%;
    padding: 75px 0;

    background: #f7f9fc;
    margin-bottom: 70px;
    overflow: hidden;
}


.verti-slide .custom_container {
    width: 100%;
}


/* 
   SECTION HEADING
 */

.verti-slide-heading {
    width: 100%;
    margin-bottom: 35px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.verti-slide-subtitle {
    display: block;

    margin-bottom: 8px;

    color: #262756;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.verti-slide-title {
   margin: 0 0 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Mulish", sans-serif;
}


.verti-slide-description {
    max-width: 650px;
    margin: 0;
    color: #788493;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}


/* 
   MAIN AREA
 */

.verti-slide-main {
    width: 100%;

    display: grid;

    grid-template-columns:
        300px minmax(0, 1fr);

    gap: 25px;

    align-items: stretch;
}

/* 
   LEFT TAB AREA
 */

.verti-slide-tabs-wrapper {
    width: 100%;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 5px;

    overflow: hidden;
}


.verti-slide-tabs {
    width: 100%;
}


/* 
   VERTICAL TAB
 */

.verti-slide-tab {
    width: 100%;

    min-height: 67px;

    padding:
        9px 12px;

    border: 0;

    border-bottom:
        1px solid #edf0f4;

    background: #ffffff;

    display: flex;

    align-items: center;

    gap: 10px;

    text-align: left;

    cursor: pointer;

    position: relative;

    color: #53606f;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        padding 0.3s ease;
}


.verti-slide-tab:last-child {
    border-bottom: 0;
}


.verti-slide-tab:hover {
    background: #f7faff;

    color: #262756;

    padding-left: 16px;
}


.verti-slide-tab.active {
    color: #262756;

    background:
        linear-gradient(
            90deg,
            #edf4ff 0%,
            #ffffff 100%
        );

    padding-left: 16px;
}

/* 
   TAB ICON
 */

.verti-slide-tab-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    /* background: #f1f5fa; */

    /* border: 1px solid #e4eaf1; */

    border-radius: 5px;

    color: #262756;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.verti-slide-tab-icon img{
    width: 100%;
}

.verti-slide-tab:hover
.verti-slide-tab-icon,
.verti-slide-tab.active
.verti-slide-tab-icon {
    /* background: #ffffff; */

    transform: scale(1.05);
}


.verti-slide-tab-icon i {
    font-size: 17px;
}


/* 
   TAB CONTENT
 */

.verti-slide-tab-content {
    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.verti-slide-tab-name {
    color: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    font-family: "Mulish", sans-serif;
}


.verti-slide-tab-count {
    color: #9aa5b1;
    font-size: 12px;
    line-height: 1.3;
    transition:color 0.3s ease;
    font-family: "Mulish", sans-serif;
}


.verti-slide-tab.active
.verti-slide-tab-count {
    color: #5f7fac;
}


/* 
   TAB ARROW
 */

.verti-slide-tab-arrow {
    color: #a8b1bc;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.verti-slide-tab:hover
.verti-slide-tab-arrow,
.verti-slide-tab.active
.verti-slide-tab-arrow {
    color: #262756;

    transform:
        translateX(3px);
}


/* 
   VIEW ALL CATEGORIES
 */

.verti-slide-view-all {
    min-height: 50px;

    margin-top: auto;

    padding:
        0 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #262756;

    border-top:
        1px solid #e5eaf0;

    background: #ffffff;

    font-size: 9px;

    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.verti-slide-view-all:hover {
    color: #ffffff;

    background: #262756;
}
.verti-slide-view-all span{
    color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  font-family: "Mulish", sans-serif;
}

.verti-slide-view-all i {
    transition:
        transform 0.3s ease;
}


.verti-slide-view-all:hover i {
    transform:
        translateX(4px);
}


/* 
   PRODUCTS AREA
 */

.verti-slide-products-wrapper {
    min-width: 0;

    display: flex;

    flex-direction: column;
}


/* 
   PRODUCTS HEADER
 */

.verti-slide-products-header {
    min-height: 52px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #fff;
  padding: 12px 20px 11px;
  border-radius: 3px;
  border: 1px solid #e1e1e1
}


.verti-slide-current-label {
    display: block;
    margin-bottom: 3px;
    color: #1d2938;
    font-size: 24px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}


.verti-slide-current-info {
    display: block;
    color: #8b96a3;
    font-size: 12px;
    font-weight: 400;
     font-family: "Mulish", sans-serif;
     margin-bottom: 6px;
}


/* 
   SLIDER NAVIGATION
 */

.verti-slide-navigation {
    display: flex;

    align-items: center;

    gap: 7px;
}


.verti-slide-nav {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dce3eb;

    border-radius: 4px;

    background: #ffffff;

    color: #566474;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.verti-slide-nav:hover:not(:disabled) {
    color: #ffffff;

    background: #262756;

    border-color: #262756;

    transform: translateY(-2px);
}


.verti-slide-nav:disabled {
    opacity: 0.35;

    cursor: not-allowed;
}


.verti-slide-nav i {
    font-size: 13px;
}


/* 
   SLIDER
 */

.verti-slide-slider {
    width: 100%;

    overflow: hidden;
}


.verti-slide-track {
    width: 100%;

    display: flex;

    gap: 18px;

    transition:
        transform 0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* 
   PRODUCT CARD
 */

.vertical-product-card {
   width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  position: relative;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e4e9ef;
  border-radius: 3px;
  overflow: visible;
  cursor: default;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
}


.vertical-product-card:hover {
    /* transform:
        translateY(-5px); */

    border-color:
        #d5e1ef;

    box-shadow:
        0 14px 32px
        rgba(
            26,
            48,
            74,
            0.10
        );
}


/* 
   PRODUCT IMAGE
 */

.vertical-product-image {
    width: 100%;
    height: 190px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f8fafc,
            #eef3f8
        );

    overflow: hidden;
}


.vertical-product-image-link {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}


.vertical-product-image img {
    width: 80%;
    height: 80%;

    object-fit: contain;

    display: block;

    transition:
        transform 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.vertical-product-card:hover
.vertical-product-image img {
    transform:
        scale(1.07);
}


/* 
   PRODUCT CONTENT
 */

.vertical-product-content {
    padding:
        15px 15px 16px;
}


.vertical-product-name {
    display: block;
  min-height: 23px;
  margin: 0;
  color: #1c2938;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
  font-family: "Mulish", sans-serif;
}


.vertical-product-name:hover {
    color: #262756;
}


/* 
   PRODUCT ACTIONS
 */

.vertical-product-actions {
    width: 100%;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}


.vertical-product-btn {
   width: 100%;
  min-height: 30px;
  font-family: "Mulish", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}


.vertical-product-quote {
    color: #ffffff;

    background: #262756;

    border: 1px solid #262756;
}


.vertical-product-quote:hover {
    color: #262756;

    background: #ffffff;
}


.vertical-product-catalog {
    color: #262756;

    background: #ffffff;

    border: 1px solid #d5deea;
}


.vertical-product-catalog:hover {
    color: #ffffff;

    background: #262756;

    border-color: #262756;
}


/* 
   SPECIFICATIONS
 */

.vertical-product-specifications {
    width: 100%;
  margin-top: 0;
  /* max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-7px);
  visibility: hidden; */
  transition: max-height 0.4s ease, opacity 0.25s ease, transform 0.3s ease, margin-top 0.3s ease, visibility 0.3s ease;
  padding: 16px 16px 16px 16px;
}


.vertical-product-spec-title {
   padding-top: 12px;
  margin-bottom: 8px;
  border-top: 1px solid #e8edf2;
  color: #263545;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-family: "Mulish", sans-serif;
}


.vertical-product-specifications ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.vertical-product-specifications li {
    min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #f0f2f5;
  color: #7a8592;
  font-size: 12px;
  line-height: 1.4;
  font-family: "Mulish", sans-serif;
}


.vertical-product-specifications li:last-child {
    border-bottom: 0;
}


.vertical-product-specifications li span {
   flex: 1;
  min-width: 0;
}


.vertical-product-specifications li strong {
    flex-shrink: 0;
  color: #3c4958;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  font-family: "Mulish", sans-serif;
}


/* 
   PRODUCTS FOOTER
 */

.verti-slide-products-footer {
    margin-top: 17px;

    display: flex;

    justify-content: flex-end;
}


.verti-slide-products-view-all {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #262756;

    font-size: 9px;
    font-weight: 700;

    transition:
        color 0.3s ease;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
}


.verti-slide-products-view-all:hover {
    color: #0e397a;
}


.verti-slide-products-view-all i {
    transition:
        transform 0.3s ease;
}


.verti-slide-products-view-all:hover i {
    transform:
        translateX(4px);
}


/* 
   CATEGORY CHANGE ANIMATION
 */

.verti-slide-products-wrapper.category-changing
.verti-slide-track {
    opacity: 0;

    transform:
        translateX(25px);
}


.verti-slide-products-wrapper.category-ready
.verti-slide-track {
    opacity: 1;

    transform:
        translateX(0);
}


/* 
   TABLET
 */

@media (max-width: 1100px) {

    .verti-slide-main {
        grid-template-columns:
            215px
            minmax(0, 1fr);

        gap: 18px;
    }


    .vertical-product-card {
        flex-basis:
            calc(
                (100% - 18px) / 2
            );
    }


    .vertical-product-image {
        height: 180px;
    }

}


/* 
   TABLET SMALL
 */

@media (max-width: 850px) {

    .verti-slide {
        padding: 60px 0;
    }


    .verti-slide-main {
        grid-template-columns: 1fr;
    }


    .verti-slide-tabs-wrapper {
        overflow-x: auto;
    }


    .verti-slide-tabs {
        display: grid;

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


    .verti-slide-tab {
        min-height: 70px;

        border-right:
            1px solid #edf0f4;
    }


    .verti-slide-view-all {
        display: none;
    }

}


/* 
   MOBILE
 */

@media (max-width: 600px) {

    .verti-slide {
        padding: 50px 0;
    }


    .verti-slide-title {
        font-size: 27px;
    }


    .verti-slide-description {
        font-size: 11px;
    }


    .verti-slide-tabs {
        display: flex;

        overflow-x: auto;
    }


    .verti-slide-tab {
        min-width: 170px;

        flex: 0 0 170px;

        border-bottom: 0;

        border-right:
            1px solid #edf0f4;
    }


    .verti-slide-tab-name {
        font-size: 9px;
    }


    .verti-slide-tab-count {
        font-size: 7px;
    }


    .verti-slide-products-header {
        min-height: 48px;
    }


    .verti-slide-current-label {
        font-size: 13px;
    }


    .verti-slide-nav {
        width: 34px;
        height: 34px;
    }


    .vertical-product-card {
        flex-basis: 100%;
    }


    .vertical-product-image {
        height: 210px;
    }

}


/* 
   VERY SMALL MOBILE
 */

@media (max-width: 400px) {

    .verti-slide-tab {
        min-width: 155px;

        flex-basis: 155px;
    }


    .vertical-product-image {
        height: 190px;
    }

}
/* -----------------------------Footer */

/* 
   LABTRO FOOTER
 */

.labtro-footer {
    width: 100%;
    background: #ffffff;
    color: #5f6b7a;
    position: relative;
    overflow: hidden;
}


/* 
   COMMON CONTAINER
 */

.labtro-footer-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* 
   NEWSLETTER
 */

.labtro-newsletter {
    width: 100%;
    background: #174eae;
    padding: 20px 0;
    position: relative;
}


.labtro-newsletter-wrapper {
   min-height: 65px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* Newsletter Icon */

.labtro-newsletter-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #ffffff;
    font-size: 30px;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.labtro-newsletter-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}


/* Newsletter Content */

.labtro-newsletter-content {
    flex: 1;
}


.labtro-newsletter-content h2 {
    margin: 0 0 5px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}


.labtro-newsletter-content p {
    margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
  font-family: "Mulish", sans-serif;
}


/* Newsletter Form */

.labtro-newsletter-form {
    width: 620px;

    display: flex;
    align-items: stretch;

    gap: 12px;
}


.labtro-newsletter-input-wrapper {
    flex: 1;
    height: 54  px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
}


.labtro-newsletter-input-wrapper i {
    margin-left: 18px;

    color: #174eae;

    font-size: 18px;
}


.labtro-newsletter-input-wrapper input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
    color: #333;
    font-size: 14px;
  font-family: "Mulish", sans-serif;
}


.labtro-newsletter-input-wrapper input::placeholder {
    color: #8a8f98;
}


.labtro-newsletter-form button {
    height: 54px;
    padding: 0 35px;
    border: 0;
    background: #ffffff;
    color: #111111;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.labtro-newsletter-form button:hover {
    background: #0d3f91;
    color: #ffffff;

    transform: translateY(-2px);
}


/* 
   MAIN FOOTER
 */

.labtro-footer-main {
    width: 100%;

    padding: 55px 0 48px;

    background: #ffffff;
}


.labtro-footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1fr
        1fr
        1.05fr;

    gap: 45px;
}


/* 
   LOGO
 */

.labtro-footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 24px;

    text-decoration: none;
}


.labtro-footer-logo img {
    display: block;

    width: 210px;
    height: auto;

    object-fit: contain;
}


/* 
   DESCRIPTION
 */

.labtro-footer-description {
    max-width: 390px;
    margin: 0 0 25px;
    color: #6f7783;
    font-size: 15px;
    line-height: 1.9;
    font-family: "Mulish", sans-serif;
}


/* 
   CONTACT
 */

.labtro-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;

    color: #6d7683;

    font-size: 14px;

    line-height: 1.6;
}


.labtro-contact-icon {
    width: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #174eae;

    font-size: 16px;
}


.labtro-contact-item a {
    color: #6d7683;

    text-decoration: none;

    transition: color 0.3s ease;
}


.labtro-contact-item a:hover {
    color: #174eae;
}


/* 
   FOOTER TITLES
 */

.labtro-footer-title {
    margin: 0 0 25px;
    color: #151515;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    font-family: "Mulish", sans-serif;
}


.labtro-footer-title::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 10px;

    background: #174eae;
}


/* 
   FOOTER LINKS
 */

.labtro-footer-links {
    margin: 0;

    padding: 0;

    list-style: none;
}


.labtro-footer-links li {
    margin-bottom: 15px;
}


.labtro-footer-links a {
    position: relative;

    display: inline-block;

    color: #6c7480;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.labtro-footer-links a::before {
    content: "";

    width: 0;
    height: 1px;

    position: absolute;

    left: 0;
    bottom: -3px;

    background: #174eae;

    transition: width 0.3s ease;
}


.labtro-footer-links a:hover {
    color: #174eae;

    transform: translateX(4px);
}


.labtro-footer-links a:hover::before {
    width: 100%;
}


/* 
   APP SECTION
 */

.labtro-app-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 38px;
}


.labtro-app-button {
    display: block;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.labtro-app-button img {
    display: block;

    width: 170px;
    height: 50px;

    object-fit: contain;
}


.labtro-app-button:hover {
    transform: translateY(-4px);

    opacity: 0.85;
}


/* 
   SOCIAL
 */

.labtro-social-title {
    margin: 0 0 20px;

    color: #151515;

    font-size: 17px;

    font-weight: 600;
}


.labtro-social-links {
    display: flex;

    align-items: center;

    gap: 10px;
}


.labtro-social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 16px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.labtro-social-links a:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.15);
}


.labtro-social-facebook {
    background: #4267b2;
}


.labtro-social-x {
    background: #000000;
}


.labtro-social-instagram {
    background: #9b4f35;
}


.labtro-social-youtube {
    background: #e21e2b;
}


/* 
   BOTTOM FOOTER
 */

.labtro-footer-bottom {
    width: 100%;

    border-top: 1px solid #e7e7e7;

    background: #ffffff;
}


.labtro-footer-bottom-wrapper {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.labtro-copyright {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: #747c87;
    font-size: 13px;
    font-family: "Mulish", sans-serif;
}


.labtro-copyright strong {
    color: #202020;

    font-size: 14px;

    font-weight: 700;
}


.labtro-bottom-links {
    display: flex;

    align-items: center;

    gap: 25px;
}


.labtro-bottom-links a {
    color: #707985;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.labtro-bottom-links a:hover {
    color: #174eae;
}


/* 
   BACK TO TOP
 */

.labtro-back-to-top {
    width: 58px;
    height: 58px;

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    color: #222222;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.labtro-back-to-top.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.labtro-back-to-top:hover {
    background: #174eae;

    color: #ffffff;

    transform: translateY(-4px);
}


/* 
   NEWSLETTER TOAST
 */

.labtro-footer-toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    z-index: 2000;

    padding: 13px 22px;

    border-radius: 5px;

    background: #174eae;

    color: #ffffff;

    font-size: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 20px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


.labtro-footer-toast.show {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* 
   TABLET
 */

@media (max-width: 1200px) {

    .labtro-footer-grid {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        row-gap: 45px;
    }


    .labtro-footer-about {
        grid-column: span 1;
    }


    .labtro-footer-apps {
        grid-column: span 1;
    }


    .labtro-newsletter-wrapper {
        flex-wrap: wrap;
    }


    .labtro-newsletter-content {
        min-width: 300px;
    }


    .labtro-newsletter-form {
        width: 100%;
        margin-left: 112px;
    }

}


/* 
   TABLET SMALL
 */

@media (max-width: 992px) {

    .labtro-footer-container {
        padding-left: 25px;
        padding-right: 25px;
    }


    .labtro-footer-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .labtro-newsletter-wrapper {
        display: grid;

        grid-template-columns:
            auto 1fr;
    }


    .labtro-newsletter-content {
        min-width: 0;
    }


    .labtro-newsletter-form {
        width: 100%;

        grid-column: 1 / -1;

        margin-left: 0;
    }


    .labtro-newsletter-content h2 {
        font-size: 30px;
    }

}


/* 
   MOBILE
 */

@media (max-width: 768px) {

    .labtro-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .labtro-newsletter {
        padding: 30px 0;
    }


    .labtro-newsletter-wrapper {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .labtro-newsletter-icon {
        width: 65px;
        height: 65px;

        flex-basis: 65px;

        font-size: 30px;
    }


    .labtro-newsletter-content {
        width: 100%;
    }


    .labtro-newsletter-content h2 {
        font-size: 27px;
    }


    .labtro-newsletter-content p {
        font-size: 14px;
    }


    .labtro-newsletter-form {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;
    }


    .labtro-newsletter-form button {
        width: 100%;
    }


    .labtro-footer-main {
        padding: 45px 0 35px;
    }


    .labtro-footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .labtro-footer-description {
        max-width: 100%;
    }


    .labtro-footer-bottom-wrapper {
        padding: 22px 0;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;
    }


    .labtro-copyright {
        justify-content: center;
    }


    .labtro-bottom-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 12px 20px;
    }


    .labtro-back-to-top {
        width: 48px;
        height: 48px;

        right: 15px;
        bottom: 15px;

        font-size: 17px;
    }

}


/* 
   SMALL MOBILE
 */

@media (max-width: 480px) {

    .labtro-newsletter-content h2 {
        font-size: 24px;
    }


    .labtro-newsletter-content p {
        font-size: 13px;
    }


    .labtro-footer-logo img {
        width: 180px;
    }


    .labtro-footer-title {
        font-size: 17px;
    }


    .labtro-app-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .labtro-app-button img {
        width: 160px;
    }

}

/* ------------------------------Breadcrumb */
.labtro-breadcrumb-section {
    width: 100%;
    position: relative;
    background: #f5f7fa;
    border-bottom: 1px solid #e5e8ed;
    overflow: hidden;
}
.labtro-breadcrumb-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 6px 50px;
}
.labtro-breadcrumb-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.labtro-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    color: #6d7683;
    font-size: 12px;
}
.labtro-breadcrumb-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #606a77;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    font-family: "Mulish", sans-serif;
}
.labtro-breadcrumb-home span{
    font-weight: 700;
}
.labtro-breadcrumb-home i {
    color: #999;
    font-size: 14px;
}
.labtro-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a1a8b1;
    font-size: 11px;
}
.labtro-breadcrumb-current {
    color: #262756;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}
@media (max-width: 768px) {
    .labtro-breadcrumb-container {
        padding: 28px 20px;
    }
    .labtro-breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .labtro-breadcrumb-title {
        font-size: 26px;
    }
    .labtro-breadcrumb-nav {
        justify-content: flex-start;
        gap: 8px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .labtro-breadcrumb-container {
        padding: 22px 15px;
    }
    .labtro-breadcrumb-title {
        font-size: 23px;
    }
    .labtro-breadcrumb-nav {
        line-height: 1.7;
        gap: 6px;
    }
}
/* -------------------------------------About US */

.aboutus{
    width:100%;
    padding:50px 0;
    background:#f7f9fc;
    overflow:hidden
}
.aboutus .custom_container{
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding:0 30px
}
.aboutus-wrapper{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:self-start;
    gap:70px;
}
.aboutus-content{
    width:100%
}
.aboutus-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:18px;
    color:#174eae;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.2px;
}
.aboutus-eyebrow i{
    font-size:17px;
}
.aboutus-title{
    max-width:680px;
    margin:0 0 22px;
    color:#1c2229;
    font-size:35px;
    font-weight:700;
    line-height:1.16;
    letter-spacing:-1px;
    font-family: "Mulish", sans-serif;
}
.aboutus-title span{
    color:#174eae
}
.aboutus-intro{
    max-width:680px;
    margin:0 0 22px;
    color:#566170;
    font-size:16px;
    line-height:1.8
}
.aboutus-text{
    max-width:680px;
    color:#687382;
    font-size:14px;
    line-height:1.85
}
.aboutus-text p{
    margin:0 0 16px
}
.aboutus-collapse{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .7s ease,opacity .5s ease;
}
.aboutus-collapse.active{
    max-height:1000px;
    opacity:1
}
.aboutus-readmore{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:5px;
    padding:6px 12px;
    border:1px solid #174eae;
    background:#174eae;
    color:#fff;
    font-family:inherit;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:background .3s ease,color .3s ease,transform .3s ease;
    font-family: "Mulish", sans-serif;
}
.aboutus-readmore:hover{
    background:#103d8a;
    transform:translateY(-2px);
}
.aboutus-readmore i{
    font-size:14px;
    transition:transform .35s ease;
}
.aboutus-readmore.active i{
    transform:rotate(180deg);
}
.aboutus-visual{
    position:relative;
    min-height:570px;
    padding:0 30px 35px 0;
}
.aboutus-image-wrap{
    position:relative;
    width:100%;
    height:535px;
    overflow:hidden;
    border-radius:3px;
    background:#dfe5ec;
    box-shadow:0 20px 50px rgba(20,45,80,.12);
}
.aboutus-image-wrap img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .7s ease;
}
.aboutus-image-wrap:hover img{
    transform:scale(1.04);
}
.aboutus-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 55%,rgba(11,31,61,.55));
}
.aboutus-experience{
    position:absolute;
    left:28px;
    bottom:28px;
    display:flex;
    align-items:center;
    gap:13px;
    padding: 10px 15px;
    background:rgba(255,255,255,.96);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.aboutus-experience i{
    color:#174eae;
    font-size:30px;
}
.aboutus-experience strong,.aboutus-experience span{
    display:block;
}
.aboutus-experience strong{
    color:#20252b;
    font-size:16px;
    font-weight:700;
    font-family: "Mulish", sans-serif;
}
.aboutus-experience span{
    margin-top:2px;
    color:#687382;
    font-size:12px;
}
.aboutus-floating-card{
    position:absolute;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    gap:14px;
    width:290px;
    padding:18px 20px;
    background:#262756;
    color:#fff;
    box-shadow:0 15px 35px rgba(23,78,174,.25);
}
.aboutus-floating-icon{
    width:43px;
    height:43px;
    flex:0 0 43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    font-size:20px;
}
.aboutus-floating-card strong,.aboutus-floating-card span{
    display:block;
}
.aboutus-floating-card strong{
    font-size:13px;
    font-weight:600;
    font-family: "Mulish", sans-serif;
}
.aboutus-floating-card span{
    margin-top:4px;
    color:rgba(255,255,255,.78);
    font-size:11px;
    line-height:1.5;
}
.aboutus-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 65px;
    border-top: 1px solid #e0e5eb;
    border-bottom: 1px solid #e0e5eb
}
.aboutus-feature{
    display:flex;
    align-items:center;
    gap:17px;
    padding: 14px 18px;
    border:1px solid #e0e5eb;
}
/* .aboutus-feature:last-child{border-right:0} */
.aboutus-feature-icon{
    width:52px;
    height:52px;
    flex:0 0 52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:0;
    background:#eaf1fc;
    color:#174eae;
    font-size:22px;
    transition:background .3s ease,color .3s ease,transform .3s ease;
}
.aboutus-feature:hover .aboutus-feature-icon{
    background:#174eae;
    color:#fff;
    /* transform:translateY(-3px); */
}
.aboutus-feature h3{
    margin:0 0 6px;
    color:#20252b;
    font-size:16px;
    font-weight:600;
    font-family: "Mulish", sans-serif;
}
.aboutus-feature p {
    margin: 0;
    color: #737d89;
    font-size: 12px;
    line-height: 1.6
}

@media(max-width:1100px) {
    .aboutus-wrapper {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .aboutus-content {
        max-width: 800px
    }

    .aboutus-title {
        font-size: 40px
    }

    .aboutus-visual {
        max-width: 750px;
        width: 100%;
        margin: 0 auto
    }

    .aboutus-features {
        grid-template-columns: 1fr
    }

    .aboutus-feature {
        border-right: 0;
        border-bottom: 1px solid #e0e5eb
    }

    .aboutus-feature:last-child {
        border-bottom: 0
    }
}

@media(max-width:768px) {
    .aboutus {
        padding: 60px 0
    }

    .aboutus .custom_container {
        padding: 0 20px
    }

    .aboutus-title {
        font-size: 34px;
        letter-spacing: -.5px
    }

    .aboutus-intro {
        font-size: 15px
    }

    .aboutus-text {
        font-size: 13px
    }

    .aboutus-visual {
        min-height: 440px;
        padding: 0 15px 25px 0
    }

    .aboutus-image-wrap {
        height: 410px
    }

    .aboutus-floating-card {
        width: 260px;
        padding: 15px
    }

    .aboutus-experience {
        left: 18px;
        bottom: 20px;
        padding: 13px 16px
    }

    .aboutus-features {
        margin-top: 45px
    }

    .aboutus-feature {
        padding: 23px 10px
    }
}

@media(max-width:480px) {
    .aboutus-title {
        font-size: 29px
    }

    .aboutus-eyebrow {
        font-size: 12px
    }

    .aboutus-visual {
        min-height: 350px;
        padding: 0 8px 20px 0
    }

    .aboutus-image-wrap {
        height: 325px
    }

    .aboutus-floating-card {
        right: 0;
        width: 225px;
        padding: 12px
    }

    .aboutus-floating-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 17px
    }

    .aboutus-floating-card strong {
        font-size: 11px
    }

    .aboutus-floating-card span {
        font-size: 9px
    }

    .aboutus-experience {
        left: 12px;
        bottom: 15px
    }

    .aboutus-experience i {
        font-size: 24px
    }

    .aboutus-experience strong {
        font-size: 13px
    }

    .aboutus-feature {
        align-items: flex-start
    }

    .aboutus-feature-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 19px
    }
}

/* -----------------------------------------All product */

.allproduct {
    width: 100%;
    padding: 50px 0;
    /* background: #f7f9fc; */
    overflow: hidden
}

.allproduct .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px
}

.allproduct-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 22px
}

.allproduct-title {
    margin: 0 0 15px;
    color: #20252b;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Mulish", sans-serif;
}

.allproduct-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: max-content;
    margin: 0 auto 35px;
    padding: 5px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(20, 45, 80, .05)
}

.allproduct-tab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 16px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #687382;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: "Mulish", sans-serif;
}

.allproduct-tab i {
    font-size: 17px
}

.allproduct-tab:hover {
    color: #262756;
}

.allproduct-tab.active {
    background: #262756;
    color: #fff;
    box-shadow: 0 6px 18px rgba(23, 78, 174, .2)
}

.allproduct-tab-content {
    display: none;
    animation: allproductFade .45s ease
}

.allproduct-tab-content.active {
    display: block
}

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

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

.allproduct-alphabet {
    display: grid;
    grid-template-columns: repeat(27, 1fr);
    gap: 8px;
    margin-bottom: 30px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 2px;
}

.alphabet-btn {
    height: 30px;
    border: 1px solid #e1e5eb;
    border-radius: 2px;
    background: #fff;
    color: #596573;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    font-family: "Mulish", sans-serif;
}

.alphabet-btn:hover {
    border-color: #174eae;
    color: #174eae;
    background: #f3f7fd;
    /* transform: translateY(-2px) */
}

.alphabet-btn.active {
    border-color: #174eae;
    background: #174eae;
    color: #fff;
    box-shadow: 0 5px 14px rgba(23, 78, 174, .18)
}

.allproduct-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.allproduct-results-info>div {
    display: flex;
    align-items: center;
    gap: 10px
}

.allproduct-results-label {
    color: #89929d;
    font-size: 12px;
    font-family: "Mulish", sans-serif;
}

.allproduct-results-info strong {
    color: #252a30;
    font-size: 14px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.allproduct-count {
    padding: 6px 12px;
    border-radius: 0;
    background: #eaf1fc;
    color: #174eae;
    font-size: 12px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.allproduct-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
}

.allproduct-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e8ed;
    border-radius: 0;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(20, 45, 80, .035);
    opacity: 1;
    /* transform: scale(1); */
    transition: opacity .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease
}

.allproduct-card:hover {
    border-color: #174eae;
    box-shadow: 0 12px 30px rgba(20, 45, 80, .1);
    /* transform: translateY(-5px) */
}

.allproduct-card-image {
    width: 100%;
    height: 190px;
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.allproduct-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .4s ease
}

.allproduct-card:hover .allproduct-card-image img {
    /* transform: scale(1.07) */
}

.allproduct-card-name {
    min-height: 40px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
    border-top: 1px solid #edf0f3;
    color: #252a30;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    transition: color .3s ease;
    font-family: "Mulish", sans-serif;
}

.allproduct-card:hover .allproduct-card-name {
    color: #174eae
}

.allproduct-card.hide-product {
    opacity: 0;
    transform: scale(.95);
    pointer-events: none;
    position: absolute
}

.allproduct-empty {
    display: none;
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 6px
}

.allproduct-empty.show {
    display: block
}

.allproduct-empty>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eef3fa;
    color: #174eae;
    font-size: 22px
}

.allproduct-empty h3 {
    margin: 0 0 7px;
    color: #252a30;
    font-size: 18px
}

.allproduct-empty p {
    margin: 0;
    color: #7a8490;
    font-size: 13px
}

.allproduct-category-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 25px;
    align-items: stretch
}

.allproduct-category-list {
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: #fff;
    border: 1px solid #e1e6ec;
    border-radius: 2px;
}

.allproduct-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 13px;
    border: 0;
    border-bottom: 1px solid #edf0f3;
    background: #fff;
    color: #606b78;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: all .3s ease
}

.allproduct-category-btn:last-child {
    border-bottom: 0
}

.allproduct-category-btn:hover {
    color: #174eae;
    background: #f5f8fc
}

.allproduct-category-btn.active {
    background: #174eae;
    color: #fff;
    border-radius: 0;
}

.allproduct-category-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #eef3fa;
    color: #174eae;
    font-size: 17px;
    transition: all .3s ease
}

.allproduct-category-btn.active .allproduct-category-icon {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.allproduct-category-text {
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
    font-family: "Mulish", sans-serif;
  font-size: 15px;
}

.allproduct-category-btn>i {
    font-size: 12px;
    opacity: .6;
    transition: transform .3s ease
}

.allproduct-category-btn.active>i {
    opacity: 1;
    transform: translateX(3px)
}

.allproduct-category-products {
    min-width: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid #e1e6ec;
    border-radius: 2px;
}

.allproduct-category-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7ebef
}

.allproduct-category-heading>div>span {
    display: block;
    margin-bottom: 5px;
    color: #89929e;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.allproduct-category-heading h3 {
    margin: 0;
    color: #24292f;
    font-size: 28px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.allproduct-view-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #174eae;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: gap .3s ease;
    font-family: "Mulish", sans-serif;
}

.allproduct-view-category:hover {
    gap: 13px
}

.allproduct-category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px
}

.allproduct-category-product {
    display: block;
    padding: 16px;
    border: 1px solid #e5e9ee;
    border-radius: 0;
    background: #fff;
    text-decoration: none;
    transition: all .3s ease
}

.allproduct-category-product:hover {
    border-color: #174eae;
    /* transform: translateY(-4px); */
    box-shadow: 0 10px 25px rgba(20, 45, 80, .08)
}

.allproduct-category-product-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    margin-bottom: 14px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 0;
}

.allproduct-category-product-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
    max-width: 200px;
  max-height: 200px;
}

.allproduct-category-product:hover img {
    transform: scale(1.06)
}

.allproduct-category-product-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #30363d;
    font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Mulish", sans-serif;
}

.allproduct-category-product-name i {
    color: #174eae;
    font-size: 13px
}

@media(max-width:1200px) {
    .allproduct-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .allproduct-alphabet {
        grid-template-columns: repeat(10, 1fr)
    }

    .allproduct-category-layout {
        grid-template-columns: 280px 1fr
    }
}

@media(max-width:992px) {
    .allproduct {
        padding: 70px 0
    }

    .allproduct-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .allproduct-category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px
    }

    .allproduct-category-btn {
        border-bottom: 0
    }

    .allproduct-category-product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .allproduct .custom_container {
        padding: 0 20px
    }

    .allproduct-title {
        font-size: 34px
    }

    .allproduct-tabs {
        width: 100%
    }

    .allproduct-tab {
        flex: 1;
        justify-content: center;
        padding: 12px 15px
    }

    .allproduct-alphabet {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
        padding: 12px
    }

    .alphabet-btn {
        height: 38px
    }

    .allproduct-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .allproduct-card-image {
        height: 160px;
        padding: 15px
    }

    .allproduct-category-list {
        grid-template-columns: 1fr
    }

    .allproduct-category-products {
        padding: 20px
    }

    .allproduct-category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }
}

@media(max-width:480px) {
    .allproduct {
        padding: 55px 0
    }

    .allproduct-title {
        font-size: 29px
    }

    .allproduct-tabs {
        margin-bottom: 25px
    }

    .allproduct-tab {
        font-size: 12px;
        padding: 11px 8px
    }

    .allproduct-tab i {
        font-size: 15px
    }

    .allproduct-alphabet {
        grid-template-columns: repeat(6, 1fr)
    }

    .allproduct-results-info {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px
    }

    .allproduct-grid {
        grid-template-columns: 1fr 1fr
    }

    .allproduct-card-image {
        height: 135px
    }

    .allproduct-card-name {
        min-height: 52px;
        padding: 11px;
        font-size: 11px
    }

    .allproduct-category-product-grid {
        grid-template-columns: 1fr
    }

    .allproduct-category-heading h3 {
        font-size: 19px
    }
}
/* ---------------------------Section page */

.allcategories {
    width: 100%;
    padding: 50px 0;
    /* background: #f7f9fc; */
    overflow: hidden
}

.allcategories .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px
}

.allcategories-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 20px
}

.allcategories-title {
    margin: 0 0 15px;
  color: #20252b;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}

.allcategories-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px
}

.allcategories-filter-btn {
    padding: 6px 12px;
    border: 1px solid #dfe4ea;
    border-radius: 0;
    background: #fff;
    color: #64707d;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: "Mulish", sans-serif;
}

.allcategories-filter-btn:hover {
    border-color: #174eae;
    color: #174eae
}

.allcategories-filter-btn.active {
    border-color: #262756;
  background: #262756;
    color: #fff;
    box-shadow: 0 6px 18px rgba(23, 78, 174, .18)
}

.allcategories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.allcategories-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e7ec;
    border-radius: 0;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(20, 45, 80, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.allcategories-card:hover {
    border-color: #174eae;
    /* transform: translateY(-7px); */
    box-shadow: 0 16px 35px rgba(20, 45, 80, .1)
}

.allcategories-card-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #eef2f6;
    display: flex;
}

.allcategories-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
    max-width: 150px;
  max-height: 150px;
  margin: auto;
}

.allcategories-card:hover .allcategories-card-image img {
    transform: scale(1.08)
}

.allcategories-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    background: rgba(23, 78, 174, 0.12);
    color: #262756;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .35s ease, transform .35s ease
}

.allcategories-card:hover .allcategories-card-overlay {
    opacity: 1;
    transform: translateY(0)
}

.allcategories-card-overlay i {
    font-size: 15px
}
.allcategories-card-overlay span{
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.allcategories-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px
}

.allcategories-card-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #edf3fc;
    color: #174eae;
    font-size: 18px;
    transition: all .3s ease
}

.allcategories-card:hover .allcategories-card-icon {
    background: #174eae;
    color: #fff
}

.allcategories-card-info {
    flex: 1;
    min-width: 0
}

.allcategories-card-info h3 {
    margin: 0 0 5px;
    color: #252a30;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color .3s ease;
    font-family: "Mulish", sans-serif;
}

.allcategories-card:hover .allcategories-card-info h3 {
    color: #174eae
}

.allcategories-card-info span {
    display: block;
    overflow: hidden;
    color: #89929d;
    font-size: 12px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Mulish", sans-serif;
}

.allcategories-card-arrow {
    color: #a2aab4;
    font-size: 15px;
    transition: color .3s ease, transform .3s ease
}

.allcategories-card:hover .allcategories-card-arrow {
    color: #174eae;
    transform: translateX(4px)
}

.allcategories-card.hide-category {
    display: none
}

.allcategories-card.show-category {
    animation: allcategoriesShow .4s ease
}

@keyframes allcategoriesShow {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.allcategories-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e1e6ec
}

.allcategories-bottom p {
    margin: 0;
    color: #697480;
    font-size: 13px
}

.allcategories-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1px solid #174eae;
    background: #174eae;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease
}

.allcategories-bottom-btn:hover {
    background: #103d8a;
    gap: 13px
}

@media(max-width:1200px) {
    .allcategories-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:992px) {
    .allcategories {
        padding: 70px 0
    }

    .allcategories-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .allcategories-card-image {
        height: 220px
    }
}

@media(max-width:768px) {
    .allcategories .custom_container {
        padding: 0 20px
    }

    .allcategories-title {
        font-size: 34px
    }

    .allcategories-description {
        font-size: 13px
    }

    .allcategories-filter {
        justify-content: flex-start
    }

    .allcategories-filter-btn {
        padding: 10px 15px
    }

    .allcategories-grid {
        gap: 15px
    }

    .allcategories-card-image {
        height: 200px
    }

    .allcategories-card-content {
        padding: 14px
    }

    .allcategories-card-info h3 {
        font-size: 12px
    }
}

@media(max-width:480px) {
    .allcategories {
        padding: 55px 0
    }

    .allcategories-title {
        font-size: 29px
    }

    .allcategories-grid {
        grid-template-columns: 1fr
    }

    .allcategories-card-image {
        height: 230px
    }

    .allcategories-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%
    }

    .allcategories-filter-btn {
        width: 100%
    }

    .allcategories-bottom {
        align-items: center;
        flex-direction: column;
        gap: 13px;
        margin-top: 35px;
        padding-top: 25px
    }
}
/* ------------------------------------------All catalog */
.allcatalog {
    width: 100%;
    padding: 50px 0;
    /* background: #f7f9fc; */
    overflow: hidden
}

.allcatalog .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px
}

.allcatalog-header {
    max-width: 780px;
    margin: 0 auto 20px;
    text-align: center
}

.allcatalog-title {
    margin: 0 0 15px;
    color: #20252b;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Mulish", sans-serif;
}

.allcatalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e5eb
}

.allcatalog-search {
    position: relative;
    width: 350px;
    display: flex;
    align-items: center
}

.allcatalog-search>i {
    position: absolute;
    left: 15px;
    color: #8b95a0;
    font-size: 15px
}

.allcatalog-search input {
    width: 100%;
    height: 43px;
    padding: 0 42px;
    border: 1px solid #dfe4e9;
    outline: none;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .3s ease, box-shadow .3s ease;
    font-family: "Mulish", sans-serif;
}

.allcatalog-search input:focus {
    border-color: #174eae;
    box-shadow: 0 0 0 3px rgba(23, 78, 174, .07)
}

.allcatalog-search input::placeholder {
    color: #9aa2ab
}

.allcatalog-clear {
    display: none
}

.allcatalog-search button {
    position: absolute;
    right: 10px;
    width: 25px;
    height: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #89939e;
    cursor: pointer
}

.allcatalog-search button.show {
    display: flex
}

.allcatalog-filter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px
}

.allcatalog-filter-btn {
    padding: 6px 12px;
    border: 1px solid #dce2e8;
    background: #fff;
    color: #68737f;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: "Mulish", sans-serif;
}

.allcatalog-filter-btn:hover {
    border-color: #174eae;
    color: #174eae
}

.allcatalog-filter-btn.active {
    border-color: #174eae;
    background: #174eae;
    color: #fff
}

.allcatalog-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #dfe4e9
}

.allcatalog-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    /* min-height: 200px; */
    background: #fff;
    border: 1px solid #dfe4e9;
    border-top: 0;
    text-decoration: none;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease
}

.allcatalog-card:hover {
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 45, 80, .08);
    /* transform: translateY(-2px) */
}

.allcatalog-card-image {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f7f9fb;
    overflow: hidden
}

.allcatalog-card-image img {
    width: 150px;
    height: 150px;
    display: block;
    object-fit: contain;
    transition: transform .45s ease
}

.allcatalog-card:hover .allcatalog-card-image img {
    transform: scale(1.06)
}

.allcatalog-card-content {
    padding: 25px 30px
}

.allcatalog-card-category {
    display: inline-flex;
    margin-bottom: 8px;
    color: #174eae;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-family: "Mulish", sans-serif;
}

.allcatalog-card-content h3 {
    margin: 0 0 9px;
    color: #24292f;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color .3s ease;
    font-family: "Mulish", sans-serif;
}

.allcatalog-card:hover .allcatalog-card-content h3 {
    color: #174eae
}

.allcatalog-card-content p {
    max-width: 700px;
    margin: 0 0 17px;
    color: #7b8590;
    font-size: 12px;
    line-height: 1.7
}

.allcatalog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px
}

.allcatalog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #89939d;
    font-size: 12px;
    font-family: "Mulish", sans-serif;
}

.allcatalog-card-meta i {
    color: #f27373;
  font-size: 13px;
}

.allcatalog-card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 25px 25px 25px 15px
}

.allcatalog-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 115px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #262756;
    background: #262756;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.allcatalog-download:hover {
    background: #103d8a;
    border-color: #103d8a
}

.allcatalog-download i {
    font-size: 14px
}

.allcatalog-view {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe4e9;
    background: #fff;
    color: #64707c;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease
}

.allcatalog-view:hover {
    border-color: #174eae;
    color: #174eae;
    background: #f2f6fc
}

.allcatalog-card.hide-catalog {
    display: none
}

.allcatalog-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #dfe4e9
}

.allcatalog-empty.show {
    display: block
}

.allcatalog-empty-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #eef3fa;
    color: #174eae;
    font-size: 21px
}

.allcatalog-empty h3 {
    margin: 0 0 7px;
    color: #262b31;
    font-size: 18px;
    font-weight: 600
}

.allcatalog-empty p {
    margin: 0 0 20px;
    color: #7b8590;
    font-size: 12px
}

.allcatalog-empty button {
    height: 38px;
    padding: 0 18px;
    border: 1px solid #174eae;
    background: #174eae;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer
}

@media(max-width:992px) {
    .allcatalog {
        padding: 70px 0
    }

    .allcatalog-toolbar {
        align-items: stretch;
        flex-direction: column
    }

    .allcatalog-search {
        width: 100%
    }

    .allcatalog-filter {
        justify-content: flex-start
    }

    .allcatalog-card {
        grid-template-columns: 160px minmax(0, 1fr) auto
    }

    .allcatalog-card-image {
        width: 160px;
        height: 160px
    }

    .allcatalog-card-image img {
        width: 150px;
        height: 150px
    }

    .allcatalog-card-content {
        padding: 20px
    }

    .allcatalog-card-action {
        padding: 20px 15px
    }

}

@media(max-width:768px) {
    .allcatalog .custom_container {
        padding: 0 20px
    }

    .allcatalog-title {
        font-size: 34px
    }

    .allcatalog-description {
        font-size: 13px
    }

    .allcatalog-card {
        grid-template-columns: 140px minmax(0, 1fr)
    }

    .allcatalog-card-image {
        width: 140px;
        height: 160px
    }

    .allcatalog-card-image img {
        width: 130px;
        height: 130px
    }

    .allcatalog-card-content {
        padding: 18px
    }

    .allcatalog-card-content p {
        font-size: 11px
    }

    .allcatalog-card-action {
        grid-column: 1/-1;
        justify-content: flex-start;
        padding: 0 18px 18px
    }

    .allcatalog-download {
        flex: 1
    }

    .allcatalog-view {
        flex: 0 0 40px
    }

}

@media(max-width:480px) {
    .allcatalog {
        padding: 55px 0
    }

    .allcatalog-title {
        font-size: 29px
    }

    .allcatalog-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%
    }

    .allcatalog-filter-btn {
        width: 100%
    }

    .allcatalog-card {
        display: grid;
        grid-template-columns: 115px 1fr
    }

    .allcatalog-card-image {
        width: 115px;
        height: 145px;
        padding: 8px
    }

    .allcatalog-card-image img {
        width: 105px;
        height: 105px
    }

    .allcatalog-card-content {
        padding: 15px 12px
    }

    .allcatalog-card-content h3 {
        font-size: 16px
    }

    .allcatalog-card-content p {
        display: none
    }

    .allcatalog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px
    }

    .allcatalog-card-action {
        padding: 0 12px 15px
    }

}
/* ----------------------------------Category */

.category {
    width: 100%;
    /* background: #f7f9fc; */
    padding: 50px 0 80px;
    color: #182230;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #dce2e9;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.category-header-content {
    max-width: 900px;
}
.category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #174eae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.category-header h1 {
    margin: 0 0 12px;
    color: #101a2b;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.category-header-count {
    min-width: 110px;
    padding-left: 25px;
    border-left: 1px solid #dce2e9;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-header-count strong {
    color: #174eae;
    font-size: 30px;
    line-height: 1;
    font-family: "Mulish", sans-serif;
}
.category-header-count span {
    color: #758094;
    font-size: 13px;
    margin-top: 6px;
    font-family: "Mulish", sans-serif;
}
.category-layout {
    display: grid;
    grid-template-columns: 300px minmax(0,1fr);
    align-items: start;
}
.category-filter {
    background: #fff;
    border: 1px solid #dce2e9;
    border-radius: 2px;
}
.category-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    border-bottom: 1px solid #e1e6ec;
}
.category-filter-head span {
    display: block;
    color: #7c8798;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.category-filter-head h2 {
    margin: 0;
    font-size: 20px;
  color: #172235;
  font-family: "Mulish", sans-serif;
}
.category-filter-reset {
    border: 0;
    background: transparent;
    color: #174eae;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 0;
    font-family: "Mulish", sans-serif;
}
.category-filter-block {
    border-bottom: 1px solid #e1e6ec;
}
.category-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px 13px;
    color: #182230;
    font-size: 20px;
    font-weight: 700;
     font-family: "Mulish", sans-serif;
}
.category-filter-title i {
    color: #8a95a5;
    font-size: 12px;
}
.category-filter-options {
    padding: 0 20px 14px;
}
.category-check {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    min-height: 34px;
    cursor: pointer;
}
.category-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.category-check-box {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 1px solid #bfc7d2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}
.category-check-box i {
    display: none;
    color: #fff;
    font-size: 10px;
}
.category-check input:checked + .category-check-box {
    background: #174eae;
    border-color: #174eae;
}
.category-check input:checked + .category-check-box i {
    display: block;
}
.category-check-label {
    flex: 1;
    color: #424242;
    font-size: 12px;
    line-height: 1.4;
    font-family: "Mulish", sans-serif;
}
.category-check small {
    color: #9aa4b2;
    font-size: 10px;
}
.category-filter-related {
    background: #102d5d;
    color: #fff;
    padding: 24px 20px;
}
.category-related-label {
    display: block;
    color: #8db5f4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: "Mulish", sans-serif;
}
.category-filter-related h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.3;
    font-family: "Mulish", sans-serif;
}
.category-filter-related p {
    margin: 0 0 17px;
    color: #c1d0e7;
    font-size: 12px;
    line-height: 1.7;
}
.category-filter-related a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    font-family: "Mulish", sans-serif;
}
.category-filter-related a i {
    transition: transform .2s ease;
}
.category-filter-related a:hover i {
    transform: translateX(4px);
}
.category-products-section {
    min-width: 0;
}
.category-products-toolbar {
    min-height: 56px;
    padding: 0 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dce2e9;
    border-bottom: 1px solid #dce2e9;
    background: #fff;
}
.category-results {
    color: #778294;
    font-size: 13px;
    font-family: "Mulish", sans-serif;
}
.category-results strong {
    color: #172235;
}
.category-sort {
    height: 56px;
    display: flex;
    align-items: center;
    border-left: 1px solid #dce2e9;
    border-right: 1px solid #dce2e9;
}
.category-sort label {
    color: #8490a0;
    font-size: 13px;
    margin: 0 12px 0 18px;
}
.category-sort select {
    height: 55px;
    min-width: 150px;
    border: 0;
    outline: 0;
    background: #fff;
    color: #1c2738;
    font-size: 13px;
    padding: 0 18px 0 0;
    cursor: pointer;
}
.category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.category-product-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #dce2e9;
    /* border-bottom: 1px solid #dce2e9; */
    transition: box-shadow .25s ease, transform .25s ease;
}
.category-product-card:hover {
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(24,34,48,.1);
}
.category-product-image {
    height: 245px;
    background: #f8fafc;
    border-bottom: 1px solid #e1e6ec;
    position: relative;
    overflow: hidden;
}
.category-product-image > a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}
.category-product-card:hover .category-product-image img {
    transform: scale(1.05);
}
.category-compare-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #d5dce5;
    background: rgba(255,255,255,.96);
    color: #3e4b5d;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    font-family: "Mulish", sans-serif;
}
.category-compare-btn:hover,
.category-compare-btn.category-selected {
    color: #fff;
    background: #174eae;
    border-color: #174eae;
}
.category-compare-btn.category-selected i {
    transform: rotate(45deg);
}
.category-product-content {
    padding: 20px;
}
.category-product-subcategory {
    display: block;
    color: #174eae;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 7px;
    font-family: "Mulish", sans-serif;
}
.category-product-name {
    display: block;
    min-height: 43px;
    color: #172235;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
    font-family: "Mulish", sans-serif;
}
.category-product-name:hover {
    color: #174eae;
}
.category-product-specifications {
    list-style: none;
    padding: 14px 0 0;
    margin: 14px 0 0;
    border-top: 1px solid #e5e9ee;
}
.category-product-specifications li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
}
.category-product-specifications span {
    color: #8a94a3;
    font-size: 11px;
    font-family: "Mulish", sans-serif;
}
.category-product-specifications strong {
    color: #3b4757;
    font-size: 11px;
    font-weight: 600;
    text-align: right;
    font-family: "Mulish", sans-serif;
}
.category-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 17px;
    gap: 12px;
}
.category-quote-btn,
.category-catalog-btn {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
    border: 1px solid #dce2e9;
    font-family: "Mulish", sans-serif;
}
.category-quote-btn {
    color: #fff;
    background: #174eae;
}
.category-quote-btn:hover {
    background: #103d8a;
    color: #fff;
}
.category-catalog-btn {
    color: #455264;
    background: #fff;
    border-left: 1px solid #dce2e9;
}
.category-catalog-btn:hover {
    color: #174eae;
    background: #f6f8fb;
}
.category-no-results {
    display: none;
    background: #fff;
    padding: 80px 30px;
    text-align: center;
    border-bottom: 1px solid #dce2e9;
}
.category-no-results i {
    color: #9aa5b5;
    font-size: 35px;
}
.category-no-results h3 {
    margin: 14px 0 5px;
    color: #172235;
    font-size: 20px;
}
.category-no-results p {
    margin: 0 0 18px;
    color: #7c8798;
    font-size: 13px;
}
.category-no-results button {
    border: 0;
    background: #174eae;
    color: #fff;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.category-compare-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 390px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(-105%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 15px 0 40px rgba(0,0,0,.16);
    display: flex;
    flex-direction: column;
}
.category-compare-panel.category-open {
    transform: translateX(0);
}
.category-compare-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,21,38,.52);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}
.category-compare-overlay.category-open {
    opacity: 1;
    visibility: visible;
}
.category-compare-header {
    padding: 23px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dce2e9;
}
.category-compare-header span {
    display: block;
    color: #174eae;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 5px;
}
.category-compare-header h3 {
    margin: 0;
    color: #162133;
    font-size: 20px;
}
.category-compare-header button {
    width: 35px;
    height: 35px;
    border: 1px solid #dce2e9;
    background: #fff;
    color: #5c6879;
    cursor: pointer;
}
.category-compare-progress {
    padding: 18px 22px;
    background: #f7f9fc;
    border-bottom: 1px solid #e1e6ec;
}
.category-compare-progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
}
.category-compare-progress-top span {
    color: #697587;
    font-size: 11px;
}
.category-compare-progress-top strong {
    color: #174eae;
    font-size: 11px;
}
.category-compare-progress-bar {
    height: 4px;
    background: #dce2e9;
    overflow: hidden;
}
.category-compare-progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #174eae;
    transition: width .3s ease;
}
.category-compare-progress p {
    margin: 8px 0 0;
    color: #8993a2;
    font-size: 10px;
}
.category-compare-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 22px;
}
.category-compare-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e1e6ec;
}
.category-compare-item-image {
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-compare-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.category-compare-item-content {
    padding-right: 25px;
}
.category-compare-item-content span {
    display: block;
    color: #8a95a4;
    font-size: 9px;
    margin-bottom: 5px;
}
.category-compare-item-content h4 {
    margin: 0;
    color: #1d2939;
    font-size: 13px;
    line-height: 1.45;
}
.category-compare-item-remove {
    position: absolute;
    top: 17px;
    right: 0;
    width: 23px;
    height: 23px;
    border: 0;
    background: transparent;
    color: #9aa4b1;
    cursor: pointer;
}
.category-compare-item-remove:hover {
    color: #d33c3c;
}
.category-compare-empty {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.category-compare-empty i {
    color: #b0bac7;
    font-size: 38px;
    margin-bottom: 12px;
}
.category-compare-empty h4 {
    margin: 0 0 5px;
    color: #293548;
    font-size: 16px;
}
.category-compare-empty p {
    max-width: 230px;
    margin: 0;
    color: #8993a2;
    font-size: 11px;
    line-height: 1.6;
}
.category-compare-footer {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-top: 1px solid #dce2e9;
}
.category-compare-clear,
.category-compare-action {
    min-height: 58px;
    border: 0;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.category-compare-clear {
    background: #fff;
    color: #657183;
    border-right: 1px solid #dce2e9;
}
.category-compare-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: #174eae;
}
.category-compare-action:disabled {
    color: #aab3c0;
    background: #edf0f4;
    cursor: not-allowed;
}
@media (max-width:1199px) {
    .category-layout {
        grid-template-columns: 250px minmax(0,1fr);
    }
    .category-product-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
@media (max-width:991px) {
    .category-header {
        align-items: flex-start;
        gap: 25px;
    }
    .category-header h1 {
        font-size: 34px;
    }
    .category-layout {
        grid-template-columns: 1fr;
    }
    .category-filter {
        margin-bottom: 20px;
    }
    .category-filter-block {
        display: none;
    }
    .category-filter-block:first-of-type {
        display: block;
    }
    .category-filter-related {
        display: none;
    }
}
@media (max-width:767px) {
    .category {
        padding: 40px 0 60px;
    }
    .category-header {
        flex-direction: column;
        padding-bottom: 24px;
    }
    .category-header h1 {
        font-size: 30px;
    }
    .category-header-count {
        border-left: 0;
        border-top: 1px solid #dce2e9;
        padding: 15px 0 0;
        width: 100%;
        align-items: flex-start;
    }
    .category-products-toolbar {
        padding-left: 15px;
    }
    .category-sort label {
        display: none;
    }
    .category-sort select {
        min-width: 125px;
    }
    .category-product-grid {
        grid-template-columns: 1fr;
    }
    .category-product-image {
        height: 270px;
    }
}
@media (max-width:480px) {
    .category-header h1 {
        font-size: 26px;
    }
    .category-header p {
        font-size: 13px;
    }
    .category-compare-panel {
        width: 100%;
        max-width: 100%;
    }
}   

/* -----------------------------------------Description page */

.description {
    width: 100%;
    padding: 50px 0 70px;
    /* background: #f7f9fc; */
    color: #172235;
}
.description-product-section {
    display: grid;
    grid-template-columns: 55% 45%;
    background: #fff;
    border: 1px solid #dce2e9;
    border-radius: 2px;
}
.description-gallery {
    display: grid;
    grid-template-columns: 100px minmax(0,1fr);
    min-width: 0;
    border-right: 1px solid #dce2e9;
}
.description-thumbnail-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f7f9fc;
    border-right: 1px solid #dce2e9;
}
.description-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    flex: 1;
}
.description-thumbnail {
    width: 100px;
    height: 100px;
    flex: 0 0 92px;
    border: 0;
    border-bottom: 1px solid #dce2e9;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    position: relative;
}
.description-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #174eae;
    opacity: 0;
    transition: .2s ease;
}
.description-thumbnail.active:after {
    opacity: 1;
}
.description-thumbnail.active {
    background: #eef4fc;
}
.description-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.description-thumb-nav {
    width: 92px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-bottom: 1px solid #dce2e9;
    background: #fff;
    color: #566376;
    cursor: pointer;
    z-index: 2;
}
.description-thumb-nav:hover {
    background: #174eae;
    color: #fff;
}
.description-thumb-next {
    border-top: 1px solid #dce2e9;
    border-bottom: 0;
}
.description-main-image {
    min-width: 0;
    background: #fff;
}
.description-image-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
}
.description-image-container > img {
    width: 100%;
    height: 100%;
    padding: 45px;
    object-fit: contain;
    user-select: none;
}
.description-image-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #172f55;
    color: #fff;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    pointer-events: none;
}
.description-zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    display: none;
    border: 2px solid #174eae;
    background-repeat: no-repeat;
    background-color: #fff;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0,0,0,.18);
}
.description-image-caption {
    height: 48px;
    border-top: 1px solid #e0e5eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    color: #8490a0;
    font-size: 10px;
}
.description-image-caption span:first-child {
    color: #4d5a6b;
    font-weight: 600;
}
.description-image-caption i {
    color: #174eae;
    margin-right: 5px;
}
.description-product-info {
    padding: 42px 45px;
}
.description-product-category {
    color: #174eae;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.description-product-info h1 {
    margin: 0;
    color: #101a2b;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}
.description-product-code {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #8993a2;
    font-size: 11px;
    font-family: "Mulish", sans-serif;
}
.description-product-code strong {
    color: #445163;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}
.description-product-divider {
    width: 1px;
    height: 12px;
    background: #d4dbe3;
    margin: 0 4px;
}
.description-quick-text {
    margin: 25px 0 0;
    color: #667386;
    font-size: 14px;
    line-height: 1.8;
}
.description-key-features {
    margin-top: 28px;
    border-top: 1px solid #e0e5eb;
    padding-top: 22px;
}
.description-feature-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a2739;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: "Mulish", sans-serif;
}
.description-feature-heading i {
    color: #174eae;
}
.description-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}
.description-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
}
.description-feature-item i {
    color: #174eae;
    font-size: 14px;
    flex: 0 0 auto;
}
.description-feature-item span {
    color: #697586;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Mulish", sans-serif;
}
.description-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 27px;
    gap: 12px;
}
.description-quote-button,
.description-catalog-button {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .2s ease;
    font-family: "Mulish", sans-serif;
}
.description-quote-button {
    background: #174eae;
    color: #fff;
}
.description-quote-button:hover {
    background: #103d8a;
    color: #fff;
}
.description-catalog-button {
    background: #fff;
    color: #384658;
    border: 1px solid #d4dce5 !important;
    border-left: 0;
}
.description-catalog-button:hover {
    background: #f2f6fb;
    color: #174eae;
}
.description-product-note {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    color: #8b95a3;
    font-size: 12px;
    line-height: 1.5;
}
.description-product-note i {
    color: #174eae;
    font-size: 13px;
}
.description-detail-section {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #dce2e9;
    border-radius: 2px;
}
.description-detail-navigation {
    display: flex;
    border-bottom: 1px solid #dce2e9;
}
.description-detail-tab {
    min-width: 150px;
    min-height: 40px;
    border: 0;
    border-right: 1px solid #dce2e9;
    background: #fff;
    color: #788496;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    font-family: "Mulish", sans-serif;
}
.description-detail-tab:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #174eae;
    transform: scaleX(0);
    transition: .25s ease;
}
.description-detail-tab.active {
    color: #174eae;
}
.description-detail-tab.active:after {
    transform: scaleX(1);
}
.description-detail-content {
    padding: 38px 40px;
}
.description-detail-panel {
    display: none;
}
.description-detail-panel.active {
    display: block;
    animation: descriptionPanelFade .35s ease;
}
@keyframes descriptionPanelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.description-panel-heading span {
    display: block;
    color: #174eae;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
    font-family: "Mulish", sans-serif;
}
.description-panel-heading h2 {
    margin: 0 0 25px;
    color: #182538;
    font-size: 23px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}
.description-specification-table {
    border-top: 1px solid #dce2e9;
}
.description-spec-row {
    display: grid;
    grid-template-columns: 35% 65%;
    border-bottom: 1px solid #dce2e9;
}
.description-spec-row div {
    padding: 8px 12px;
    font-size: 14px;
}
.description-spec-row div:first-child {
    color: #657184;
    background: #f7f9fc;
    font-weight: 600;
    border-left: 1px solid #dce2e9;
    border-right: 1px solid #dce2e9;
    font-family: "Mulish", sans-serif;
}
.description-spec-row div:last-child {
    color: #2c394a;
    border-right: 1px solid #dce2e9;
}
.description-long-content > p {
    max-width: 900px;
    color: #687486;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 25px;
}
.description-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.description-benefit-card {
    padding: 25px;
    border: 1px solid #dce2e9;
    border-right: 0;
}
.description-benefit-card:last-child {
    border-right: 1px solid #dce2e9;
}
.description-benefit-card i {
    color: #174eae;
    font-size: 23px;
}
.description-benefit-card h3 {
    margin: 15px 0 7px;
  color: #1b283a;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}
.description-benefit-card p {
    margin: 0;
    color: #778293;
    font-size: 13px;
    line-height: 1.7;
}
.description-application-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.description-application-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid #dce2e9;
}
.description-application-item:nth-child(odd) {
    border-right: 1px solid #dce2e9;
}
.description-application-item i {
    color: #174eae;
    font-size: 25px;
}
.description-application-item h3 {
    margin: 0 0 7px;
    color: #1b283a;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}
.description-application-item p {
    margin: 0;
    color: #778293;
    font-size: 13px;
    line-height: 1.7;
}
.product-reviews,
.product-related,
.product-faq {
    width: 100%;
    padding: 50px 0;
}
.product-reviews {
    background: #fff;
}
.product-related {
    background: #f7f9fc;
}
.product-faq {
    background: #fff;
}
.product-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.product-section-heading span,
.product-faq-heading > span {
   display: block;
  color: #174eae;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-family: "Mulish", sans-serif;
}
.product-section-heading h2,
.product-faq-heading h2 {
   margin: 0;
  color: #101a2b;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}
.product-write-review {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #174eae;
    background: #fff;
    color: #174eae;
    min-height: 30px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Mulish", sans-serif;
}
.product-write-review:hover {
    background: #174eae;
    color: #fff;
}
.product-review-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid #dce2e9;
    border-radius: 2px;
}
.product-rating-summary {
    padding: 30px;
    border-right: 1px solid #dce2e9;
}
.product-rating-number {
    color: #172438;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}
.product-stars,
.product-review-stars {
    color: #f2a900;
    font-size: 13px;
    margin-top: 9px;
}
.product-rating-summary p {
    color: #8993a2;
    font-size: 13px;
    margin: 7px 0 25px;
    font-family: "Mulish", sans-serif;
}
.product-rating-bars > div {
    display: grid;
    grid-template-columns: 12px 1fr 22px;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
}
.product-rating-bars > div > span,
.product-rating-bars strong {
    color: #7c8797;
    font-size: 13px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
}
.product-rating-bars > div > div {
    height: 5px;
    background: #e5e9ee;
}
.product-rating-bars > div > div span {
    display: block;
    height: 100%;
    background: #174eae;
}
.product-rating-bars strong {
    text-align: right;
}
.product-review-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.product-review-card {
    padding: 28px;
    border-right: 1px solid #dce2e9;
}
.product-review-card:last-child {
    border-right: 0;
}
.product-review-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.product-review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-review-user > span {
    width: 38px;
    height: 38px;
    background: #eaf1fb;
    color: #174eae;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.product-review-user strong {
    display: block;
    color: #3b485a;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
}
.product-review-user small {
    display: block;
    color: #8c96a4;
    font-size: 12px;
    margin-top: 4px;
}
.product-review-stars {
    margin-top: 0;
}
.product-review-card h3 {
    margin: 22px 0 8px;
    color: #1e2b3d;
    font-size: 15px;
    font-family: "Mulish", sans-serif;
}
.product-review-card p {
    margin: 0;
    color: #768192;
    font-size: 13px;
    line-height: 1.7;
}
.product-related-navigation {
    display: flex;
}
.product-related-navigation button {
    width: 40px;
    height: 40px;
    border: 1px solid #d5dde6;
    background: #fff;
    color: #526073;
    cursor: pointer;
}
.product-related-navigation button + button {
    border-left: 0;
}
.product-related-navigation button:hover {
    background: #174eae;
    color: #fff;
}
.product-related-wrapper {
    overflow: hidden;
}
.product-related-track {
    display: flex;
    transition: transform .4s ease;
}
.product-related-card {
    min-width: 25%;
    background: #fff;
    border: 1px solid #dce2e9;
    border-right: 0;
}
.product-related-card:last-child {
    border-right: 1px solid #dce2e9;
}
.product-related-image {
    height: 210px;
    padding: 25px;
    background: #fff;
    border-bottom: 1px solid #dce2e9;
}
.product-related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-related-content {
    padding: 20px;
}
.product-related-content > span {
    display: block;
  color: #174eae;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
  font-family: "Mulish", sans-serif;
}
.product-related-content h3 {
    display: block;
  min-height: 43px;
  color: #172235;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
}

.product-related-content a {
   display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  background: #262756;
  padding: 4px 12px;
}
.product-related-content a i {
    transition: transform .2s ease;
}
.product-related-content a:hover i {
    transform: translateX(4px);
}
.product-faq-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}
.product-faq-heading p {
    margin: 12px 0 0;
    color: #788394;
    font-size: 15px;
    line-height: 1.7;
}
.product-faq-list {
    max-width: 950px;
    margin: 0 auto;
    border-top: 1px solid #dce2e9;
}
.product-faq-item {
    border-bottom: 1px solid #dce2e9;
}
.product-faq-question {
    width: 100%;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: #fff;
    color: #243145;
    padding: 0 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Mulish", sans-serif;
}
.product-faq-question i {
    color: #174eae;
    font-size: 17px;
    transition: transform .25s ease;
}
.product-faq-item.active .product-faq-question i {
    transform: rotate(45deg);
}
.product-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.product-faq-item.active .product-faq-answer {
    max-height: 300px;
}
.product-faq-answer p {
    margin: 0;
    padding: 0 50px 22px 20px;
    color: #778293;
    font-size: 14px;
    line-height: 1.8;
}
@media (max-width:1199px) {
    .description-product-section {
        grid-template-columns: 1fr;
    }
    .description-gallery {
        border-right: 0;
        border-bottom: 1px solid #dce2e9;
    }
    .description-product-info {
        padding: 35px;
    }
    .description-benefit-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .product-related-card {
        min-width: 33.333%;
    }
}
@media (max-width:991px) {
    .description-gallery {
        grid-template-columns: 80px minmax(0,1fr);
    }
    .description-thumbnail,
    .description-thumb-nav {
        width: 80px;
    }
    .description-thumbnail {
        height: 80px;
        flex-basis: 80px;
    }
    .description-image-container {
        height: 450px;
    }
    .product-review-layout {
        grid-template-columns: 230px 1fr;
    }
    .product-review-list {
        grid-template-columns: 1fr;
    }
    .product-review-card {
        border-right: 0;
        border-bottom: 1px solid #dce2e9;
    }
    .product-review-card:last-child {
        border-bottom: 0;
    }
    .product-related-card {
        min-width: 50%;
    }
}
@media (max-width:767px) {
    .description {
        padding: 35px 0 50px;
    }
    .description-gallery {
        grid-template-columns: 1fr;
    }
    .description-thumbnail-wrap {
        order: 2;
        flex-direction: row;
        border-right: 0;
        border-top: 1px solid #dce2e9;
    }
    .description-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .description-thumbnail {
        width: 82px;
        height: 82px;
        flex: 0 0 82px;
        border-right: 1px solid #dce2e9;
        border-bottom: 0;
    }
    .description-thumbnail:after {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
    }
    .description-thumb-nav {
        display: none;
    }
    .description-image-container {
        height: 380px;
    }
    .description-image-container > img {
        padding: 30px;
    }
    .description-product-info {
        padding: 28px 22px;
    }
    .description-product-info h1 {
        font-size: 27px;
    }
    .description-feature-grid {
        grid-template-columns: 1fr;
    }
    .description-product-actions {
        grid-template-columns: 1fr;
    }
    .description-catalog-button {
        border-left: 1px solid #d4dce5;
        border-top: 0;
    }
    .description-detail-navigation {
        overflow-x: auto;
    }
    .description-detail-tab {
        min-width: 125px;
        white-space: nowrap;
    }
    .description-detail-content {
        padding: 28px 20px;
    }
    .description-spec-row {
        grid-template-columns: 1fr;
    }
    .description-spec-row div:first-child {
        border-right: 0;
        border-bottom: 1px solid #dce2e9;
    }
    .description-benefit-grid,
    .description-application-grid {
        grid-template-columns: 1fr;
    }
    .description-benefit-card {
        border-right: 1px solid #dce2e9;
        border-bottom: 0;
    }
    .description-benefit-card:last-child {
        border-bottom: 1px solid #dce2e9;
    }
    .description-application-item:nth-child(odd) {
        border-right: 0;
    }
    .product-reviews,
    .product-related,
    .product-faq {
        padding: 50px 0;
    }
    .product-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .product-section-heading h2,
    .product-faq-heading h2 {
        font-size: 24px;
    }
    .product-review-layout {
        grid-template-columns: 1fr;
    }
    .product-rating-summary {
        border-right: 0;
        border-bottom: 1px solid #dce2e9;
    }
    .product-related-card {
        min-width: 80%;
    }
}
@media (max-width:480px) {
    .description-image-container {
        height: 320px;
    }
    .description-image-badge {
        top: 10px;
        right: 10px;
    }
    .description-image-caption {
        padding: 0 10px;
    }
    .description-product-info h1 {
        font-size: 24px;
    }
    .product-related-card {
        min-width: 90%;
    }
}
/* ----------------------------------Single catalog */

.single_catalog {
    width: 100%;
    padding: 50px 0;
    background: #f1f3f6;
    color: #17212b
}

.single_catalog .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto
}

.single-catalog-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 25px
}

.single-catalog-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    background: #17212b;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 3px;
}

.single-catalog-download:hover {
    background: #0b7285;
    /* transform: translateY(-2px) */
}

.single-catalog-download i {
    font-size: 18px
}

.single-catalog-document {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.single-catalog-page {
    position: relative;
    width: 210mm;
    min-height: 297mm;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(17, 31, 44, .16);
    margin-bottom: 35px
}

.single-catalog-cover-page {
    display: flex;
    align-items: stretch;
    background: #12232d;
    color: #fff
}

.single-catalog-cover-background {
    position: absolute;
    inset: 0;
    background-image: url("../images/sc4.jpg");
    background-size: cover;
    background-position: center;
    opacity: .9;
}

.single-catalog-cover-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(110deg, rgba(7, 27, 38, .96) 0%, rgba(7, 27, 38, .84) 42%, rgba(7, 27, 38, .35) 100%) */
}

.single-catalog-cover-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 297mm;
    padding: 15mm 17mm 13mm;
    display: flex;
    flex-direction: column
}

.single-catalog-cover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 15px
}

.single-catalog-cover-logo {
    display: inline-flex;
    align-items: center;
    max-width: 180px
}

.single-catalog-cover-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 55px;
    object-fit: contain
}

.single-catalog-cover-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75)
}

.single-catalog-cover-main {
    flex: 1;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    padding: 18mm 0 12mm
}

.single-catalog-cover-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2mm;
}

.single-catalog-image-frame {
    width: 100%;
    height: 105mm;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .3); */
    padding: 1mm
}

.single-catalog-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.single-catalog-cover-product-content {
    padding-left: 2mm;
}

.single-catalog-cover-category {
    display: block;
    font-size: 14px;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #8d8d8d;
    margin-bottom: 13px
}

.single-catalog-cover-title {
    font-size: 34px;
    line-height: 1.14;
    font-weight: 700;
    margin: 0 0 18px;
    color: #252755;
    font-family: "Mulish", sans-serif;
}

.single-catalog-cover-line {
    width: 55px;
    height: 3px;
    background: #103e85;
    margin-bottom: 20px
}

.single-catalog-cover-description {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .84);
    margin: 0 0 24px
}

.single-catalog-cover-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.single-catalog-cover-highlight {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    color: rgba(255, 255, 255, .9)
}

.single-catalog-cover-highlight i {
    color: #8d8d8d;
  font-size: 15px;
}

.single-catalog-cover-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 14px
}

.single-catalog-cover-contact {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.single-catalog-cover-contact a,
.single-catalog-cover-website a {
    color: #252755;
  text-decoration: none;
  font-size: 12px;
}

.single-catalog-cover-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Mulish", sans-serif;
}

.single-catalog-cover-contact i {
    color: #8d8d8d;
    font-size: 14px;
}

.single-catalog-cover-website a {
    font-weight: 600;
    letter-spacing: .5px;
    font-family: "Mulish", sans-serif;
}

.single-catalog-overview-page,
.single-catalog-features-page {
    background: #fff
}

.single-catalog-page-content {
    position: relative;
    z-index: 3;
    min-height: 297mm;
    padding: 15mm 16mm 13mm
}

.single-catalog-watermark {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: .035;
    /* animation: singleCatalogWatermarkFade 6s ease-in-out infinite alternate; */
    align-items: center;
    display: flex;
    /* max-width: 200px; */
    justify-content: center;
    /* animation: singleCatalogWatermarkFade 6s ease-in-out infinite alternate */
}

.single-catalog-watermark img,
.single-catalog-watermark-two img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 500px;
    border-radius: 50px;
}

.single-catalog-watermark-two {
    position: absolute;
    z-index: 0;
    bottom: 35mm;
    left: -35mm;
    width: 110mm;
    opacity: .022;
    animation: singleCatalogWatermarkFadeTwo 8s ease-in-out infinite alternate
}

@keyframes singleCatalogWatermarkFade {
    0% {
        opacity: .015;
        transform: scale(.96)
    }

    100% {
        opacity: .045;
        transform: scale(1.04)
    }
}

@keyframes singleCatalogWatermarkFadeTwo {
    0% {
        opacity: .01;
        transform: rotate(-8deg) scale(.96)
    }

    100% {
        opacity: .03;
        transform: rotate(-8deg) scale(1.03)
    }
}

.single-catalog-inner-header {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dfe5e9;
    padding-bottom: 10px;
    margin-bottom: 25px
}

.single-catalog-inner-logo img {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 40px;
    object-fit: contain
}

.single-catalog-inner-page-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d3d3d3;
}

.single-catalog-section-heading {
    position: relative;
    z-index: 5;
    margin-bottom: 20px
}

.single-catalog-section-heading>span {
    display: block;
    color: #8d8d8d;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.2px;
    margin-bottom: 6px;
    font-family: "Mulish", sans-serif;
}

.single-catalog-section-heading h2 {
    font-size: 27px;
    line-height: 1.2;
    color: #18252d;
    margin: 0;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.single-catalog-heading-line {
    width: 45px;
    height: 3px;
    background: #103e85;
    margin-top: 10px
}

.single-catalog-overview-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 58% 42%;
    /* border-top: 1px solid #e3e8eb; */
    border-bottom: 1px solid #e3e8eb;
}

.single-catalog-overview-text {
    padding: 18px 25px 18px 0
}

.single-catalog-overview-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #5b6870;
    margin: 0 0 11px
}

.single-catalog-overview-text p:last-of-type {
    margin-bottom: 15px
}

.single-catalog-overview-note {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f1f7f8;
    border-left: 3px solid #0b8b9b
}

.single-catalog-note-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dceff1;
    color: #087786
}

.single-catalog-overview-note strong {
    font-size: 10px;
    color: #24323a
}

.single-catalog-overview-note p {
    font-size: 8.5px;
    line-height: 1.5;
    margin: 3px 0 0;
    color: #69767d
}

.single-catalog-overview-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 15px 20px
}

.single-catalog-overview-image-box {
    width: 100%;
    height: 88mm;
    /* background: #f5f7f8; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px
}

.single-catalog-overview-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.single-catalog-specification-heading {
    position: relative;
    z-index: 5;
    margin-top: 22px;
    margin-bottom: 10px
}

.single-catalog-specification-heading h3 {
    font-size: 27px;
    color: #202e36;
    margin: 0;
    font-family: "Mulish", sans-serif;
}

.single-catalog-specification-table-wrapper {
    position: relative;
    z-index: 5;
    border: 1px solid #dfe5e8
}

.single-catalog-specification-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

.single-catalog-specification-table th,
.single-catalog-specification-table td {
    padding: 8px 9px;
    text-align: left;
    border-right: 1px solid #dfe5e8;
    border-bottom: 1px solid #dfe5e8;
    font-size: 13px;
    line-height: 1.45;
    font-family: "Mulish", sans-serif;
}

.single-catalog-specification-table th {
    width: 18%;
    font-weight: 600;
    color: #35434b;
    background: transparent;
}

.single-catalog-specification-table td {
    width: 32%;
    color: #65727a;
    background: transparent;
}

.single-catalog-specification-table tr:last-child th,
.single-catalog-specification-table tr:last-child td {
    border-bottom: 0
}

.single-catalog-specification-table th:last-child,
.single-catalog-specification-table td:last-child {
    border-right: 0
}

.single-catalog-related-content {
    position: relative;
    z-index: 5;
    margin-top: 19px
}

.single-catalog-related-content-heading h3 {
    font-size: 14px;
    color: #202e36;
    margin: 0 0 10px
}

.single-catalog-related-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dfe5e8;
    border-left: 1px solid #dfe5e8
}

.single-catalog-related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border-right: 1px solid #dfe5e8;
    border-bottom: 1px solid #dfe5e8;
    text-decoration: none;
    background: #fff;
    transition: background .25s ease
}

.single-catalog-related-item:hover {
    background: #f3f8f9
}

.single-catalog-related-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf6f7;
    color: #0b8b9b
}

.single-catalog-related-item strong {
    display: block;
    color: #29373f;
    font-size: 8.5px;
    line-height: 1.3
}

.single-catalog-related-item small {
    display: block;
    color: #7a858b;
    font-size: 7px;
    margin-top: 3px
}

.single-catalog-page-three-content {
    display: flex;
    flex-direction: column
}

.single-catalog-feature-application-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dfe5e8;
    border-bottom: 1px solid #dfe5e8
}

.single-catalog-features-box {
    padding: 17px 20px 17px 0;
    border-right: 1px solid #dfe5e8
}

.single-catalog-applications-box {
    padding: 17px 0 17px 20px
}

.single-catalog-box-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px
}

.single-catalog-box-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #deebff;
  color: #103e85;
    font-size: 16px
}

.single-catalog-box-title span:not(.single-catalog-box-icon) {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #8d8d8d;
    margin-bottom: 3px;
    font-family: "Mulish", sans-serif;
}

.single-catalog-box-title h3 {
    font-size: 20px;
    color: #24323a;
    margin: 0;
     font-family: "Mulish", sans-serif;
}

.single-catalog-feature-list {
    display: flex;
    flex-direction: column
}

.single-catalog-feature-item {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #edf0f2
}

.single-catalog-feature-item:last-child {
    border-bottom: 0
}

.single-catalog-feature-item>span {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #deebff;
    color: #103e85;
  font-size: 14px;
}

.single-catalog-feature-item strong {
    display: block;
    color: #303e46;
    font-size: 16px;
  margin-bottom: 3px;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
}

.single-catalog-feature-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #7a858c;
    margin: 0
}

.single-catalog-application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #e6eaec;
    border-left: 1px solid #e6eaec
}

.single-catalog-application-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 9px;
    border-right: 1px solid #e6eaec;
    border-bottom: 1px solid #e6eaec;
    font-size: 13px;
    color: #4e5b62
}

.single-catalog-application-item i {
    font-size: 14px;
    color: #103e85;
}

.single-catalog-application-description {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 35% 65%;
    margin-top: 22px;
    /* background: #f3f7f8; */
}

.single-catalog-application-description-image {
    height: 65mm;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px
}

.single-catalog-application-description-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.single-catalog-application-description-content {
    padding: 19px 22px
}

.single-catalog-application-description-content>span {
    display: block;
    font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #8d8d8d;
  margin-bottom: 3px;
  font-family: "Mulish", sans-serif;
}

.single-catalog-application-description-content h3 {
   font-size: 27px;
  line-height: 1.2;
  color: #18252d;
  margin: 8px 0 8px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}

.single-catalog-application-description-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #69757c;
    margin: 0 0 14px
}

.single-catalog-request-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #262756;
    color: #fff;
    text-decoration: none;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease
}

.single-catalog-request-button:hover {
    background:#103e85;
}

.single-catalog-footer {
    position: relative;
    z-index: 5;
    margin-top: auto;
    padding-top: 19px
}

.single-catalog-footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dce2e5;
    border-bottom: 1px solid #dce2e5;
    padding: 15px 0
}

.single-catalog-footer-brand {
    padding-right: 18px
}

.single-catalog-footer-logo {
    display: inline-flex;
    margin-bottom: 8px
}

.single-catalog-footer-logo img {
    display: block;
    width: auto;
    max-width: 105px;
    max-height: 30px;
    object-fit: contain
}

.single-catalog-footer-brand p {
    font-size: 12px;
    line-height: 1.6;
    color: #768188;
    margin: 0
}

.single-catalog-footer-column {
    padding: 0 12px;
    border-left: 1px solid #e2e6e8
}

.single-catalog-footer-column h4 {
    font-size: 14px;
    color: #27353d;
    margin: 0 0 8px;
    font-family: "Mulish", sans-serif;
}

.single-catalog-footer-column a {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #707c83;
    font-size: 12px;
    margin-bottom: 6px
}

.single-catalog-footer-column a:hover {
    color: #262756;
}

.single-catalog-footer-column a i {
    font-size: 13px;
    color: #262756;
}

.single-catalog-footer-contact p {
    display: flex;
    gap: 6px;
    font-size: 12px;
    line-height: 1.5;
    color: #707c83;
    margin: 0 0 7px
}

.single-catalog-footer-contact p i {
    font-size: 15px;
  color: #262756;
}

.single-catalog-footer-contact a i {
    font-size: 15px
}

.single-catalog-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 9px;
    color: #879198;
    font-size: 11px
}

@media(max-width:900px) {
    .single_catalog {
        padding: 25px 15px
    }

    .single-catalog-page {
        width: 100%;
        min-height: auto
    }

    .single-catalog-cover-content,
    .single-catalog-page-content {
        min-height: auto;
        padding: 45px 30px
    }

    .single-catalog-cover-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0
    }

    .single-catalog-cover-product-image {
        padding-right: 0
    }

    .single-catalog-cover-product-content {
        padding-left: 0
    }

    .single-catalog-cover-title {
        font-size: 30px
    }

    .single-catalog-overview-grid,
    .single-catalog-feature-application-grid,
    .single-catalog-application-description {
        grid-template-columns: 1fr
    }

    .single-catalog-overview-image {
        padding: 0 0 20px
    }

    .single-catalog-overview-image-box {
        height: 320px
    }

    .single-catalog-features-box {
        border-right: 0;
        border-bottom: 1px solid #dfe5e8;
        padding: 20px 0
    }

    .single-catalog-applications-box {
        padding: 20px 0
    }

    .single-catalog-application-description-image {
        height: 300px
    }

    .single-catalog-footer-main {
        grid-template-columns: 1fr 1fr
    }

    .single-catalog-footer-brand {
        grid-column: 1/-1;
        padding: 0 0 15px
    }

    .single-catalog-footer-column {
        margin-bottom: 10px
    }
}

@media(max-width:600px) {
    .single-catalog-cover-header {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column
    }

    .single-catalog-cover-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }

    .single-catalog-related-content-grid {
        grid-template-columns: 1fr
    }

    .single-catalog-application-list {
        grid-template-columns: 1fr
    }

    .single-catalog-footer-main {
        grid-template-columns: 1fr
    }

    .single-catalog-footer-column {
        padding: 12px 0;
        border-left: 0;
        border-top: 1px solid #e2e6e8
    }

    .single-catalog-footer-bottom {
        flex-direction: column
    }

    .single-catalog-cover-title {
        font-size: 25px
    }

    .single-catalog-section-heading h2 {
        font-size: 23px
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 0
    }

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important
    }

    .single_catalog {
        padding: 0 !important;
        background: #fff !important
    }

    .single_catalog .custom_container {
        max-width: none !important;
        width: auto !important
    }

    .single-catalog-actions {
        display: none !important
    }

    .single-catalog-document {
        display: block !important
    }

    .single-catalog-page {
        width: 210mm !important;
        height: 297mm !important;
        min-height: 297mm !important;
        margin: 0 !important;
        box-shadow: none !important;
        page-break-after: always !important;
        break-after: page !important
    }

    .single-catalog-page:last-child {
        page-break-after: auto !important;
        break-after: auto !important
    }

    .single-catalog-cover-content,
    .single-catalog-page-content {
        height: 297mm !important;
        min-height: 297mm !important
    }

    .single-catalog-watermark,
    .single-catalog-watermark-two {
        animation: none !important
    }
}


/* -------------------------------Compare */

.compare {
    width: 100%;
    padding: 50px 0;
    color: #202d35
}

.compare .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto
}

.compare-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px
}

.compare-heading h2 {
    margin: 0 0 12px;
  color: #101a2b;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}

.compare-count {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 12px;
    border: 1px solid #dbe2e5;
    background: #fff;
    color: #66737a;
    font-size: 13px;
    white-space: nowrap
}

.compare-count i {
    font-size: 17px;
    color: #262756;
}

.compare-count strong {
    color: #17252d
}

.compare-table-wrapper {
    width: 100%;
    max-height: 720px;
    overflow: auto;
    background: #fff;
    border: 1px solid #dce3e6;
    box-shadow: 0 10px 35px rgba(20, 37, 48, .07)
}

.compare-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed
}

.compare-table th,
.compare-table td {
    width: 18%;
    /* height: 60px; */
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid #e0e5e7;
    border-bottom: 1px solid #e0e5e7;
    font-family: "Mulish", sans-serif;
}

.compare-table th:first-child,
.compare-table td:first-child {
    width: 12%;
    position: sticky;
    left: 0;
    z-index: 10
}

.compare-table thead th {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff
}

.compare-table thead th:first-child {
    z-index: 30
}

.compare-specification-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    justify-content: center;
}

.compare-specification-title i {
    font-size: 18px;
    color: #72d2dc
}

.compare-product-head {
    height: 275px !important;
    padding: 15px !important;
    text-align: center !important;
    background: #fff
}

.compare-product-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.compare-product-image {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.compare-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.compare-product-name {
    display: block;
    /* max-width: 190px; */
    color: #25343c;
    text-decoration: none;
    font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  transition: color .25s ease;
  font-family: "Mulish", sans-serif;
}

.compare-product-name:hover {
    color: #262756;
}

.compare-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 115px;
    padding: 6px 12px;
    background: #262756;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .25s ease
}

.compare-quote-btn:hover {
    background: #172a33;
    transform: translateY(-2px)
}

.compare-remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #103e85;
    background: #103e85;
    color: #fff !important;
    cursor: pointer;
    font-size: 11px;
    z-index: 3;
    transition: all .25s ease
}

.compare-remove-btn:hover {
    background: #e95454;
    border-color: #e95454;
    color: #fff
}

.compare-specification-cell {
    font-weight: 600;
    color: #33434b;
    background: #f4f7f8 !important
}

.compare-table tbody td {
    color: #68757c;
    background: #fff
}

.compare-table tbody tr:hover td {
    background: #f8fbfb
}

.compare-table tbody tr:hover .compare-specification-cell {
    background: #eaf4f5 !important;
    color: #172a33
}

.compare-table tr th:last-child,
.compare-table tr td:last-child {
    border-right: 0
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: 0
}

.compare-table-wrapper::-webkit-scrollbar {
    width: 9px;
    height: 9px
}

.compare-table-wrapper::-webkit-scrollbar-track {
    background: #edf1f2
}

.compare-table-wrapper::-webkit-scrollbar-thumb {
    background: #aab8bd
}

.compare-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #73848b
}

.compare-empty {
    display: none;
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border: 1px solid #dce3e6
}

.compare-empty.active {
    display: block
}

.compare-empty-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: #edf6f7;
    color: #0b8b9b;
    font-size: 28px
}

.compare-empty h3 {
    font-size: 22px;
    color: #26353d;
    margin: 0 0 8px
}

.compare-empty p {
    font-size: 14px;
    color: #78848a;
    margin: 0 0 20px
}

.compare-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #172a33;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease
}

.compare-back-btn:hover {
    background: #0b8b9b
}

@media(max-width:991px) {
    .compare {
        padding: 50px 15px
    }

    .compare-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px
    }

    .compare-heading h2 {
        font-size: 28px
    }

    .compare-table-wrapper {
        max-height: 600px
    }
}

@media(max-width:575px) {
    .compare {
        padding: 40px 10px
    }

    .compare-heading h2 {
        font-size: 25px
    }

    .compare-heading p {
        font-size: 13px
    }

    .compare-count {
        font-size: 12px
    }

    .compare-table {
        min-width: 1000px
    }

    .compare-table th,
    .compare-table td {
        font-size: 15px;
        padding: 15px
    }
}
/* -------------------------------Contact Us */

.contactus {
    width: 100%;
    padding: 50px 0;
    color: #1d2c34;
}

.contactus .custom_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto
}

.contactus-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.contactus-heading h2 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
    margin: 0 0 14px
}

.contactus-main {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #fff;
    box-shadow: 0 18px 50px rgba(24, 45, 57, .08)
}

.contactus-information {
    position: relative;
    padding: 45px 42px;
    color: #fff;
    overflow: hidden;
    background-image: url(../images/contactus.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}

.contactus-information:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -160px;
    top: -130px;
    border: 1px solid rgba(255, 255, 255, .08);
    transform: rotate(45deg)
}

.contactus-information:after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -150px;
    bottom: -130px;
    border: 1px solid rgba(255, 255, 255, .07);
    transform: rotate(45deg)
}

.contactus-info-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 32px
}

.contactus-info-heading h3 {
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #262756;
    font-family: "Mulish", sans-serif;
}

.contactus-info-heading p {
    font-size: 14px;
    line-height: 1.75;
    color:rgba(51, 51, 51, 0.65);
    margin: 0
}

.contactus-info-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column
}

.contactus-info-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.contactus-info-item:last-child {
    border-bottom: 0
}

.contactus-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 39, 86, 0.25);
  color: #262756;
    font-size: 18px;
    border: 1px solid #fff;
}

.contactus-info-content>span {
    display: block;
    font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #262756;
    margin-bottom: 4px
}

.contactus-info-content h4 {
    font-size: 16px;
  color: #111;
  margin: 0 0 5px;
  font-weight: 600;
   font-family: "Mulish", sans-serif;
}

.contactus-info-content p {
    font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
  background: #ffffff75;
  padding: 5px;
  border-radius: 8px;
}

.contactus-info-content a {
    display: block;
    width: max-content;
    max-width: 100%;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    line-height: 1.7;
    transition: color .25s ease;
    background: #ffffff7d;
  padding: 5px;
  border-radius: 9px;
  margin-bottom: 5px;
}

.contactus-info-content a:hover {
    color: #262756;
}

.contactus-social {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px
}

.contactus-social>span {
    font-size: 14px;
    letter-spacing: 1.8px;
    color: #111;
    font-weight: 600;
     font-family: "Mulish", sans-serif;
}

.contactus-social-links {
    display: flex;
    gap: 7px
}

.contactus-social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: all .25s ease;
  background: #262756;
}

.contactus-form-wrapper {
    padding: 45px 48px;
    background: #fff;
    border: 1px solid #e1e1e1;
}

.contactus-form-heading {
    margin-bottom: 28px
}

.contactus-form-heading h3 {
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #262756;
    font-family: "Mulish", sans-serif;
}

.contactus-form-heading p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(51, 51, 51, 0.65);
    margin: 0;
    max-width: 650px
}

.contactus-form {
    width: 100%
}

.contactus-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.contactus-form-group {
    position: relative;
    margin-bottom: 19px
}

.contactus-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #36454d;
    margin-bottom: 7px;
    font-family: "Mulish", sans-serif;
}

.contactus-form-group label strong {
    color: #f98787;
}

.contactus-input-wrapper,
.contactus-textarea-wrapper {
    position: relative
}

.contactus-input-wrapper>i,
.contactus-textarea-wrapper>i {
    position: absolute;
    left: 13px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    font-size: 14px;
    color: #87939a;
    pointer-events: none
}

.contactus-input-wrapper input,
.contactus-input-wrapper select,
.contactus-textarea-wrapper textarea {
    width: 100%;
    border: 1px solid #dfe5e7;
    background: #fbfcfc;
    color: #29383f;
    font-family: inherit;
    font-size: 12px;
    outline: none;
     font-family: "Mulish", sans-serif;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease
}

.contactus-input-wrapper input,
.contactus-input-wrapper select {
    height: 45px;
    padding: 0 38px
}

.contactus-input-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-right: 42px
}

.contactus-input-wrapper input::placeholder,
.contactus-textarea-wrapper textarea::placeholder {
    color: #a1abb0
}

.contactus-input-wrapper input:focus,
.contactus-input-wrapper select:focus,
.contactus-textarea-wrapper textarea:focus {
    border-color: #0b8b9b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 139, 155, .08)
}

.contactus-select-arrow {
    position: absolute !important;
    left: auto !important;
    right: 14px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 11px !important;
    color: #849197 !important
}

.contactus-textarea-wrapper>i {
    top: 17px;
    transform: none
}

.contactus-textarea-wrapper textarea {
    display: block;
    resize: vertical;
    min-height: 125px;
    padding: 13px 15px 13px 38px;
    line-height: 1.6
}

.contactus-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px
}

.contactus-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: #7a858a;
    cursor: pointer;
}

.contactus-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contactus-checkbox-mark {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1px solid #d1dadd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease
}

.contactus-checkbox input:checked+.contactus-checkbox-mark {
    background: #0b8b9b;
    border-color: #0b8b9b
}

.contactus-checkbox input:checked+.contactus-checkbox-mark:after {
    content: "✓";
    font-size: 10px;
    color: #fff
}

.contactus-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    background: #262756;
    color: #fff;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
     font-family: "Mulish", sans-serif;
}

.contactus-submit i {
    font-size: 13px;
    transition: transform .25s ease
}

.contactus-submit:hover {
    background: #172a33;
    transform: translateY(-2px)
}

.contactus-submit:hover i {
    transform: translateX(4px)
}

.contactus-form-message {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 11px 13px;
    margin-top: 18px;
    background: #edf8f5;
    color: #21805d;
    font-size: 10px
}

.contactus-form-message.active {
    display: flex
}

.contactus-form-message i {
    font-size: 15px
}

.contactus-quick-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid #dfe5e7;
    border-top: 1px solid #dfe5e7;
    background: #fff
}

.contactus-quick-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 25px 22px;
    border-right: 1px solid #dfe5e7;
    border-bottom: 1px solid #dfe5e7
}

.contactus-quick-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7f8;
    color: #0b8b9b;
    font-size: 19px
}

.contactus-quick-card h4 {
    font-size: 15px;
    color: #293840;
    margin: 0 0 4px;
    font-family: "Mulish", sans-serif;
}

.contactus-quick-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #808b91;
    margin: 0
}

.contactus-quick-card>a {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3e5;
    color: #6d7b82;
    text-decoration: none;
    font-size: 12px;
    transition: all .25s ease
}


.contactus-map-section {
    margin-top: 55px
}

.contactus-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.contactus-map-heading>div>span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: #0b8b9b;
    font-weight: 700;
    margin-bottom: 5px
}

.contactus-map-heading h3 {
   font-size: 30px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #262756;
  font-family: "Mulish", sans-serif;
}

.contactus-map-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #d9e1e3;
    color: #415159;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    transition: all .25s ease;
    font-family: "Mulish", sans-serif;
}

.contactus-map-wrapper {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid #dce3e5;
    background: #e8edef
}

.contactus-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(.15)
}

.contactus-map-card {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 300px;
    padding: 20px;
    display: flex;
    gap: 13px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 39, 49, .18)
}

.contactus-map-card-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7f8;
    color: #0b8b9b;
    font-size: 17px
}

.contactus-map-card span {
    display: block;
    font-size: 7px;
    letter-spacing: 1.5px;
    color: #0b8b9b;
    font-weight: 700;
    margin-bottom: 5px
}

.contactus-map-card h4 {
    font-size: 15px;
    color: #27363e;
    margin: 0 0 7px
}

.contactus-map-card p {
    font-size: 12px;
    line-height: 1.55;
    color: #7b878d;
    margin: 0 0 7px
}

.contactus-map-card a {
    display: flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    font-size: 12px;
    color: #46555c;
    text-decoration: none
}

.contactus-map-card a i {
    color: #0b8b9b
}

@media(max-width:1100px) {
    .contactus {
        padding: 65px 20px
    }

    .contactus-main {
        grid-template-columns: 1fr
    }

    .contactus-information {
        padding: 40px
    }

    .contactus-form-wrapper {
        padding: 40px
    }

    .contactus-quick-section {
        grid-template-columns: 1fr
    }

    .contactus-quick-card {
        border-right: 0
    }
}

@media(max-width:700px) {
    .contactus {
        padding: 50px 15px
    }

    .contactus-heading {
        margin-bottom: 35px
    }

    .contactus-heading h2 {
        font-size: 28px
    }

    .contactus-heading p {
        font-size: 13px
    }

    .contactus-information,
    .contactus-form-wrapper {
        padding: 30px 22px
    }

    .contactus-info-heading h3,
    .contactus-form-heading h3 {
        font-size: 21px
    }

    .contactus-form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contactus-form-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .contactus-submit {
        width: 100%
    }

    .contactus-map-heading {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column
    }

    .contactus-map-wrapper {
        height: 420px
    }

    .contactus-map-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto
    }
}

@media(max-width:450px) {
    .contactus-social {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }

    .contactus-map-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: -1px;
        width: auto;
        box-shadow: none;
        border: 1px solid #dce3e5
    }

    .contactus-map-wrapper {
        height: auto;
        overflow: visible;
        border: 0
    }

    .contactus-map-wrapper iframe {
        height: 300px
    }

    .contactus-quick-card {
        grid-template-columns: auto 1fr
    }

    .contactus-quick-card>a {
        display: none
    }
}
/* -------------------------------Blogs page */

.blog{
    width:100%;
    padding:50px 0;
    overflow:hidden;
}
.blog-header{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.blog-title{
    margin: 0 0 15px;
  color: #20252b;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #e3e8ed;
    border-left:1px solid #e3e8ed;
}
.blog-card{
    background:#fff;
    border-right:1px solid #e3e8ed;
    border-bottom:1px solid #e3e8ed;
    transition:transform .35s ease,box-shadow .35s ease;
}
.blog-card:hover{
    /* transform:translateY(-5px); */
    box-shadow:0 18px 40px rgba(20,35,55,.10);
}
.blog-card-image{
    position:relative;
    height:240px;
    overflow:hidden;
    background:#eef2f6;
}
.blog-card-image a{
    display:block;
    width:100%;
    height:100%;
}
.blog-card-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .6s ease;
}
.blog-card:hover .blog-card-image img{
    transform:scale(1.06);
}
/* .blog-card-category{
    position:absolute;
    top:16px;
    left:16px;
    padding:7px 12px;
    background:#1473e6;
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
} */
.blog-card-content{
    padding:25px;
}
.blog-card-meta{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:13px;
    color:#89939f;
    font-size:11px;
}
.blog-card-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}
.blog-card-meta i{
    color:#1473e6;
}
.blog-card-title{
    margin:0 0 13px;
    font-size:22px;
    line-height:1.4;
    font-weight:700;
    font-family: "Mulish", sans-serif;
}
.blog-card-title a{
    color:#17212f;
    text-decoration:none;
    transition:color .3s ease;
}
.blog-card-title a:hover{
    color:#1473e6;
}
.blog-card-text{
    margin:0 0 20px;
    color:#6d7885;
    font-size:13px;
    line-height:1.75;
}
.blog-read-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#262756;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:gap .3s ease;
     font-family: "Mulish", sans-serif;
}
.blog-read-btn:hover{
    gap:13px;
    color:#0b5fc5;
}
@media(max-width:1200px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:992px){
    .blog{
        padding:70px 0;
    }
    .blog-title{
        font-size:36px;
    }
}
@media(max-width:767px){
    .blog{
        padding:55px 0;
    }
    .blog-title{
        font-size:30px;
    }
    .blog-description{
        font-size:14px;
    }
    .blog-grid{
        grid-template-columns:1fr;
    }
    .blog-card-image{
        height:230px;
    }
}
@media(max-width:480px){
    .blog-card-content{
        padding:20px;
    }
    .blog-card-title{
        font-size:18px;
    }
    .blog-card-meta{
        gap:10px;
        flex-wrap:wrap;
    }
}
/* -------------------------------Blog details */

.blogdetails{
    width:100%;
    padding:50px 0 90px;
    color:#263342;
}

.blogdetails-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:55px;
    align-items:start;
}
.blogdetails-main{
    min-width:0;
}

.blogdetails-title{
    margin: 0 0 15px;
  color: #20252b;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}
.blogdetails-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px;
    color:#7d8894;
    font-size:14px;
}
.blogdetails-meta span{
    display:flex;
    align-items:center;
    gap:7px;
}
.blogdetails-meta i{
    color:#1473e6;
}
.blogdetails-featured-image{
    width:100%;
    height:480px;
    overflow:hidden;
    background:#edf1f5;
}
.blogdetails-featured-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.blogdetails-content{
    padding-top:38px;
}
.blogdetails-content p{
    margin:0 0 20px;
    color:#5f6c79;
    font-size:15px;
    line-height:1.9;
}
.blogdetails-content .blogdetails-intro{
    color:#394756;
    font-size:17px;
    line-height:1.85;
    font-weight:500;
    font-family: "Mulish", sans-serif;
}
.blogdetails-content h2{
    margin:40px 0 16px;
    color:#17212f;
    font-size:27px;
    line-height:1.3;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
}
.blogdetails-content h3{
    margin:30px 0 12px;
    color:#253445;
    font-size:20px;
    font-family: "Mulish", sans-serif;
}
.blogdetails-highlight{
    display:flex;
    align-items:flex-start;
    margin:35px 0;
    padding:25px;
    border-left:4px solid #1473e6;
    background:#f4f8fc;
}
.blogdetails-highlight-icon{
    flex:0 0 45px;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
    background:#1473e6;
    color:#fff;
    font-size:20px;
}
.blogdetails-highlight strong{
    display:block;
    margin-bottom:6px;
    color:#17212f;
    font-size:15px;
    font-family: "Mulish", sans-serif;
}
.blogdetails-highlight p{
    margin:0;
    font-size:13px;
    line-height:1.7;
}
.blogdetails-conclusion{
    margin-top:45px;
    padding-top:10px;
    border-top:1px solid #e2e7ec;
}
.blogdetails-conclusion h2{
    margin-top:25px;
}
.blogdetails-share{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:45px;
    padding:20px 0;
    border-top:1px solid #e2e7ec;
    border-bottom:1px solid #e2e7ec;
}
.blogdetails-share>span{
    color:#263342;
    font-size:13px;
    font-weight:700;
}
.blogdetails-share>div{
    display:flex;
    gap:7px;
}
.blogdetails-share a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dce2e8;
    color:#596775;
    text-decoration:none;
    transition:all .3s ease;
}
.blogdetails-share a:hover{
    background:#1473e6;
    border-color:#1473e6;
    color:#fff;
}
.blogdetails-sidebar{
    position:sticky;
    top:30px;
}
.blogdetails-sidebar-box{
    margin-bottom:25px;
    border:1px solid #e0e6eb;
    background:#fff;
}
.blogdetails-sidebar-heading{
    padding:20px;
    border-bottom:1px solid #e2e7ec;
}
.blogdetails-sidebar-heading span{
    color:#17212f;
    font-size:17px;
    font-weight:700;
     font-family: "Mulish", sans-serif;
}
.blogdetails-product{
    display:flex;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #e6eaee;
    text-decoration:none;
    transition:background .3s ease;
}
.blogdetails-product:last-child{
    border-bottom:0;
}
.blogdetails-product:hover{
    background:#f7faff;
}
.blogdetails-product-image{
    flex:0 0 72px;
    width:72px;
    height:72px;
    margin-right:14px;
    background:#f5f7f9;
}
.blogdetails-product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}
.blogdetails-product h4{
    margin:0 0 8px;
    color:#263342;
    font-size:13px;
    line-height:1.4;
    font-weight:700;
    font-family: "Mulish", sans-serif;
}
.blogdetails-product span{
    color:#1473e6;
    font-size:11px;
    font-weight:600;
    font-family: "Mulish", sans-serif;
}
.blogdetails-help{
    padding:25px;
    background:#17212f;
    border-color:#17212f;
}
.blogdetails-help-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    background:#1473e6;
    color:#fff;
    font-size:21px;
}
.blogdetails-help h3{
    margin:0 0 10px;
    color:#fff;
    font-size:20px;
    font-family: "Mulish", sans-serif;
}
.blogdetails-help p{
    margin:0 0 20px;
    color:#b9c3ce;
    font-size:13px;
    line-height:1.7;
}
.blogdetails-help>a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    font-family: "Mulish", sans-serif;
}
.blogdetails-help>a:hover{
    color:#69aaff;
}
.blogdetails-related{
    margin-top:90px;
    padding-top:45px;
    border-top:1px solid #e1e6eb;
}
.blogdetails-related-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:30px;
}
.blogdetails-related-eyebrow{
    display:block;
    margin-bottom:8px;
    color:#1473e6;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}
.blogdetails-related-heading h2{
    margin: 0 0 15px;
  color: #20252b;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}
.blogdetails-related-controls{
    display:flex;
    gap:8px;
}
.blogdetails-related-controls button{
    width:42px;
    height:42px;
    border:1px solid #dce2e8;
    background:#fff;
    color:#263342;
    cursor:pointer;
    transition:all .3s ease;
}
.blogdetails-related-controls button:hover:not(:disabled){
    background:#1473e6;
    border-color:#1473e6;
    color:#fff;
}
.blogdetails-related-controls button:disabled{
    opacity:.4;
    cursor:not-allowed;
}
.blogdetails-related-wrapper{
    overflow:hidden;
}
.blogdetails-related-track{
    display:flex;
    transition:transform .5s ease;
    padding-bottom: 10px;
}
.blogdetails-related-card{
    flex: 0 0 calc(25% - 0px);
    margin-right: 0px;
    border:1px solid #e1e6eb;
    background:#fff;
    transition:transform .3s ease,box-shadow .3s ease;
}
.blogdetails-related-card:hover{
    /* transform:translateY(-5px); */
    box-shadow:0 15px 35px rgba(20,35,55,.09);
}
.blogdetails-related-image{
    display:block;
    width:100%;
    height:185px;
    overflow:hidden;
    background:#f1f4f7;
}
.blogdetails-related-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}
.blogdetails-related-card:hover .blogdetails-related-image img{
    transform:scale(1.06);
}
.blogdetails-related-content{
    padding:20px;
}
.blogdetails-related-content>span{
    display:block;
    margin-bottom:9px;
    color:#1473e6;
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
.blogdetails-related-content h3{
    min-height:70px;
    margin:0 0 15px;
    font-size:16px;
    line-height:1.45;
}
.blogdetails-related-content h3 a{
    color:#263342;
    text-decoration:none;
    transition:color .3s ease;
    font-family: "Mulish", sans-serif;
}
.blogdetails-related-content h3 a:hover{
    color:#1473e6;
}
.blogdetails-related-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#1473e6;
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    transition:gap .3s ease;
    font-family: "Mulish", sans-serif;
}
.blogdetails-related-link:hover{
    gap:11px;
}
@media(max-width:1200px){
    .blogdetails-layout{
        grid-template-columns:minmax(0,1fr) 290px;
        gap:35px;
    }
    .blogdetails-title{
        font-size:38px;
    }
    .blogdetails-featured-image{
        height:420px;
    }
    .blogdetails-related-card{
        flex:0 0 calc(33.333% - 16px);
    }
}
@media(max-width:992px){
    .blogdetails-layout{
        grid-template-columns:1fr;
    }
    .blogdetails-sidebar{
        position:static;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }
    .blogdetails-sidebar-box{
        margin-bottom:0;
    }
    .blogdetails-title{
        font-size:36px;
    }
    .blogdetails-related-card{
        flex:0 0 calc(50% - 12px);
    }
}
@media(max-width:767px){
    .blogdetails{
        padding:40px 0 65px;
    }
    .blogdetails-title{
        font-size:29px;
    }
    .blogdetails-featured-image{
        height:280px;
    }
    .blogdetails-content{
        padding-top:28px;
    }
    .blogdetails-content p{
        font-size:14px;
        line-height:1.8;
    }
    .blogdetails-content .blogdetails-intro{
        font-size:15px;
    }
    .blogdetails-content h2{
        font-size:23px;
    }
    .blogdetails-content h3{
        font-size:18px;
    }
    .blogdetails-sidebar{
        display:block;
    }
    .blogdetails-sidebar-box{
        margin-bottom:20px;
    }
    .blogdetails-related{
        margin-top:60px;
    }
    .blogdetails-related-heading{
        align-items:center;
    }
    .blogdetails-related-heading h2{
        font-size:26px;
    }
    .blogdetails-related-card{
        flex:0 0 calc(100% - 20px);
    }
}
@media(max-width:480px){
    .blogdetails-title{
        font-size:25px;
    }
    .blogdetails-meta{
        gap:10px;
    }
    .blogdetails-featured-image{
        height:230px;
    }
    .blogdetails-highlight{
        padding:18px;
    }
    .blogdetails-share{
        align-items:flex-start;
        flex-direction:column;
        gap:15px;
    }
}
/* ---------------------------Gallery */

.gallery {
    width: 100%;
    padding: 50px 0;
}

.gallery-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center
}

.gallery-title {
    margin: 0 0 15px;
  color: #20252b;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Mulish", sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px
}

.gallery-card {
    position: relative;
    background: #fff;
    border: 1px solid #e4eaf1;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.gallery-card:hover {
    /* transform: translateY(-7px); */
    border-color: #1769aa;
    box-shadow: 0 18px 45px rgba(20, 35, 55, .12)
}

.gallery-card-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #edf2f6;
    display: flex;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
    max-width: 200px;
  max-height: 200px;
  margin: auto;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.08)
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 30, 50, 0.15);
    opacity: 0;
    transition: opacity .35s ease
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1
}

.gallery-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fff;
    color: #142337;
    font-size: 15px;
    font-weight: 600;
    transform: translateY(15px);
    transition: transform .35s ease;
    font-family: "Mulish", sans-serif;
}

.gallery-card:hover .gallery-view {
    transform: translateY(0)
}

.gallery-card-icon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1769aa;
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.gallery-card-content {
    padding: 22px 22px 24px
}

.gallery-card-category {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1769aa
}

.gallery-card-content h3 {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #142337;
    font-family: "Mulish", sans-serif;
}

.gallery-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #536477;
    transition: color .25s ease, gap .25s ease;
    font-family: "Mulish", sans-serif;
}

.gallery-card:hover .gallery-card-link {
    gap: 13px;
    color: #1769aa
}

.gallery-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    background: #08131f
}

.gallery-popup.active {
    display: block;
    animation: galleryPopupFade .3s ease
}

.gallery-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 13, 22, .97)
}

.gallery-popup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2
}

.gallery-popup-header {
    height: 86px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(8, 19, 31, .96)
}

.gallery-popup-heading {
    min-width: 0
}

.gallery-popup-category {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #70b8eb;
     font-family: "Mulish", sans-serif;
}

.gallery-popup-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
     font-family: "Mulish", sans-serif;
}

.gallery-popup-actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.gallery-popup-counter {
    font-size: 14px;
    color: #aebdca;
    font-weight: 600;
    white-space: nowrap
}

.gallery-popup-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease
}

.gallery-popup-close:hover {
    background: #1769aa;
    border-color: #1769aa;
    transform: rotate(90deg)
}

.gallery-popup-body {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 100px 10px
}

.gallery-popup-main {
    width: min(1100px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.gallery-popup-image-wrap {
    width: 100%;
    height: min(65vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.gallery-popup-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none
}

.gallery-popup-caption {
    width: 100%;
    max-width: 900px;
    text-align: center;
    padding: 15px 20px 0
}

.gallery-popup-caption h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;;
     font-family: "Mulish", sans-serif;
    font-weight: 600;
}

.gallery-popup-caption p {
    margin: 0;
    color: #aebdca;
    font-size: 14px;
    line-height: 1.6;
     font-family: "Mulish", sans-serif;
}

.gallery-popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    transition: background .25s ease, border-color .25s ease, transform .25s ease
}

.gallery-popup-nav:hover {
    background: #1769aa;
    border-color: #1769aa
}

.gallery-popup-prev {
    left: 28px
}

.gallery-popup-next {
    right: 28px
}

.gallery-popup-thumbnails {
    height: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(8, 19, 31, .96);
    overflow-x: auto
}

.gallery-popup-thumb {
    position: relative;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    padding: 0;
    border: 2px solid transparent;
    background: #172533;
    cursor: pointer;
    overflow: hidden;
    opacity: .55;
    transition: opacity .25s ease, border-color .25s ease, transform .25s ease
}

.gallery-popup-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    padding: 4px;
}

.gallery-popup-thumb:hover {
    opacity: 1;
    /* transform: translateY(-3px) */
}

.gallery-popup-thumb.active {
    opacity: 1;
    border-color: #70b8eb
}

@keyframes galleryPopupFade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media(max-width:1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-popup-body {
        padding-left: 80px;
        padding-right: 80px
    }

    .gallery-popup-image-wrap {
        height: min(60vh, 600px)
    }
}

@media(max-width:767px) {
    .gallery {
        padding: 65px 0
    }

    .gallery-title {
        font-size: 30px
    }

    .gallery-description {
        font-size: 15px
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .gallery-card-image {
        height: 240px
    }

    .gallery-popup-header {
        height: 72px;
        padding: 0 18px
    }

    .gallery-popup-heading h3 {
        font-size: 17px
    }

    .gallery-popup-actions {
        gap: 10px
    }

    .gallery-popup-counter {
        font-size: 12px
    }

    .gallery-popup-close {
        width: 38px;
        height: 38px;
        font-size: 15px
    }

    .gallery-popup-body {
        padding: 15px 55px 5px
    }

    .gallery-popup-image-wrap {
        height: 55vh
    }

    .gallery-popup-nav {
        width: 40px;
        height: 40px;
        font-size: 18px
    }

    .gallery-popup-prev {
        left: 8px
    }

    .gallery-popup-next {
        right: 8px
    }

    .gallery-popup-caption {
        padding-top: 10px
    }

    .gallery-popup-caption h4 {
        font-size: 16px
    }

    .gallery-popup-caption p {
        font-size: 13px
    }

    .gallery-popup-thumbnails {
        height: 85px;
        padding: 8px 15px;
        justify-content: flex-start
    }

    .gallery-popup-thumb {
        width: 65px;
        height: 55px;
        flex-basis: 65px
    }
}

@media(max-width:480px) {
    .gallery-title {
        font-size: 27px
    }

    .gallery-card-image {
        height: 220px
    }

    .gallery-popup-body {
        padding-left: 48px;
        padding-right: 48px
    }

    .gallery-popup-image-wrap {
        height: 48vh
    }

    .gallery-popup-heading h3 {
        font-size: 15px
    }

    .gallery-popup-category {
        font-size: 9px
    }

    .gallery-popup-nav {
        width: 34px;
        height: 34px
    }

    .gallery-popup-prev {
        left: 6px
    }

    .gallery-popup-next {
        right: 6px
    }
}
/* ------------------------Sign In form */

/* 
   LABTRO SIGN IN
 */

.signIn {
    width: 100%;
    padding: 50px 20px;
    background: #f5f8fa;
    position: relative;
    overflow: hidden;
}

.signIn .custom_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 
   SIGN IN WRAPPER
 */

.signin-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 45px 45px 40px;
    background: #ffffff;
    border: 1px solid #e7eeee;
    border-radius: 3px;
    box-shadow: 0 18px 50px rgba(22, 50, 48, 0.08);
}

/* 
   HEADER
 */

.signin-header {
    text-align: center;
    margin-bottom: 32px;
}

.signin-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    background: #c7d0ff;
  color: #262756;
    font-size: 27px;
}

.signin-header h2 {
    margin: 0 0 8px;
    color: #173b39;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Mulish", sans-serif;
}

.signin-header p {
    margin: 0;
    color: #71807f;
    font-size: 14px;
    line-height: 1.6;
}

/* 
   FORM
 */

.signin-form {
    width: 100%;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #294644;
    font-size: 14px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.label-row label {
    margin-bottom: 9px;
}

.forgot-password {
    color: #129184;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Mulish", sans-serif;
}

.forgot-password:hover {
    color: #0b7066;
    text-decoration: underline;
}

/* 
   INPUT
 */

.input-box {
    width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1px solid #dce6e5;
  border-radius: 0;
    transition: all 0.3s ease;
}

.input-box > i {
    width: 50px;
    flex-shrink: 0;
    text-align: center;
    color: #879997;
    font-size: 17px;
    transition: 0.3s ease;
}

.input-box input {
    width: 100%;
    height: 100%;
    padding: 0 48px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #263f3d;
    font-family: inherit;
    font-size: 14px;
    font-family: "Mulish", sans-serif;
}

.input-box input::placeholder {
    color: #a5b1b0;
}

.input-box:focus-within {
    border-color: #129184;
    box-shadow: 0 0 0 4px rgba(18, 145, 132, 0.08);
}

.input-box:focus-within > i {
    color: #129184;
}

/* 
   PASSWORD TOGGLE
 */

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #879997;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.password-toggle:hover {
    color: #129184;
}

/* 
   ERROR
 */

.error-message {
    display: block;
    min-height: 17px;
    margin-top: 5px;
    color: #d94a4a;
    font-size: 12px;
}

.input-error {
    border-color: #d94a4a !important;
}

.input-error:focus-within {
    box-shadow: 0 0 0 4px rgba(217, 74, 74, 0.08);
}

/* 
   REMEMBER ME
 */

.form-options {
    display: flex;
    align-items: center;
    margin: 2px 0 25px;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #687977;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    width: 17px;
    height: 17px;
    border: 1px solid #ccd9d7;
    border-radius: 4px;
    position: relative;
    transition: 0.3s ease;
}

.remember-me input:checked + .checkmark {
    background: #129184;
    border-color: #129184;
}

.remember-me input:checked + .checkmark::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 8px;
    left: 5px;
    top: 2px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 
   SIGN IN BUTTON
 */

.signin-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 1px;
    background: #262756;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.signin-btn > i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.signin-btn:hover {
    background: #0d796e;
    box-shadow: 0 10px 25px rgba(18, 145, 132, 0.20);
    transform: translateY(-1px);
}

.signin-btn:hover > i {
    transform: translateX(4px);
}

.signin-btn:active {
    transform: translateY(0);
}

/* 
   LOADER
 */

.btn-loader {
    display: none;
}

.signin-btn.loading .btn-text,
.signin-btn.loading > i {
    display: none;
}

.signin-btn.loading .btn-loader {
    display: block;
}

.btn-loader i {
    display: block;
    font-size: 19px;
    animation: signinSpin 0.8s linear infinite;
}

@keyframes signinSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 
   SUCCESS
 */

.signin-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 14px;
    border-radius: 7px;
    background: #eaf8f2;
    color: #16815f;
    font-size: 13px;
    font-weight: 500;
}

.signin-success.show {
    display: flex;
}

/* 
   REGISTER
 */

.register-text {
    margin-top: 25px;
    text-align: center;
    color: #71807f;
    font-size: 13px;
}

.register-text a {
    color: #129184;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.register-text a:hover {
    color: #0b7066;
    text-decoration: underline;
}

/* 
   RESPONSIVE
 */

@media (max-width: 575px) {

    .signIn {
        padding: 60px 15px;
    }

    .signin-wrapper {
        padding: 35px 22px 30px;
        border-radius: 12px;
    }

    .signin-header {
        margin-bottom: 28px;
    }

    .signin-header h2 {
        font-size: 24px;
    }

    .signin-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .input-box {
        height: 50px;
    }

    .signin-btn {
        height: 50px;
    }
}

@media (max-width: 380px) {

    .signin-wrapper {
        padding: 30px 18px 25px;
    }

    .label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
}