﻿/* =========================================================
   Home hero section
========================================================= */

.home-hero {
    width: 100%;
}

.home-hero *,
.home-hero *::before,
.home-hero *::after {
    box-sizing: border-box;
}


/* =========================================================
   Main layout
========================================================= */

.home-hero-content {
	margin-top: 17px;
    width: calc(100% - 354px);
    height: 402px;
    margin-left: 354px;
    display: grid;
    grid-template-columns: 715px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}


/* =========================================================
   Banner carousel
========================================================= */

.home-banner-carousel {
    position: relative;
    width: 715px;
    height: 402px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.home-banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.home-banner-slide {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.home-banner-slide.current {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-banner-slide img {
    display: block;
    width: 715px;
    height: 402px;
    max-width: none;
    object-fit: cover;
    border: none;
}


/* =========================================================
   Banner arrows
========================================================= */

.home-banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(14, 90, 164, 0.82);
    color: #ffffff;
    font-size: 27px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        background-color 0.25s ease;
}

.home-banner-prev {
    left: 16px;
}

.home-banner-next {
    right: 16px;
}

.home-banner-carousel:hover .home-banner-arrow {
    opacity: 1;
    visibility: visible;
}

.home-banner-arrow:hover {
    color: #ffffff;
    background: #f7b901;
}


/* =========================================================
   Banner pagination
========================================================= */

.home-banner-pagination {
    position: absolute;
    left: 50%;
    bottom: 17px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

.home-banner-pagination button {
    width: 20px;
    height: 4px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.home-banner-pagination button.current {
    background: #f7b901;
}


/* =========================================================
   Quick links
========================================================= */

.home-banner-links {
    min-width: 0;
    width: 100%;
    height: 402px;
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.home-banner-link {
    min-width: 0;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 22px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
}

.home-banner-link-bom {
    background: #fff2e5;
}

.home-banner-link-products {
    background: #d9f7f4;
}

.home-banner-link-order {
    background: #dceffc;
}

.home-banner-link-contact {
    background: #f1edff;
}

.home-banner-link-content {
    flex: 1;
    min-width: 0;
}

.home-banner-link-content strong {
    display: block;
    overflow: hidden;
    color: #101d33;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-banner-link-content span {
    display: block;
    margin-top: 4px;
    color: #6f7f96;
    font-size: 14px;
    line-height: 22px;
}

.home-banner-link > img {
    display: block;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    max-width: 45px;
    object-fit: contain;
    border: none;
}

.home-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 90, 164, 0.13);
}

.home-banner-link:hover .home-banner-link-content strong {
    color: #0e5aa4;
}

.home-banner-link:hover .home-banner-link-content span {
    color: #f7b901;
}

.home-banner-link:hover > img {
    transform: scale(1.08);
}

/* Home service cards */
.home-service-cards {
    width: 100%;
    padding: 20px 0;
}

.home-service-cards *,
.home-service-cards *::before,
.home-service-cards *::after {
    box-sizing: border-box;
}

.home-service-cards-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

/* Service card */
.home-service-card {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff6ed;
	transition:
	    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
	    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
	    border-color 0.35s ease;
	
}

.home-service-card > img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 120px;
    max-width: none;
    object-fit: cover;
    border: none;
}

/* Card content */
.home-service-card-content {
    position: relative;
    z-index: 2;
    width: 62%;
    height: 100%;
    padding: 20px 0 16px 18px;
}

.home-service-card-content strong {
    display: block;
    min-height: 48px;
    color: #101d33;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.home-service-card-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 63px;
    height: 30px;
    margin-top: 8px;
    padding: 0 15px;
    border-radius: 5px;
    background: #f7b901;
    color: #ffffff;
    font-size: 13px;
    line-height: 30px;
    text-decoration: none;
}

.home-service-card-content a:hover {
    background: #0e5aa4;
    color: #ffffff;
}

/* Card hover */
.home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(14, 90, 164, 0.12);
}

.home-service-card:hover > img {
    transform: scale(1.03);
}

/* =========================================================
   Common section header
========================================================= */

.section-common-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 30px;
    border-bottom: 3px solid #dbe3ee;
    position: relative;
}

.section-common-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 300px;
    height: 3px;
    background: #f7b901;
}

.section-common-title {
    margin: 0;
    color: #1a2b44;
    font-size: 2rem;
    line-height: 36px;
    font-weight: 700;
}

.section-common-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a2b44;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    text-decoration: none;
}

.section-common-more:hover {
    color: #f7b901;
}


/* =========================================================
   Popular categories section
========================================================= */

.home-popular-section {
    width: 100%;
    padding: 20px 0 10px;
}

.home-popular-section *,
.home-popular-section *::before,
.home-popular-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   Two-column layout
========================================================= */

.home-popular-columns {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.home-popular-column {
    flex: 0 0 665px;
    width: 665px;
}


/* =========================================================
   Banner block
========================================================= */

.home-popular-banner {
    display: block;
    width: 665px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.home-popular-banner img {
    display: block;
    width: 665px;
    height: 240px;
    max-width: none;
    object-fit: cover;
    border: none;
}

.home-popular-banner:hover img {
    transform: scale(1.03);
}


/* =========================================================
   Product grid
========================================================= */

.home-popular-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}


/* =========================================================
   Product card
========================================================= */

.home-popular-card {
    position: relative;
    width: 100%;
    min-height: 278px;
    padding: 18px 14px 16px;
    border: 1px solid #f1dfb2;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(14, 90, 164, 0.04);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}

.home-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(14, 90, 164, 0.10);
}


/* =========================================================
   Product badge
========================================================= */

.home-popular-badge {
    position: absolute;
    left: 14px;
    top: 0;
    z-index: 2;
    display: block;
}

.home-popular-badge-hot {
    width: 34px;
    height: 33px;
}

.home-popular-badge-hot img {
    display: block;
    width: 34px;
    height: 33px;
    max-width: none;
    object-fit: contain;
    border: none;
}

.home-popular-badge-selected {
    width: 42px;
    height: 42px;
}

.home-popular-badge-selected img {
    display: block;
    width: 42px;
    height: 42px;
    max-width: none;
    object-fit: contain;
    border: none;
}


/* =========================================================
   Product image
========================================================= */

.home-popular-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    margin-bottom: 14px;
    overflow: hidden;
}

.home-popular-card-image img {
    display: block;
    width: 180px;
    height: 180px;
    max-width: none;
    object-fit: contain;
    border: none;
}

.home-popular-card:hover .home-popular-card-image img {
    transform: scale(1.05);
}


/* =========================================================
   Product text
========================================================= */

.home-popular-card-title {
    display: block;
    margin-bottom: 6px;
    color: #1a2b44;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.home-popular-card-title:hover {
    color: #0e5aa4;
}

.home-popular-card-brand {
    margin: 0;
    color: #6e829f;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    word-break: break-word;
}

/* Hot badge */
.home-popular-badge-hot {
    top: 0;
    width: 34px;
    height: 33px;
}

/* Selected badge */
.home-popular-badge-selected {
    top: 10px;
    width: 42px;
    height: 42px;
}

/* =========================================================
   Home BOM banner
========================================================= */

.home-bom {
    width: 100%;
    padding: 20px 0;
}

.home-bom *,
.home-bom *::before,
.home-bom *::after {
    box-sizing: border-box;
}


/* Banner container */
.home-bom-inner {
    position: relative;
    width: 100%;
    height: 226px;
    overflow: hidden;
    border-radius: 12px;
    background: #dceefe;
}


/* Banner background image */
.home-bom-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 226px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border: none;
}


/* Banner content */
.home-bom-content {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 80px;
}


/* Banner title */
.home-bom-content h2 {
    margin: 0;
    color: #216fe5;
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
}

.home-bom-content h2 span {
    color: #f7b901;
}


/* Banner description */
.home-bom-content p {
    margin: 7px 0 18px;
    color: #216fe5;
    font-size: 23px;
    line-height: 32px;
}


/* BOM link */
.home-bom-link {
    min-width: 196px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 5px;
    background: #ffffff;
    color: #101d33;
    font-size: 17px;
    line-height: 46px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 16px rgba(14, 90, 164, 0.08);
    transform: translateY(0);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-bom-link i {
    color: #216fe5;
    font-size: 22px;
    line-height: 1;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.home-bom-link:hover {
    color: #ffffff;
    background: #0e5aa4;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 90, 164, 0.20);
}

.home-bom-link:hover i {
    color: #f7b901;
    transform: translateY(-2px);
}

/* =========================================================
   Preferential zone section
========================================================= */

.home-preferential-section {
    width: 100%;
    padding: 20px 0;
}

.home-preferential-section *,
.home-preferential-section *::before,
.home-preferential-section *::after {
    box-sizing: border-box;
}


/* Main layout */
.home-preferential-main {
    width: 100%;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: stretch;
    gap: 30px;
}


/* Promotional banner */
.home-preferential-banner {
    position: relative;
    display: block;
    width: 300px;
    height: 570px;
    overflow: hidden;
    border-radius: 12px;
    background: #0633a6;
    text-decoration: none;
}

.home-preferential-banner > img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    width: 300px;
    height: 570px;
    max-width: none;
    object-fit: cover;
    border: none;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Banner content */
.home-preferential-banner-content {
    position: absolute;
    left: 0;
    top: 49px;
    z-index: 2;
    width: 100%;
    padding: 0 17px;
    text-align: center;
}

.home-preferential-banner-content strong {
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 38px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 28, 110, 0.25);
}

/* Banner button */
.home-preferential-banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 47px;
    margin-top: 15px;
    border-radius: 6px;
    background: #ffffff;
    color: #0e5aa4;
    font-size: 16px;
    line-height: 47px;
    font-weight: 600;
    text-align: center;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Banner hover */
.home-preferential-banner:hover > img {
    transform: scale(1.025);
}

.home-preferential-banner:hover .home-preferential-banner-button {
    color: #ffffff;
    background: #f7b901;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 31, 120, 0.2);
}


/* Product grid */
.home-preferential-products {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* Product card adjustments */
.home-preferential-products .home-popular-card {
    min-width: 0;
    min-height: 275px;
    height: 275px;
    padding: 16px 10px 14px;
    border-color: #e4ebf3;
}

.home-preferential-products .home-popular-card-image {
    height: 180px;
    margin-bottom: 10px;
}

.home-preferential-products .home-popular-card-image img {
    width: 180px;
    height: 180px;
    max-width: 100%;
}

.home-preferential-products .home-popular-card-title {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px;
}

.home-preferential-products .home-popular-card-brand {
    font-size: 13px;
    line-height: 20px;
}

/* =========================================================
   Featured manufacturers section
========================================================= */

.home-manufacturers {
    width: 100%;
    padding: 55px 0 60px;
    background:
        #edf8ff
        url("../images/homebrandbg.jpg")
        no-repeat center;
    background-size: cover; margin-top: 20px;
}

.home-manufacturers *,
.home-manufacturers *::before,
.home-manufacturers *::after {
    box-sizing: border-box;
}


/* Section header adjustment */
.home-manufacturers .section-common-head {
    margin-bottom: 30px;
}

.home-manufacturers .section-common-title {
    text-transform: uppercase;
}


/* =========================================================
   Manufacturer grid
========================================================= */

.home-manufacturers-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   Manufacturer item
========================================================= */

.home-manufacturer-item {
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 18px;
    border: 1px solid #e1e9f1;
    border-radius: 11px;
    background: #ffffff;
    text-decoration: none;
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(14, 90, 164, 0.04);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-manufacturer-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
    border: none;
    transform: scale(1);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;
}


/* Item hover */
.home-manufacturer-item:hover {
    border-color: rgba(247, 185, 1, 0.75);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(14, 90, 164, 0.13);
}

.home-manufacturer-item:hover img {
    transform: scale(1.06);
}


/* =========================================================
   Home blogs section
========================================================= */

.home-blogs {
    width: 100%;
    padding: 25px 0 45px;
}

.home-blogs *,
.home-blogs *::before,
.home-blogs *::after {
    box-sizing: border-box;
}


/* =========================================================
   Main layout
========================================================= */

.home-blogs-main {
    width: 100%;
    display: grid;
    grid-template-columns: 660px minmax(0, 1fr);
    align-items: start;
    gap: 40px;
}


/* =========================================================
   Featured blog
========================================================= */

.home-blogs-featured {
    width: 660px;
    margin: 0;
}

.home-blogs-featured-image {
    display: block;
    width: 660px;
    height: 398px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.home-blogs-featured-image img {
    display: block;
    width: 660px;
    height: 398px;
    max-width: none;
    object-fit: cover;
    border: none;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blogs-featured-image:hover img {
    transform: scale(1.025);
}

.home-blogs-featured-content {
    padding-top: 26px;
}

.home-blogs-featured-content h3 {
    margin: 0;
    color: #14243b;
    font-size: 19px;
    line-height: 26px;
    font-weight: 700;
}

.home-blogs-featured-content h3 a {
    color: #14243b;
    text-decoration: none;
}

.home-blogs-featured-content h3 a:hover {
    color: #0e5aa4;
}

.home-blogs-featured-content p {
    margin: 13px 0 14px;
    color: #6e7f99;
    font-size: 14px;
    line-height: 22px;
}

.home-blogs-featured-content time {
    display: block;
    margin-bottom: 14px;
    color: #607592;
    font-size: 13px;
    line-height: 21px;
}


/* =========================================================
   Blog list
========================================================= */

.home-blogs-list {
    min-width: 0;
    width: 100%;
}

.home-blogs-item {
    width: 100%;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid #e5e9ee;
}

.home-blogs-item + .home-blogs-item {
    padding-top: 18px;
}


/* =========================================================
   Blog item image
========================================================= */

.home-blogs-item-image {
    display: block;
    width: 220px;
    height: 180px;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
}

.home-blogs-item-image img {
    display: block;
    width: 220px;
    height: 180px;
    max-width: none;
    object-fit: cover;
    border: none;
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blogs-item-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   Blog item content
========================================================= */

.home-blogs-item-content {
    min-width: 0;
    padding-top: 1px;
}

.home-blogs-item-content h3 {
    margin: 0;
    color: #14243b;
    font-size: 18px;
    line-height: 24px; height: 48px; overflow: hidden;
    font-weight: 700;
}

.home-blogs-item-content h3 a {
    color: #14243b;
    text-decoration: none;
}

.home-blogs-item-content h3 a:hover {
    color: #0e5aa4;
}

.home-blogs-item-content p {
    margin: 6px 0;
    color: #6e7f99;
    font-size: 14px;
    line-height: 20px; height: 40px; overflow: hidden;
}

.home-blogs-item-content time {
    display: block;
    margin-bottom: 13px;
    color: #607592;
    font-size: 13px;
    line-height: 20px;
}


/* =========================================================
   View more button
========================================================= */

.home-blogs-more-btn {
    min-width: 108px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 5px;
    background: #f7b901;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    transform: translateY(0);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-blogs-more-btn:hover {
    color: #ffffff;
    background: #0e5aa4;
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(14, 90, 164, 0.18);
}


/* =========================================================
   Home posts section
========================================================= */

.home-posts {
    width: 100%;
    padding: 25px 0 45px;
}

.home-posts *,
.home-posts *::before,
.home-posts *::after {
    box-sizing: border-box;
}


/* =========================================================
   Posts grid
========================================================= */

.home-posts-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   Post item
========================================================= */

.home-posts-item {
    width: 100%;
    min-width: 0;
    min-height: 180px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 20px 28px;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(14, 90, 164, 0.03);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-posts-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(14, 90, 164, 0.11);
}


/* =========================================================
   Post image
========================================================= */

.home-posts-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 140px;
    overflow: hidden;
}

.home-posts-image img {
    display: block;
    width: 150px;
    height: 150px;
    max-width: none;
    object-fit: contain;
    border: none;
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-posts-item:hover .home-posts-image img {
    transform: scale(1.05);
}


/* =========================================================
   Post content
========================================================= */

.home-posts-content {
    min-width: 0;
}

.home-posts-content h3 {
    margin: 0 0 18px;
    color: #0e5aa4;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.home-posts-content h3 a {
    color: #0e5aa4;
    text-decoration: none;
}

.home-posts-content h3 a:hover {
    color: #f7b901;
}

.home-posts-content p {
    margin: 0;
    color: #6e7f99;
    font-size: 14px;
    line-height: 21px;
}

/* =========================================================
   Part number section
========================================================= */

.home-part-number {
    width: 100%;
    padding: 25px 0 40px;
}

.home-part-number *,
.home-part-number *::before,
.home-part-number *::after {
    box-sizing: border-box;
}


/* Part number panel */
.home-part-number-panel {
    width: 100%;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
}


/* =========================================================
   Tab navigation
========================================================= */

.home-part-number-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #ffffff;
}

.home-part-number-tab {
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: #ffffff;
    color: #3d3d3d;
    font-size: 21px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.home-part-number-tab + .home-part-number-tab {
    border-left: 1px solid #f0f1f3;
}

.home-part-number-tab:hover {
    color: #0e5aa4;
    background: #fffaf0;
}

.home-part-number-tab.current {
    color: #ffffff;
    background: #f7b901;
    font-weight: 600;
}


/* =========================================================
   Tab content
========================================================= */

.home-part-number-content {
    position: relative;
    width: 100%;
    min-height: 215px;
    background: #ffffff;
}

.home-part-number-pane {
    display: none;
    width: 100%;
    padding: 29px 30px 28px;
    background: #ffffff;
}

.home-part-number-pane.current {
    display: block;
}


/* =========================================================
   Part number list
========================================================= */

.home-part-number-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0;
}

.home-part-number-list > a {
    display: block;
    min-width: 0;
    height: 29px;
    padding: 2px 0;
    overflow: hidden;
    color: #444444;
    font-size: 16px;
    line-height: 25px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.home-part-number-list > a:hover {
    color: #0e5aa4;
    padding-left: 4px;
}


/* =========================================================
   Part number index
========================================================= */

.home-part-number-index {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 13px 30px;
    border-top: 1px solid #e1e5ea;
    background: #ffffff;
}

.home-part-number-index span {
    margin-right: 16px;
    color: #444444;
    font-size: 15px;
    line-height: 26px;
}

.home-part-number-index a {
    min-width: 34px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border-radius: 4px;
    color: #444444;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.home-part-number-index a:hover {
    color: #ffffff;
    background: #0e5aa4;
}

/* =========================================================
   Company statistics section
========================================================= */

.home-statistics {
    width: 100%;
    padding: 38px 0 32px;
    background: #ffffff;
}

.home-statistics *,
.home-statistics *::before,
.home-statistics *::after {
    box-sizing: border-box;
}


/* Statistics list */
.home-statistics-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    background: #ffffff;
}


/* Statistics item */
.home-statistics-item {
    min-width: 0;
    padding: 0 18px;
    background: #ffffff;
}


/* Statistics heading */
.home-statistics-head {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #ffffff;
}

.home-statistics-head strong {
    flex: 0 0 auto;
    color: #0e5aa4;
    font-size: 42px;
    line-height: 50px;
    font-weight: 800;
    white-space: nowrap;
}

.home-statistics-head span {
    color: #14243b;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}


/* Divider line */
.home-statistics-line {
    width: 100%;
    height: 1px;
    margin: 8px 0 9px;
    background: #b9b9b9;
}


/* Statistics description */
.home-statistics-item p {
    margin: 0;
    color: #14243b;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}


/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1400px) {
    .home-hero-content {
        width: calc(100% - 330px);
        margin-left: 330px;
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 16px;
    }

    .home-banner-carousel {
        width: 100%;
    }

    .home-banner-slide img {
        width: 100%;
    }

    .home-banner-link {
        padding: 0 18px;
    }

    .home-banner-link-content strong {
        font-size: 16px;
        line-height: 24px;
    }
	 .home-service-cards-list {
	        grid-template-columns: repeat(2, minmax(0, 1fr));
	    }
	
	    .home-service-card-content {
	        width: 58%;
	    }
		 .home-popular-columns {
		        gap: 20px;
		    }
		
		    .home-popular-column {
		        flex: 1;
		        width: auto;
		    }
		
		    .home-popular-banner {
		        width: 100%;
		        height: auto;
		    }
		
		    .home-popular-banner img {
		        width: 100%;
		        height: auto;
		    }
}


/* =========================================================
   Tablet layout
========================================================= */

@media (min-width: 769px) and (max-width: 1199px) {
    .home-hero-content {
        width: calc(100% - 296px);
        height: 380px;
        margin-left: 296px;
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 12px;
    }

    .home-banner-carousel,
    .home-banner-slides,
    .home-banner-slide {
        height: 380px;
    }

    .home-banner-slide img {
        width: 100%;
        height: 380px;
    }

    .home-banner-links {
        height: 380px;
    }

    .home-banner-link {
        padding: 0 14px;
    }

    .home-banner-link-content strong {
        font-size: 15px;
        line-height: 22px;
    }

    .home-banner-link-content span {
        font-size: 13px;
        line-height: 20px;
    }

    .home-banner-link > img {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        max-width: 40px;
    }
	 .section-common-title {
	        font-size: 24px;
	        line-height: 32px;
	    }
	
	    .section-common-head::after {
	        width: 220px;
	    }
	
	    .home-popular-columns {
	        display: block;
	    }
	
	    .home-popular-column {
	        width: 100%;
	        margin-bottom: 24px;
	    }
	
	    .home-popular-column:last-child {
	        margin-bottom: 0;
	    }
	
	    .home-popular-grid {
	        gap: 10px;
	    }
	
	    .home-popular-card {
	        min-height: 260px;
	        padding: 16px 12px 14px;
	    }
	
	    .home-popular-card-title {
	        font-size: 15px;
	        line-height: 22px;
	    }
	
	    .home-popular-card-brand {
	        font-size: 13px;
	        line-height: 20px;
	    }
		 .home-bom-inner {
		        height: 190px;
		    }
		
		    .home-bom-bg {
		        height: 190px;
		    }
		
		    .home-bom-content {
		        width: 62%;
		        padding-left: 45px;
		    }
		
		    .home-bom-content h2 {
		        font-size: 28px;
		        line-height: 36px;
		    }
		
		    .home-bom-content p {
		        margin: 5px 0 14px;
		        font-size: 18px;
		        line-height: 26px;
		    }
		
		    .home-bom-link {
		        min-width: 170px;
		        height: 40px;
		        gap: 10px;
		        padding: 0 16px;
		        font-size: 15px;
		        line-height: 40px;
		    }
		
		    .home-bom-link i {
		        font-size: 19px;
		    }
			 .home-preferential-main {
			        grid-template-columns: 260px minmax(0, 1fr);
			        gap: 20px;
			    }
			
			    .home-preferential-banner {
			        width: 260px;
			        height: 570px;
			    }
			
			    .home-preferential-banner img {
			        width: 260px;
			        height: 570px;
			    }
			
			    .home-preferential-products {
			        grid-template-columns: repeat(4, minmax(0, 1fr));
			        grid-template-rows: none;
			        gap: 14px;
			    }
			
			    .home-preferential-products .home-popular-card {
			        height: auto;
			        min-height: 270px;
			    }
				.home-manufacturers {
				        padding: 45px 0 50px;
				    }
				
				    .home-manufacturers-list {
				        grid-template-columns: repeat(4, minmax(0, 1fr));
				        gap: 16px;
				    }
					
					.home-blogs-main {
					        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
					        gap: 26px;
					    }
					
					    .home-blogs-featured {
					        width: 100%;
					    }
					
					    .home-blogs-featured-image {
					        width: 100%;
					        height: auto;
					        aspect-ratio: 660 / 398;
					    }
					
					    .home-blogs-featured-image img {
					        width: 100%;
					        height: 100%;
					    }
					
					    .home-blogs-item {
					        grid-template-columns: 180px minmax(0, 1fr);
					        gap: 16px;
					    }
					
					    .home-blogs-item-image {
					        width: 180px;
					        height: 160px;
					    }
					
					    .home-blogs-item-image img {
					        width: 180px;
					        height: 160px;
					    }
					
					    .home-blogs-item-content h3 {
					        font-size: 16px;
					        line-height: 22px;
					    }
					
					    .home-blogs-item-content p {
					        font-size: 13px;
					        line-height: 19px;
					    }
						
 .home-posts-item {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 16px;
        padding: 18px 20px;
    }

    .home-posts-image {
        width: 130px;
        height: 130px;
    }

    .home-posts-image img {
        width: 130px;
        height: 130px;
    }

    .home-posts-content h3 {
        margin-bottom: 12px;
        font-size: 17px;
        line-height: 24px;
    }

    .home-posts-content p {
        font-size: 13px;
        line-height: 20px;
    }						
						
	  .home-statistics-list {
	        gap: 12px;
	    }
	
	    .home-statistics-item {
	        padding: 0 12px;
	    }
	
	    .home-statistics-head {
	        gap: 15px;
	    }
	
	    .home-statistics-head strong {
	        font-size: 35px;
	        line-height: 44px;
	    }
	
	    .home-statistics-head span {
	        font-size: 16px;
	        line-height: 23px;
	    }				
}


/* =========================================================
   Mobile layout
========================================================= */

@media (max-width: 768px) {

    /* Home hero */
    .home-hero {
        width: 100%;
        padding: 10px 0 12px;
        background: #fafbfb;
    }

    .home-hero-content {
        width: 100%;
        height: auto;
        margin-left: 0;
        display: block;
    }


    /* Banner carousel */
    .home-banner-carousel {
        width: 100%;
        height: auto;
        aspect-ratio: 715 / 424;
        overflow: hidden;
        border-radius: 8px;
        background: #ffffff;
    }

    .home-banner-slides,
    .home-banner-slide {
        width: 100%;
        height: 100%;
    }

    .home-banner-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
        opacity: 1;
        visibility: visible;
    }

    .home-banner-prev {
        left: 8px;
    }

    .home-banner-next {
        right: 8px;
    }

    .home-banner-pagination {
        bottom: 10px;
        gap: 6px;
    }

    .home-banner-pagination button {
        width: 16px;
        height: 4px;
    }


    /* Banner quick links */
    .home-banner-links {
        width: 100%;
        height: auto;
        margin-top: 10px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 10px;
    }

    .home-banner-link {
        width: 100%;
        min-width: 0;
        min-height: 88px;
        padding: 12px 12px;
        gap: 8px;
        border-radius: 8px;
    }

    .home-banner-link-content {
        min-width: 0;
    }

    .home-banner-link-content strong {
        display: block;
        overflow: visible;
        color: #101d33;
        font-size: 14px;
        line-height: 20px;
        white-space: normal;
        text-overflow: clip;
        word-break: normal;
    }

    .home-banner-link-content span {
        margin-top: 2px;
        font-size: 13px;
        line-height: 20px;
    }

    .home-banner-link > img {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        max-width: 42px;
    }


    /* Home service cards */
    .home-service-cards {
        width: 100%;
        padding: 8px 0 12px;
        background: #fafbfb;
    }

    .home-service-cards-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-service-card {
        width: 100%;
        height: 120px;
        min-height: 120px;
        overflow: hidden;
        border-radius: 8px;
    }

    .home-service-card > img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .home-service-card-content {
        width: 68%;
        height: 100%;
        padding: 13px 4px 10px 12px;
    }

    .home-service-card-content strong {
        display: block;
        min-height: 51px;
        color: #101d33;
        font-size: 12.5px;
        line-height: 17px;
        font-weight: 700;
    }
  
    .home-service-card-content a {
        min-width: 56px;
        height: 27px;
        margin-top: 5px;
        padding: 0 12px;
        border-radius: 5px;
        font-size: 12px;
        line-height: 27px;
    }
      .home-service-card-content p{ font-size:0.8rem; line-height:20px; min-height:60px;}

    /* Popular section */
    .home-popular-section {
        width: 100%;
        padding: 16px 0 8px;
        background: #fafbfb;
    }


    /* Common section header */
    .section-common-head {
        width: 100%;
        padding-bottom: 13px;
        margin-bottom: 18px;
        gap: 10px;
    }

    .section-common-head::after {
        width: 145px;
    }

    .section-common-title {
        font-size: 21px;
        line-height: 29px;
    }

    .section-common-more {
        flex: 0 0 auto;
        font-size: 13px;
        line-height: 20px;
    }


    /* Popular columns */
    .home-popular-columns {
        width: 100%;
        display: block;
    }

    .home-popular-column {
        width: 100%;
        max-width: none;
        margin-bottom: 22px;
    }

    .home-popular-column:last-child {
        margin-bottom: 0;
    }


    /* Popular banner */
    .home-popular-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 665 / 240;
        overflow: hidden;
        border-radius: 8px;
    }

    .home-popular-banner img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* Popular product grid */
    .home-popular-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 12px;
    }


    /* Popular product card */
    .home-popular-card {
        width: 100%;
        min-width: 0;
        min-height: 258px;
        padding: 14px 8px 12px;
        border-radius: 8px;
    }

    .home-popular-card-image {
        width: 100%;
        height: 140px;
        margin-bottom: 10px;
    }

    .home-popular-card-image img {
        width: 140px;
        height: 140px;
        max-width: 100%;
        object-fit: contain;
    }

    .home-popular-card-title {
        display: block;
        min-height: 40px;
        margin-bottom: 4px;
        color: #1a2b44;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .home-popular-card-brand {
        min-height: 38px;
        margin: 0;
        color: #6e829f;
        font-size: 12.5px;
        line-height: 19px;
        overflow-wrap: anywhere;
        word-break: normal;
    }


    /* Popular badges */
    .home-popular-badge {
        left: 9px;
    }

    .home-popular-badge-hot {
        top: 0;
        width: 34px;
        height: 33px;
    }

    .home-popular-badge-hot img {
        width: 34px;
        height: 33px;
    }

    .home-popular-badge-selected {
        top: 10px;
        width: 42px;
        height: 42px;
    }

    .home-popular-badge-selected img {
        width: 42px;
        height: 42px;
    }


    /* BOM banner */
    .home-bom {
        width: 100%;
        padding: 12px 0;
        background: #fafbfb;
    }

    .home-bom-inner {
        width: 100%;
        height: 170px;
        overflow: hidden;
        border-radius: 8px;
    }

    .home-bom-bg {
        width: 100%;
        height: 170px;
        object-fit: cover;
        object-position: center;
    }

    .home-bom-content {
        width: 70%;
        height: 100%;
        padding: 0 10px 0 18px;
    }

    .home-bom-content h2 {
        margin: 0;
        font-size: 19px;
        line-height: 25px;
    }

    .home-bom-content p {
        margin: 5px 0 11px;
        font-size: 13px;
        line-height: 19px;
    }

    .home-bom-link {
        min-width: 138px;
        height: 36px;
        gap: 8px;
        padding: 0 12px;
        font-size: 12px;
        line-height: 36px;
    }

    .home-bom-link i {
        font-size: 17px;
    }
	 .home-preferential-section {
	        padding: 16px 0 10px;
	    }
	
	    .home-preferential-main {
	        width: 100%;
	        display: block;
	    }
	
	    .home-preferential-banner {
	           display: none;
	        }
	    
	
	
	    .home-preferential-products {
	        width: 100%;
	        display: grid;
	        grid-template-columns: repeat(2, minmax(0, 1fr));
	        grid-template-rows: none;
	        gap: 10px;
	    }
	
	    .home-preferential-products .home-popular-card {
	        width: 100%;
	        height: auto;
	        min-height: 258px;
	        padding: 14px 8px 12px;
	        border-radius: 8px;
	    }
	
	    .home-preferential-products .home-popular-card-image {
	        width: 100%;
	        height: 140px;
	        margin-bottom: 10px;
	    }
	
	    .home-preferential-products .home-popular-card-image img {
	        width: 140px;
	        height: 140px;
	        max-width: 100%;
	    }
	
	    .home-preferential-products .home-popular-card-title {
	        min-height: 40px;
	        margin-bottom: 4px;
	        font-size: 14px;
	        line-height: 20px;
	        overflow-wrap: anywhere;
	    }
	
	    .home-preferential-products .home-popular-card-brand {
	        min-height: 38px;
	        font-size: 12.5px;
	        line-height: 19px;
	        overflow-wrap: anywhere;
	    }
		 .home-manufacturers {
		        padding: 30px 0 34px;
		        background-position: center;
		    }
		
		    .home-manufacturers .section-common-head {
		        margin-bottom: 20px;
		    }
		
		    .home-manufacturers .section-common-title {
		        font-size: 20px;
		        line-height: 28px;
		    }
		
		    .home-manufacturers-list {
		        grid-template-columns: repeat(2, minmax(0, 1fr));
		        gap: 10px;
		    }
		
		    .home-manufacturer-item {
		        height: 78px;
		        padding: 10px 12px;
		        border-radius: 8px;
		    }
		
		    .home-manufacturer-item img {
		        max-width: 145px;
		        max-height: 54px;
		    }
		
		    .home-manufacturer-item:hover {
		        transform: translateY(-2px);
		    }
			 .home-blogs {
			        padding: 16px 0 25px;
			    }
			
			    .home-blogs-main {
			        width: 100%;
			        display: block;
			    }
			
			
			    /* Featured blog */
			    .home-blogs-featured {
			        width: 100%;
			        margin-bottom: 24px;
			    }
			
			    .home-blogs-featured-image {
			        width: 100%;
			        height: auto;
			        aspect-ratio: 660 / 398;
			        border-radius: 8px;
			    }
			
			    .home-blogs-featured-image img {
			        width: 100%;
			        height: 100%;
			    }
			
			    .home-blogs-featured-content {
			        padding-top: 16px;
			    }
			
			    .home-blogs-featured-content h3 {
			        font-size: 17px;
			        line-height: 24px;
			    }
			
			    .home-blogs-featured-content p {
			        margin: 10px 0 11px;
			        font-size: 13px;
			        line-height: 20px;
			    }
			
			
			    /* Blog list */
			    .home-blogs-list {
			        width: 100%;
			    }
			
			    .home-blogs-item {
			        width: 100%;
			        grid-template-columns: 120px minmax(0, 1fr);
			        gap: 12px;
			        padding-bottom: 15px;
			    }
			
			    .home-blogs-item + .home-blogs-item {
			        padding-top: 15px;
			    }
			
			    .home-blogs-item-image {
			        width: 120px;
			        height: 110px;
			        border-radius: 8px;
			    }
			
			    .home-blogs-item-image img {
			        width: 120px;
			        height: 110px;
			    }
			
			    .home-blogs-item-content h3 {
			        font-size: 14px;
			        line-height: 20px; height: 40px; overflow: hidden;
			    }
			
			    .home-blogs-item-content p {
			        display: none;
			    }
			
			    .home-blogs-item-content time {
			        margin-top: 8px;
			        margin-bottom: 9px;
			        font-size: 12px;
			        line-height: 18px;
			    }
			
			    .home-blogs-more-btn {
			        min-width: 86px;
			        height: 32px;
			        padding: 0 13px;
			        font-size: 12px;
			        line-height: 32px;
			    }
				
 .home-posts {
        padding: 16px 0 25px;
    }

    .home-posts-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-posts-item {
        min-height: 140px;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 12px;
        border-radius: 8px;
    }

    .home-posts-image {
        width: 110px;
        height: 110px;
    }

    .home-posts-image img {
        width: 110px;
        height: 110px;
    }

    .home-posts-content h3 {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 21px;
        overflow-wrap: anywhere;
    }

    .home-posts-content p {
        display: -webkit-box;
        overflow: hidden;
        color: #6e7f99;
        font-size: 12.5px;
        line-height: 19px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }				
		
.home-part-number {
        padding: 16px 0 25px;
    }

    .home-part-number-panel {
        border-radius: 8px;
    }

    /* Tab navigation */
    .home-part-number-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-part-number-tab {
        min-width: 0;
        height: 52px;
        padding: 0 6px;
        font-size: 14px;
        line-height: 20px;
        white-space: nowrap;
    }

    /* Tab content */
    .home-part-number-content {
        min-height: 0;
    }

    .home-part-number-pane {
        padding: 18px 15px;
    }

    /* Part number list */
    .home-part-number-list {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 0;
    }

    .home-part-number-list > a {
        min-width: 0;
        height: 26px;
        padding: 3px 0;
        overflow: hidden;
        font-size: 13px;
        line-height: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-part-number-list > a:hover {
        padding-left: 0;
        color: #0e5aa4;
    }

    /* Part number index */
    .home-part-number-index {
        width: 100%;
        min-height: auto;
        padding: 12px 10px;
    }

    .home-part-number-index span {
        width: 100%;
        margin: 0 0 7px;
        padding-left: 5px;
        font-size: 13px;
        line-height: 20px;
    }

    .home-part-number-index a {
        min-width: 30px;
        height: 30px;
        padding: 0 5px;
        font-size: 13px;
        line-height: 30px;
    }
			
			 .home-statistics {
			        padding: 24px 0;
			        background: #ffffff;
			    }
			
			    .home-statistics-list {
			        grid-template-columns: 1fr;
			        gap: 24px;
			        background: #ffffff;
			    }
			
			    .home-statistics-item {
			        width: 100%;
			        padding: 0;
			        background: #ffffff;
			    }
			
			    .home-statistics-head {
			        min-height: auto;
			        justify-content: flex-start;
			        gap: 14px;
			        background: #ffffff;
			    }
			
			    .home-statistics-head strong {
			        font-size: 32px;
			        line-height: 40px;
			    }
			
			    .home-statistics-head span {
			        font-size: 16px;
			        line-height: 23px;
			    }
			
			    .home-statistics-line {
			        margin: 8px 0 9px;
			    }
			
			    .home-statistics-item p {
			        font-size: 13px;
			        line-height: 21px;
			    }
}

