.wrap {
    max-width: 1460px;
    margin: 0 auto;
}
.header-logo .box .content p {
	color:#788090
}

.img-100 {
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

.img-100>img {
    object-fit: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s linear;
}

.img-100:hover img {
    transform: scale(1.05);
}

.wrap-img {
    display: block;
}
 
.affix {
    position: fixed;
}

/* Header  */
header {
    background-color: var(--second-color);
}

.header-nav {
    border-bottom: 1px solid #ebebeb;
    padding: 2px 0px 2px 0;
}

.header-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav .address span{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--sixth-color);
}

.header-nav .address svg {
    width: 14px;
    height: 14px;
}

.header-nav .language {
    padding: 10px 20px;
    position: relative;
}

.header-nav .language img {
    width: 16px;
}

.header-nav .language .current svg {
    width: 14px;
    height: 14px;
    transform: translateY(2px);
}

.header-nav .language .current {
    cursor: pointer;
    font-weight: 600;
}

.header-nav .language .current:hover {
    color: var(--fifth-color);
}

.header-nav .list-language {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 20px 0;
    border-radius: 10px;
    background-color: var(--second-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 1px;
    min-width: 150px;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.header-nav .language:hover .list-language {
    opacity: 1;
    visibility: visible;
}

.header-nav .list-language ul li a {
    padding: 5px 20px;
    display: block;
    font-weight: 600;
}

.header-nav-right ul li {
    display: inline-block;
    padding: 5px 10px;
}

.header-nav-right ul {
    text-align: right;
}

.header-nav-right ul li a {
    color: var(--sixth-color);
}

.header-nav-right ul li a:hover {
    color: var(--fifth-color);
}

.header-logo .box {
    display: grid;
    grid-template-columns: 35px auto;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-logo .box:hover p {
    color: var(--fifth-color);
}

.header-logo .box svg {
    width: 35px;
    height: 35px;
}

.header-logo .box img {
    width: 35px;
    height: 35px;
}

.header-logo .box .content h4 {
    font-size: 14px;
    color: var(--fifth-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.header-logo .box .content h3 {
    font-size: 16px;
}

.header-logo .box:hover h4{
    color: var(--fifth-color);
}

.header-logo .line-dot {
    background-image: url(../images/line-dot.png);
    background-position: top left;
    background-repeat: repeat-y;
    height: 33px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 1;
    width: 2px;
}

.header-logo .logo img {
    max-width: 245px;
}

.header-logo-inner {
    padding: 40px 0 42px 0;
    /* background-image: url(../images/line-dot.png); */
    background-position: bottom center;
    background-repeat: repeat-x;
}

.header-search form {
    position: relative;
}

.header-search input {
    width: 100%;
    border: 1px solid #eee;
    height: 40px;
    line-height: 40px;
    padding: 7px 10px 7px 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sixth-color);
    border-radius: 8px;
}

.header-search button svg {
    width: 20px;
    height: 20px;
}

.header-search button svg path {
    stroke: var(--sixth-color);
}

.header-search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    height: 38px;
    width: 20px;
    background: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.menu .level1 .item-level1 {
    display: inline-block;
    margin-right: 15px;
    /* position: relative; */
    border-radius: 4px;
    background: transparent;
}

.menu .level1 .name-level1 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 18px;
    clip-path: polygon(100% 0%, calc(100% - 10px) 50%, 100% 100%, 0 100%, 8px 49%, 0 1%);
    display: inline-block;
}

.menu .level1 .item-level1:hover .level2 {
    opacity: 1;
    visibility: visible;
}

.menu .level1 .item-level1.active .name-level1,
.menu .level1 .item-level1:hover .name-level1 {
    background-color: var(--third-color);
    color: var(--fifth-color);
}

.menu .level1 .item-level1.active .name-level1 svg path,
.menu .level1 .item-level1:hover .name-level1 svg path {
    stroke: currentColor;
}

.menu {
    padding: 15px 0 15px;
    border-top: dashed 2px #eee;
}

.menu.affix {
    width: 100%;
    background-color: #FFF;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 8;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu .icon-arrow svg{
    width: 15px;
    height: 15px;
    transform: translateY(2px);
}

.menu .level2 {
    transition: .3s;
    padding: 20px 10px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, .16);
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    z-index: 3;
}

.menu .level2.type-2 {
    padding: 20px 0;
    display: block;
}

.menu .level2 a:hover {
    color: var(--fifth-color) !important;
}

.menu .level2 .item-level2 {
    width: 190px;
    padding: 0 10px;
}

.menu .level2 .name-level2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
}

.menu .level3 .name-level3,
.menu .level2.type-2 .name-level2 {
    color: var(--sixth-color);
    padding: 8px 0;
    display: block;
}

.menu .level2.type-2 .name-level2 {
    font-size: 14px;
    margin-bottom: 0;
}

.icon-mobile {
    display: none;
}

.icon-mobile svg {
    width: 25px;
    height: 25px;
}

.overlay-menu-mb {
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

.overlay-menu-mb.active {
    opacity: .3;
    visibility: visible;
}

.menu-mb{
    background: #FFF;
    border-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    width: 80%;
    max-width: 440px;
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.menu-mb.active {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.menu-mb .menu-navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

.menu-mb .level1 .item-level1 {
    display: block;
    padding: 10px 50px 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.menu-mb .level1 {
    height: calc(100vh - 60px);
    overflow-y: scroll;
}

.menu-mb .level1 .arrow svg{
    width: 15px;
    height: 15px;
}

.menu-mb .level1 .arrow{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s;
}

.menu-mb .level1 .arrow.active{
    transform: rotate(180deg);
}

.menu-mb .level1 .level2{
    padding-left: 15px;
    margin-top: 10px;
    display: none;
    margin-right: -30px;
}

.menu-mb .level1 .item-level2{
    padding: 5px 0;
    font-size: 14px;
    position: relative;
}

.menu-mb .close-menu-mb{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-mb .close-menu-mb svg{
    width: 20px;
    height: 20px;
}

.menu-mb .level3 {
    padding-top: 5px;
    margin-left: 17px;
}

.menu-mb .level3 li {
    padding-bottom: 5px;
    position: relative;
}

.menu-mb .level3 li a {
    font-size: 13px;
    color: var(--sixth-color);
}

.menu-mb .level3 li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--sixth-color);
    position: absolute;
    top: 8px;
    left: -10px;
}
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .header-logo .dich-vu {
        display: none;
    }

    .header-logo.affix {
        width: 100%;
        background-color: #FFF;
        top: 0;
        box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
        animation: slide-down .5s linear forwards;
        z-index: 8;
    }

    .icon-mobile {
        display: flex;
        justify-content: end;
        gap: 15px;
    }

    .cart-m {
        position: relative;
    }

    .cart-m .count {
        position: absolute;
        top: -7px;
        right: -7px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        background-color: var(--fifth-color);
        color: var(--second-color);
        border-radius: 50%;
        width: 20px;
        height: 20px;
    }

    .header-logo-inner {
        padding: 10px 0 5px;
        background-image: none;
    }

    .menu .level1 {
        display: none;
    }

    .menu {
        padding: 0px 0 5px;
        border-top: 1px solid #eee;
    }

    .header-search {
        padding-top: 7px;
    }

    .header-search button {
        left: unset;
        right: 10px;
    }

    .header-search input {
        padding: 7px 40px 7px 15px;
    }
}