@charset "utf-8";
/* CSS Document */

:root {
    --theme: #009C9D;
    --light: #FFF;
    --dark: #1E1E1E;
    --medium: #DBDBDB;
}

/******* Common Element CSS Start ******/
* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.clear {
    clear: both;
}

img {
    border: 0px;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
    transition: all 0.24s ease-in-out;
}

a:focus,
a:active,
a:visited,
a:hover {
    text-decoration: none;
    outline: none;
}

a:hover {
    color: var(--theme);
}

h1 {
    margin: 0 0 8px;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    font-family: "Khand", sans-serif;
}

h2 {
    margin: 0 0 8px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    font-family: "Khand", sans-serif;
}

h3 {
    margin: 0 0 8px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    font-family: "Khand", sans-serif;
}

h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    font-family: "Khand", sans-serif;
}

h5 {}

h6 {}

p {}

.big-text {
    font-size: 16px;
    line-height: 23px;
}

button {
    transition: all 0.24s ease-in-out;
}

img {
    max-width: 100%;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: var(--light);
    padding: 8px 12px;
    border-radius: 46px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme);
    line-height: 23px;
}

.theme-btn.primary-btn {
    background: var(--theme);
    color: var(--light);
}

.theme-btn.primary-btn img {
    filter: brightness(0) invert(1);
}

.common-padding {
    padding: 120px 0px;
}

.border-content {
    border-left: 4px solid #009C9D;
    padding-left: 24px;
}

/******* Common Element CSS End *********/
/* -------- title style ------- */
/* -------- Button style ------- */
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-prev,
.slick-next {
    width: 24px;
    height: 24px;
    background: transparent no-repeat center center / cover !important;
    z-index: 5;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-prev {
    background-image: url(../images/arrow-left.svg) !important;
}

.slick-next {
    background-image: url(../images/arrow-right.svg) !important;
}

.slick-dots {
    display: flex;
    width: 100%;
    background: rgba(0, 156, 157, 0.4);
}

.slick-dots li {
    margin: 0;
    flex: 1;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 100%;
    height: 6px;
    padding: 0;
    background: transparent;
    opacity: 0;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.slick-dots li button:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
    opacity: 100%;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    width: 100%;
    transition: width 4s linear;
}

.dark-dots .slick-dots {
    background: rgba(30, 30, 30, 0.2);
}

.dark-dots .slick-dots li button::before {
    background: var(--theme);
}

.top-dots .slick-dots {
    top: 0;
    right: 12px;
    width: 360px;
    bottom: auto;
    max-width: 84%;
}

.banner-full {
    min-height: calc(90vh - 48px);
}

.light-dots .slick-dots {
    background: rgba(255, 255, 255, 0.2);
}

/******* Header Section CSS Start *******/
.header-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.navbar {
    padding: 16px 0px;
}

.nav-item {
    gap: 24px;
}

.nav-item a {
    margin: 0px 8px;
    padding: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(30, 30, 30, 0.4);
}

.nav-item.active a,
.nav-item a.active,
.nav-item a:hover {
    color: var(--dark);
}

.navbar-collapse {
    justify-content: end;
}

.header-section .dropdown-menu {
    width: 600px;
    max-width: 90vw;
    padding: 24px;
    left: auto;
    right: 0;
    top: 57px;
    border-radius: 0;
    border: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.10);
}

.header-section .dropdown-menu li {
    gap: 24px;
}

.header-section .dropdown-menu nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 8px;
}

.header-section .dropdown-menu nav a {
    margin: 0px;
    padding: 0;
}

.header-section .nav-image {
    aspect-ratio: 1;
    width: 142px;
    flex-shrink: 0;
    position: relative;
}

.header-section .nav-image img {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.header-section .nav-image img.active {
    opacity: 1;
}

/******* Header Section CSS End *********/

/******* Banner section CSS Start *******/
.banner-section {
    background: url(./../images/home-banner.jpg) no-repeat center center / cover;
}

.banner-section .banner-inner {
    max-width: 96%;
    min-height: calc(100vh - 120px);
    padding-top: 36px;
    width: 560px;
}

.banner-desc {
    background-color: var(--theme);
    padding: 24px;
}

.banner-desc h2 {
    color: var(--light);
}

.banner-desc p {
    color: rgba(255, 255, 255, 0.8);
}

.banner-section .slick-dots {
    bottom: auto;
    top: 0;
    transform: translateY(-100%);
}

.banner-section .slick-prev {
    left: auto;
    right: 64px;
    bottom: 16px;
    top: auto;
}

.banner-section .slick-next {
    right: 24px;
    bottom: 16px;
    top: auto;
}

/******* Banner section CSS End *********/

/******* Middle section CSS Start ******/
/* -------- inner page ------- */

/******* Intro section CSS Start *******/
.intro-section .introduction p {
    color: rgba(0, 0, 0, 0.8);
}

.intro-section .theme-btn {
    background-color: var(--theme);
    color: var(--light);
}

/******* Intro section CSS End *******/

/******* Vision section CSS Start *******/
.vision-section {
    background: url(./../images/vision-banner.jpg) no-repeat center center / cover;
    height: 100vh;
}

.vision-section .vision-mission {
    background-color: var(--theme);
    padding: 24px;
}

.vision-section .vision-mission h2 {
    color: var(--light);
}

.vision-section .vision-mission p {
    color: rgba(255, 255, 255, 0.8);
}

/******* Vision section CSS End *******/

/******* Product section CSS Start *******/
.product-section .product-detail {
    margin-bottom: 32px;
}

.product-section .product-detail p {
    color: rgba(30, 30, 30, 0.8)
}

.product-section .product-detail .products p {
    color: rgba(30, 30, 30, 0.8)
}

.products {
    border: 1px solid var(--medium);
    padding: 16px;
}

.products img {
    aspect-ratio: 1;
    object-fit: cover;
}

.product-slider .products {
    width: 360px;
    margin-top: 32px;
    margin-right: 30px;
}

/******* Product section CSS End *******/

/******* Category section CSS Start *******/
.category-section {
    padding-bottom: 120px;
}

.category-section .category-detail {
    margin-bottom: 32px;
}

.category-section p {
    color: rgba(30, 30, 30, 0.8)
}

.category-section .category img {
    width: 100%;
    aspect-ratio: 34/32;
    object-fit: cover;
}

.category-section .category h4 {
    margin-bottom: 40px;
}

.category-slider .category {
    width: 340px;
    margin-top: 32px;
    margin-right: 1px;
}

.category-slider .slick-dots {
    right: 10%;
}

/******* Category section CSS End *******/

/******* Industrial Banner section CSS Start *******/
.industrial-banner-section {
    background: url(./../images/industrial-banner.jpg) no-repeat top center / cover;
    height: 100vh;
}

.industrial-banner-section h2 {
    color: var(--light);
    padding-top: 80px;
}

/******* Industrial Banner section CSS End *******/

/******* Client section CSS Start *******/
.client-section .client {
    margin-bottom: 40px;
}

.client-section .client p {
    color: rgba(30, 30, 30, 0.8)
}

.client-section .client-list {
    padding-top: 48px;
}

.client-section .client-list a {
    display: block;
    height: 120px;
    max-width: 200px;
    margin: 0 32px;
}

.client-section .client-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/******* Client section CSS End *******/
/******** Middle section CSS End *******/

/***** Bottom section CSS Start *******/
/***** Footer section CSS Start *******/
.footer-section {
    background-color: var(--theme);
}

.footer-main {
    padding: 64px 0px 48px 0px;
}

.footer-main h4 {
    color: var(--light);
    font-weight: 400;
}

.footer-nav-link a {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav-link a:hover {
    color: var(--light);
}

.footer-section hr {
    color: red;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 24px 0px 32px 0px;
}

.footer-bottom p {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--light);
}

/***** Footer section CSS End *******/

/***** Category Page CSS Start *******/
.category-Page {
    padding: 48px 0px 80px 0px;
}

.category-Page p {
    color: rgba(30, 30, 30, 0.8)
}

.category-Page .category-detail p {
    color: rgba(30, 30, 30, 0.8);
}

.category-Page .category-detail img {
    width: 41%;
    aspect-ratio: 1;
    object-fit: cover;
}

.category-Page .category-detail {
    gap: 30px;
    margin-top: 64px;
}

/***** Category Page CSS End *******/

/***** Product Page CSS Start *******/
.product-banner {
    background: url(./../images/product-page-background.jpg) no-repeat center center / cover;
}

.explore-product {
    background-color: var(--theme);
    padding: 24px;
    color: var(--light);
}

.explore-product p {
    color: rgba(255, 255, 255, 0.8);
}

.product-category {
    padding: 80px 0px 64px 0px;
}

.product-desc-detail h4 {
    color: rgba(30, 30, 30, 0.4);
}

.product-desc-detail p {
    color: rgba(30, 30, 30, 0.8);
}

.product-img {
    border: 1px solid var(--medium);
    margin-right: 30px;
    padding: 34px;
    width: 50%;
}

.product-list-detail {
    border-top: 1px solid var(--medium);
    padding: 32px 0px;
}

.product-category-list a:hover {
    text-decoration: underline;
}

.product-category-list {
    margin-bottom: 64px;
}

.product-category-list a {
    color: rgba(30, 30, 30, 0.8);
}

.product-category-list:last-child {
    margin-bottom: 0px;
}

/***** Product Page CSS End *******/

/***** About Page CSS Start *******/
.about-page-intro {
    background: url(./../images/home-banner.jpg) no-repeat center center / cover;
}

.about-page-intro h2 {
    color: var(--light);
    margin-bottom: 40px;
}

.excellence .about-head {
    margin-bottom: 16px;
}

.excellence p {
    color: rgba(30, 30, 30, 0.8);
}

.intro-section img,
.excellence img {
    /*aspect-ratio: 558/407;*/
    /*width: 100%;*/
    object-fit: cover;
}

.history {
    background-color: var(--theme);
    color: var(--light);
    padding: 48px 0px 54px;
}

.history .history-item {
    width: 264px;
    margin-right: 30px;
    margin-top: 60px;
}

.history p {
    color: rgba(255, 255, 255, 0.8);
}

.history-detail p {
    color: rgba(255, 255, 255, 0.8);
}

.award p {
    color: rgba(30, 30, 30, 0.8);
}

.award-intro {
    margin-bottom: 16px;
}

.meet-team {
    background-color: var(--theme);
    padding: 48px 0 57px;
    color: var(--light);
}

.meet-team img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.meet-team p {
    color: rgba(255, 255, 255, 0.8);
}

.team-intro {
    width: 360px;
    margin-right: 30px;
    background-color: var(--theme);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.team-intro:hover {
    background-color: var(--light);
    color: var(--dark);
}

.team-intro:hover p {
    color: var(--dark);
}

.contact-us {
    padding: 120px 0px 80px;
}

.contact-us .contact-desc p {
    color: rgba(30, 30, 30, 0.8);
}

.contact-form .form-control {
    padding: 16px;
    border: 2px solid var(--medium);
    border-radius: 0px;
    resize: none;
}

.contact-form .form-control:focus {
    box-shadow: none;
}

#map {
    height: 400px;
}

/***** About Page CSS End *******/

/***** Product detail Page CSS Start *******/
.product-detail-page {
    padding-top: 48px;
}

.big-product {
    padding: 54px;
    border: 1px solid var(--medium);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.small-product {
    padding: 8px;
    width: 100%;
}

.small-product img {
    width: 100%;
    padding: 8px;
    aspect-ratio: 1;
    border: 1px solid var(--medium);
    object-fit: cover;
}

.product-detail-page p {
    color: rgba(30, 30, 30, 0.8);
}

.product-detail-page .theme-btn {
    background: var(--theme);
    color: var(--light);
}

.product-info-item {
    margin-bottom: 16px;
}

.product-info-desc h4 {
    font-family: inherit;
    border-top: 1px solid var(--medium);
    margin-top: 16px;
    padding-top: 16px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(30, 30, 30, 0.8);
    margin-bottom: 8px;
}

.product-info-desc h5,
.product-info-desc h6 {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
}

.product-info-desc p {
    margin-bottom: 4px;
}

.product-info-desc img {
    max-width: 100%;
    margin: 10px 0;
    display: block;
}

.product-info-desc table td,
.product-info-desc table th {
    padding: 10px;
    font-size: inherit;
}

.product-info-desc .table-responsive {
    margin: 10px 0;
}

.product-section {
    padding: 80px 0px;
}

.product-amt {
    margin-top: 16px;
}

.breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.breadcrumb .breadcrumb-item a {
    color: inherit;
    opacity: 0.8;
}

.breadcrumb .breadcrumb-item:hover {
    opacity: 1;
    color: var(--theme);
}

.breadcrumb .breadcrumb-item.active {
    opacity: 1;
    color: var(--theme);
}

.breadcrumb-item+.breadcrumb-item {
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    margin: 0px 6px;
    padding: 0;
    width: 12px;
    height: 12px;
    background: url(../images//arrow.svg) no-repeat center center / cover;
}

/***** Product detail Page CSS Start *******/

/***** Category-2 Page CSS Start *******/
.category-2-Page {
    padding: 64px 0px;
}

.category-2-Page p {
    color: rgba(30, 30, 30, 0.8)
}

.category-2-Page .product-category-detail {
    padding: 24px;
    border-bottom: 1px solid var(--medium);
    transition: all 0.2s ease-in-out;
}

.category-2-Page .product-category-detail li {
    margin-bottom: 4px;
}

.category-2-Page .product-category-detail a {
    color: rgba(30, 30, 30, 0.8);
}

.category-2-Page .product-category-detail img {
    opacity: 0;
    width: 100%;
    aspect-ratio: 558/364;
    object-fit: cover;
}

.category-2-Page .product-category-detail:hover {
    background: var(--theme);
    color: #FFF;
    border-bottom: none;
}

.category-2-Page .product-category-detail:hover a {
    color: #FFFFFF80;
}

.category-2-Page .product-category-detail:hover a:hover {
    color: var(--light);
}

.category-2-Page .product-category-detail:hover img {
    opacity: 1;
}

/***** Category-2 Page CSS End *******/

/***** pdf-catalogue Page CSS Start *******/
.pdf-catalogue {
    padding: 48px 0px;
}

.pdf-catalogue h4 {
    color: rgba(30, 30, 30, 0.4);
}

.pdf-catalogue p {
    color: rgba(30, 30, 30, 0.8);
    margin-bottom: 32px;
}

.catalogue-detail {
    border-top: 1px solid var(--medium);
    padding: 48px 0px;
}

.catalogue-detail p {
    color: rgba(30, 30, 30, 0.8);
}

.catalogue-main-product {
    width: 264px;
    aspect-ratio: 1;
    flex-shrink: 0;
    padding: 34px;
    border: 1px solid var(--medium);
}

.catalogue-main-product {
    aspect-ratio: 1;
    object-fit: contain;
}

.catalogue-product-desc p {
    color: rgba(30, 30, 30, 0.8);
}

.catalogue-other-product {
    gap: 16px;
}

.catalogue-other-product .product-items {
    width: 120px;
    border: 1px solid var(--medium);
    padding: 15px;
}

.catalogue-other-product .product-items img {
    aspect-ratio: 1;
    object-fit: contain;
}

.catalogue-info-block {
    margin-bottom: 30px;
}

.catproduct-structure-img {
    aspect-ratio: 380/243;
    object-fit: contain;
}

.catproduct-main-img {
    aspect-ratio: 150/200;
    object-fit: contain;
}

.table-responsive {
    width: 100%;
    white-space: nowrap;
}

.table-responsive table {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #737373;
}

.table-responsive th {
    font-size: 22px;
    line-height: 1.3;
    color: #009C9D;
    font-weight: 700;
    text-align: center;
    background: #CCEBEB;
    border: 1px solid #009C9D;
}

.table-responsive td,
.table-responsive th {
    padding: 20px;
    width: 10%;
}

.table-responsive td {
    border: 1px solid #737373;
    font-weight: 500;
    font-size: 15px;
}

/***** pdf-catalogue Page CSS End *******/

/* -------- conatct section ------- */
/****** Bottom section CSS End *******/
.footer-logo {
    mix-blend-mode: screen;
}

/***** responsive css Start ******/

@media (min-width: 1200px) and (max-width: 1399px) {}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 13px;
        line-height: 18px;
    }

    h1 {
        margin: 0 0 6px;
        font-size: 54px;
    }

    h2 {
        margin: 0 0 6px;
        font-size: 40px;
    }

    h3 {
        margin: 0 0 6px;
        font-size: 32px;
    }

    h4 {
        margin: 0 0 6px;
        font-size: 20px;
    }

    .big-text {
        font-size: 14px;
        line-height: 20px;
    }

    .common-padding {
        padding: 90px 0px;
    }

    .theme-btn {
        padding: 6px 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .theme-btn img {
        width: 20px;
        height: 20px;
    }

    /******* Header Section CSS Start *******/
    .header {
        padding: 14px 0px;
    }

    .nav-link {
        gap: 22px;
    }

    .nav-link a {
        font-size: 15px;
        line-height: 20px;
    }

    .header-logo {
        width: 240px;
    }

    /******* Banner section CSS Start *******/
    .banner-desc {
        padding: 22px;
    }

    /******* Intro section CSS Start *******/

    /******* Vision section CSS Start *******/
    .vision-section .vision-mission {
        padding: 22px;
    }

    /******* Product section CSS Start *******/
    .product-section .product-detail {
        margin-bottom: 28px;
    }

    .product-section .product-detail .products {
        padding: 16px;
    }

    .product-slider .products {
        width: 300px;
    }

    /******* Category section CSS Start *******/
    .category-section {
        padding-bottom: 90px;
    }

    .category-section .category-detail {
        margin-bottom: 28px;
    }

    .category-section .category h4 {
        margin-bottom: 24px;
    }

    .category-slider .category {
        width: 320px;
    }

    /******* Industrial Banner section CSS Start *******/
    .industrial-banner-section h2 {
        padding-top: 70px;
    }

    /******* Client section CSS Start *******/
    .client-section .client {
        margin-bottom: 25px;
    }

    .client-section .client-list {
        padding-top: 32px;
    }

    .client-section .client-list a {
        height: 100px;
        max-width: 180px;
        margin: 0 24px;
    }

    /***** Category Page CSS Start *******/
    .category-Page {
        padding: 38px 0px 60px 0px;
    }

    .category-Page .category-detail {
        gap: 24px;
        margin-top: 48px;
    }

    /***** Category-2 Page CSS Start *******/
    .category-2-Page {
        padding: 48px 0px;
    }

    .category-2-Page .product-category-detail {
        padding: 20px;
    }

    /***** Product Page CSS Start *******/
    .product-category {
        padding: 64px 0px 48px;
    }

    .product-list-detail {
        padding: 24px 0px;
    }

    .product-img {
        margin-right: 20px;
    }

    /***** About Page CSS Start *******/
    .history {
        padding: 40px 0px 48px;
    }

    .history .history-item {
        width: 264px;
        margin-right: 24px;
        margin-top: 52px;
    }

    .meet-team {
        padding: 40px 0px 0px;
        color: var(--light);
    }

    .team-intro {
        width: 280px;
        margin-right: 24px;
        padding: 14px;
    }

    .contact-us {
        padding: 80px 0px 60px;
    }

    .contact-form .form-control {
        padding: 14px 16px;
    }


    /***** Product detail Page CSS Start *******/
    .product-detail-page {
        padding-top: 40px;
    }

    .big-product {
        padding: 42px;
    }

    .product-section {
        padding: 70px 0px;
    }

    /***** pdf-catalogue Page CSS Start *******/
    .pdf-catalogue {
        padding: 40px 0px;
    }

    .pdf-catalogue p {
        margin-bottom: 28px;
    }

    .catalogue-detail {
        padding: 40px 0px;
        gap: 24px;
    }

    .catalogue-main-product {
        width: 240px;
        padding: 30px;
    }

    .catalogue-other-product {
        gap: 14px;
    }

    .catalogue-other-product .product-items {
        width: 100px;
        padding: 12px;
    }

    .table-responsive th {
        font-size: 20px;
    }

    .table-responsive td,
    .table-responsive th {
        padding: 18px;
    }

    .catalogue-info-block {
        margin-bottom: 28px;
    }

    .catproduct-structure-img {
        width: 70%;
    }

    .catproduct-main-img {
        width: 23%;
    }

    /***** Footer section CSS Start *******/
    .footer-logo {
        width: 360px;
    }

    .footer-main {
        padding: 48px 0px 32px 0px;
    }

    .footer-nav-link a {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 0px 28px 0px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom a {
        font-size: 12px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 12px;
        line-height: 16px;
    }

    h1 {
        margin: 0 0 6px;
        font-size: 56px;
    }

    h2 {
        margin: 0 0 6px;
        font-size: 40px;
    }

    h3 {
        margin: 0 0 6px;
        font-size: 32px;
    }

    h4 {
        margin: 0 0 6px;
        font-size: 17px;
    }

    .big-text {
        font-size: 13px;
        line-height: 18px;
    }

    .common-padding {
        padding: 70px 0px;
    }

    .theme-btn {
        padding: 5px 9px;
        font-size: 13px;
        line-height: 18px;
    }

    .theme-btn img {
        width: 18px;
        height: 18px;
    }

    /******* Header Section CSS Start *******/
    .header {
        padding: 12px 0px;
    }

    .nav-link {
        gap: 20px;
    }

    .nav-link a {
        font-size: 14px;
        line-height: 18px;
    }

    .header-logo {
        width: 200px;
    }

    /******* Banner section CSS Start *******/
    .banner-desc {
        padding: 20px;
    }

    /******* Intro section CSS Start *******/

    /******* Vision section CSS Start *******/
    .vision-mission {
        padding: 22px;
    }

    /******* Product section CSS Start *******/
    .product-section .product-detail {
        margin-bottom: 22px;
    }

    /******* Category section CSS Start *******/
    .category-section {
        padding-bottom: 70px;
    }

    .category-section .category-detail {
        margin-bottom: 22px;
    }

    .category-section .category h4 {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .category-slider .category {
        width: 280px;
    }

    /******* Industrial Banner section CSS Start *******/
    .industrial-banner-section h2 {
        padding-top: 60px;
    }

    /******* Client section CSS Start *******/
    .client-section .client {
        margin-bottom: 22px;
    }

    .client-section .client-list {
        padding-top: 32px;
    }

    .client-section .client-list a {
        height: 90px;
        max-width: 160px;
        margin: 0 20px;
    }

    /***** Category Page CSS Start *******/
    .category-Page {
        padding: 32px 0px 48px 0px;
    }

    .category-Page .category-detail {
        gap: 20px;
        margin-top: 32px;
    }

    /***** Category-2 Page CSS Start *******/
    .category-2-Page {
        padding: 36px 0px;
    }

    .category-2-Page .product-category-detail {
        padding: 16px;
    }

    /***** Product Page CSS Start *******/
    .product-category {
        padding: 64px 0px 48px;
    }

    .product-list-detail {
        padding: 20px 0px;
    }

    .product-img {
        margin-right: 18px;
    }

    .product-slider .products {
        width: 300px;
    }

    /***** About Page CSS Start *******/
    .history {
        padding: 40px 0px 48px;
    }

    .history .history-item {
        width: 220px;
        margin-right: 20px;
        margin-top: 40px;
    }

    .meet-team {
        padding: 32px 0px 40px;
        color: var(--light);
    }

    .team-intro {
        width: 260px;
        margin-right: 20px;
        padding: 14px;
    }

    .contact-us {
        padding: 60px 0px 50px;
    }

    .contact-form .form-control {
        padding: 14px 16px;
    }

    #map {
        height: 320px;
    }

    /***** Product detail Page CSS Start *******/
    .product-detail-page {
        padding-top: 40px;
    }

    .big-product {
        padding: 32px;
    }

    .product-section {
        padding: 60px 0px;
    }

    /***** pdf-catalogue Page CSS Start *******/
    .pdf-catalogue {
        padding: 36px 0px;
    }

    .pdf-catalogue p {
        margin-bottom: 24px;
    }

    .catalogue-detail {
        padding: 32px 0px;
        gap: 22px;
    }

    .catalogue-main-product {
        width: 200px;
        padding: 20px;
    }

    .catalogue-other-product {
        gap: 12px;
    }

    .catalogue-other-product .product-items {
        width: 90px;
        padding: 10px;
    }

    .table-responsive th {
        font-size: 18px;
    }

    .table-responsive td,
    .table-responsive th {
        padding: 16px;
    }

    .catalogue-info-block {
        margin-bottom: 26px;
    }

    .catproduct-structure-img {
        width: 70%;
    }

    .catproduct-main-img {
        width: 23%;
    }

    /***** Footer section CSS Start *******/
    .footer-logo {
        width: 320px;
    }

    .footer-main {
        padding: 40px 0px 26px 0px;
    }

    .footer-nav-link a {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0px 24px 0px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom a {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 13px;
        line-height: 16px;
    }

    h1 {
        margin: 0 0 6px;
        font-size: 36px;
    }

    h2 {
        margin: 0 0 6px;
        font-size: 30px;
    }

    h3 {
        margin: 0 0 6px;
        font-size: 24px;
    }

    h4 {
        margin: 0 0 6px;
        font-size: 19px;
    }

    .big-text {
        font-size: 14px;
        line-height: 20px;
    }

    .common-padding {
        padding: 40px 0px;
    }

    .theme-btn img {
        width: 18px;
        height: 18px;
    }

    .slick-dots li button {
        width: 100%;
        height: 4px;
    }

    .border-content {
        border-left-width: 3px;
        padding-left: 16px;
    }

    .top-dots .slick-dots {
        width: 280px;
    }

    .theme-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    /******* Header Section CSS Start *******/
    .header {
        padding: 12px 0px;
        position: relative;
        z-index: 10;
    }

    .nav-link {
        gap: 20px;
    }

    .header-logo {
        width: 150px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 4px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .navbar-toggler {
        border: none;
        width: 48px;
        height: 32px;
        background: url(../images/menu-icon.svg) no-repeat center center / cover;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        padding: 16px;
        background-color: rgba(256, 256, 256, 0.96);
        z-index: 10;
    }

    .header-section .dropdown-menu {
        padding: 12px;
        width: 100%;
        max-width: 100%;
    }

    .header-section .nav-image {
        width: 120px;
    }

    .header-section .dropdown-menu nav {
        grid-template-columns: repeat(1, 1fr);
    }

    .header-section .dropdown-menu li {
        gap: 8px;
    }

    /******* Banner section CSS Start *******/
    .banner-desc {
        padding: 20px;
    }

    /******* Intro section CSS Start *******/
    .intro-section.introduction {
        padding-left: 14px;
        margin-bottom: 20px;
    }

    /******* Vision section CSS Start *******/
    .vision-section .vision-mission {
        padding: 22px;
    }

    /******* Product section CSS Start *******/
    .product-section .product-detail {
        margin-bottom: 22px;
    }

    .product-slider .products {
        width: 260px;
        margin-right: 12px;
    }

    /******* Category section CSS Start *******/
    .category-section {
        padding-bottom: 40px;
    }

    .category-section .category-detail {
        margin-bottom: 22px;
    }

    .category-section .category h4 {
        margin-bottom: 12px;
    }

    .category-section .category img {
        margin-bottom: 10px !important;
    }

    .category-slider .category {
        width: 272px;
    }

    /******* Industrial Banner section CSS Start *******/
    .industrial-banner-section h2 {
        padding-top: 32px;
        font-size: 28px;
    }

    /******* Client section CSS Start *******/
    .client-section .client {
        margin-bottom: 22px;
    }

    .client-section .client-list {
        padding-top: 24px;
    }

    .client-section .client-list a {
        height: 72px;
        max-width: 140px;
        margin: 0 14px;
    }

    /***** Category Page CSS Start *******/
    .category-Page {
        padding: 32px 0px 48px 0px;
    }

    .category-Page .category-detail {
        gap: 16px;
        margin-top: 24px;
    }

    .category-Page .category-detail img {
        width: 100%;
    }

    /***** Category-2 Page CSS Start *******/
    .category-2-Page {
        padding: 36px 0px;
    }

    .category-2-Page .product-category-detail {
        margin-bottom: 16px;
        padding: 16px;
    }

    .category-2-Page .product-category-detail img {
        opacity: 1;
    }

    .category-2-Page .product-category-detail .row {
        gap: 16px;
        flex-direction: column-reverse;
    }

    /***** Product Page CSS Start *******/
    .product-category {
        padding: 48px 0px 32px;
    }

    .product-list-detail {
        padding: 20px 0px;
    }

    .product-img {
        margin-right: 16px;
        width: 40%;
        padding: 16px;
    }

    .product-category-list {
        margin: 32px 0;
    }

    /***** About Page CSS Start *******/
    .history {
        padding: 36px 0px 40px;
    }

    .history .history-item {
        width: 200px;
        margin-right: 16px;
        margin-top: 36px;
    }

    .meet-team {
        padding: 32px 0px 40px;
    }

    .team-intro {
        width: 240px;
        margin-right: 16px;
        padding: 12px;
    }

    .contact-us {
        padding: 40px 0px 44px;
    }

    .contact-form .form-control {
        padding: 12px 16px;
    }

    #map {
        height: 240px;
    }

    /***** Product detail Page CSS Start *******/
    .product-detail-page {
        padding-top: 32px;
    }

    .big-product {
        padding: 24px;
    }

    .product-section {
        padding: 32px 0px;
    }


    /***** pdf-catalogue Page CSS Start *******/
    .pdf-catalogue {
        padding: 32px 0px;
    }

    .pdf-catalogue p {
        margin-bottom: 20px;
    }

    .catalogue-detail {
        padding: 28px 0px;
        gap: 20px;
    }

    .catalogue-main-product {
        width: 160px;
        padding: 20px;
    }

    .catalogue-other-product {
        gap: 8px;
    }

    .catalogue-other-product .product-items {
        width: 72px;
        padding: 8px;
    }

    .table-responsive th {
        font-size: 16px;
    }

    .table-responsive td,
    .table-responsive th {
        padding: 14px;
    }

    .catalogue-info-block {
        margin-bottom: 24px;
    }

    .catproduct-structure-img {
        width: 70%;
    }

    .catproduct-main-img {
        width: 23%;
    }

    /***** Footer section CSS Start *******/
    .footer-logo {
        width: 260px;
        margin-bottom: 20px;
    }

    .footer-main {
        padding: 25px 0px 16px 0px;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-link a {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 16px 0px 24px 0px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer-bottom p {
        font-size: 13px;
        margin-top: 12px;
    }

    .footer-bottom a {
        font-size: 13px;
    }
}
