.hero-section .container {
    display: flex;
    flex-wrap: wrap;
}

.hero-section-menu ul {
    margin: 0;
    padding: 0;
}

.hero-section-menu ul li {
    list-style: none;
}

.hero-section-menu ul li a {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
}

.hero-section-menu ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: 0.5s;
}

.hero-section-menu ul li a:hover::before {
    width: 100%;
}

.hero-section-banner-item img {
    width: 100%;
    height: auto;
    display: block;
}



@media (min-width: 992px) {
    .hero-section-menu {
        width: 16.875vw;
        border: 1px solid #CCCCCC;
        box-sizing: border-box;
        /* padding: 1.042vw 1.528vw; */
        padding: 1.042vw;
    }

    .hero-section-menu ul li {
        margin-bottom:  1.20vw;
    }

    .hero-section-menu ul li:last-child {
        margin-bottom: 0;
    }

    .hero-section-menu ul li a {
        font-weight: 600;
        font-size: .972vw;
        line-height: 1.181vw;
    }

    .hero-section-banner {
        width: calc(100% - 16.875vw);
    }
}

@media (max-width: 991px) {
    .hero-section-menu {
        width: 100%;
        box-sizing: border-box;
        padding: 9px 0;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .hero-section-menu::-webkit-scrollbar {
        display: none;
    }

    .hero-section-menu ul {
        display: flex;
        justify-content: space-between;
    }

    .hero-section-menu ul li {
        margin-right: 5px;
        padding-right: 5px;
        border-right: 1px solid #DEDEDE;
    }

    .hero-section-menu ul li a {
        font-weight: 500;
        font-size: 11px;
        line-height: 11px;
        white-space: nowrap;
        display: block;
    }

    .hero-section-banner {
        width: 100%;
    }

    .hero-section .container .product-banner {
        width: calc(100% + 32px) !important;
        margin: 16px -16px 10px !important;
    }
}

.container .product-banner {
    width: 100% !important;
}