header {
    position: fixed;
    width: 100%;
    z-index: 101;
}
.header-menu {
    color: #FFF;
    padding: 10px 0;
}

#page-home .header-menu {
    padding-top: 20px;
}

.header-menu ul li {
    list-style: none;
    position: relative;
}

.logo img {
    max-width: 230px;
}

.menu .level1 {
    display: flex;
    gap: 10px 20px;
    align-items: center;
    font-family: var(--font-family2);
}

.menu .item-level1.active .name-level1 {
    background-color: #65442b;
}

.menu .item-level1 .name-level1 {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 4px;
    color: #FFF;
}

.menu .item-level1 .name-level1:hover {
    background-color: #65442b;
}

.menu .name-level1 {
    color: #FFF;
    font-size: 18px;
}

.icon-arrow svg {
    width: 20px;
    height: 20px;
    transform: translateY(3px);
}

.name-level1 > .icon-arrow svg path {
    stroke: #FFF;
}

.header-right ul li img,
.header-right ul li svg {
    width: 15px;
    height: 15px;
}

.header-right ul li a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.062745098);
    border-radius: 50%;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    position: relative;
    z-index: 1;
}

.header-right ul li a::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #65442b;
    opacity: 0.06;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.header-right ul li a:hover:after {
    opacity: 1;
    transform: scale(1);
}

.level2 {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* min-width: 200px; */
    padding: 5px 0;
    display: none;
    z-index: 10;
    border-radius: 5px;
    width: max-content;
}

.level2 .item-level2 {
    padding: 5px 10px;
}

.name-level2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
}

.name-level2 .icon-arrow {
    transform: rotate(-90deg);
}

.level3 {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    z-index: 10;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-width: 200px;
    padding: 5px 0;
}

.level3 .item-level3 {
    padding: 5px 10px;
}

.header-right ul {
    display: flex;
    gap: 10px;
}

.header-right .icon-menu-m {
    color: #FFF;
    display: none;
}

.header-right .icon-menu-m svg {
    width: 25px;
    height: 25px;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.header-menu .inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.title-wrap {
    margin-bottom: 30px;
}

.title-page {
    font-size: 24px;
    font-weight: 700;
    color: #65442b;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.title-page::before {
    content: '';
    background-image: url('../images/line-mau14.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header-menu.affix {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 101;
    padding: 10px 0 !important;
}

.icon-menu-pc svg {
    width: 20px;
    height: 20px;
}

.icon-menu-pc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #65442b;
    color: #FFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #65442b;
}

.icon-menu-pc:hover {
    background-color: #FFF;
    color: #65442b !important;
}

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

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #00000080;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 102;
    transition: .3s ease-in-out;
    visibility: hidden;
}

.overlay.active {
    opacity: 1;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    visibility: visible;
}

.box-box {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #7b5734;
    top: 0;
    left: 0;
    z-index: 103    ;
    transform: translateX(-100%);
    opacity: 0;
    max-width: 470px;
    transition: .3s cubic-bezier(.12, .67, .53, 1);
    visibility: hidden;
}

.box-box.right {
    left: unset;
    right: 0;
    transform: translateX(100%);
}

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

.box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
}

.box-title .title {
    font-size: 20px;
    text-transform: uppercase;
	color: #FFF;
}

.box-title .close {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-title .close svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: block;
}

.box-title .close svg path {
	fill: #FFF;
}

#box-content .info-content {
	height: calc(100vh - 72px);
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: space-between;
	padding: 5px 32px 40px;
	color: #FFF;
    overflow: auto;
}

#box-content .info-content .top > img {
	display: block;
	margin-bottom: 15px;
}

#box-content .info-content .top .text {
	margin-bottom: 25px;
}

#box-content .info-content .top .text p {
    font-size: 15px;
}

#box-content .info-content .top ul {
	display: flex;
	gap: 15px;
	align-items: center;
}

#box-content .info-content .top ul li {
	list-style: none;
}

#box-content .info-content .contact .icon {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

#box-content .info-content .contact .icon .img-wrap {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff14;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box-content .info-content .contact .icon img {
    width: 18px;
    object-fit: contain;
}

#box-content .info-content .contact .location img {
    width: 12px;
}

#box-content .info-content::-webkit-scrollbar {
    width: 5px;
}

#box-content .info-content::-webkit-scrollbar-thumb {
    background: #65442b; 
    border-radius: 5px;
}

#box-content .header-right {
    gap: 15px;
    margin-top: 20px;
}

#box-content .header-right h3 {
    width: 100%;
    font-size: 16px;
}

.menu .header-right {
    display: none;
}

@media (max-width: 1200px) { 
    .menu .level1 {
        gap: 10px 3px;
    }

    .menu .item-level1 .name-level1 {
        padding: 5px 10px;
    }

    .header-right {
        gap: 15px;
    }

    .logo img {
        max-width: 160px;
    }
}

@media (min-width: 992px) { 
    .close-menu-mb,
    .logo-menu,
    .menu .item-level1 .name-level1 img,
    .svg-icon  {
        display: none;
    }

    .item-level1:hover .level2 {
    display: block;
    }

    .item-level2:hover .level3 {
        display: block;
    }

}

@media (max-width: 992px) { 
    .logo img {
        max-width: 190px;
    }

    .menu .item-level1.active .name-level1 {
        background-color: transparent;
    }

    .menu .header-right {
        display: block;
        margin-top: 20px;
    }

    .menu .header-right h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .menu .header-right ul {
        display: flex;
    }

    .menu .item-level1 {
        border-bottom: 1px solid #ffffff24;
        padding: 5px 0;
    }

    .icon-menu-pc {
        display: none;
    }

    .svg-icon {
        width: 18px;
        height: 18px;
        fill: #FFF;
        position: absolute;
        top: 14px;
        right: 0px;
    }

    .level2,
    .level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 10px;
    }

    .name-level2,
    .name-level3 {
        color: #FFF;
    }

    .svg-icon.active .icon-plus-x {
        transform: scaleY(0);
    }

    .svg-icon rect, .svg-icon path {
        transition: all cubic-bezier(.12, .67, .53, 1) .3s;
        transform-origin: center;
    }

    .icon-arrow {
        display: none;
    }

    .header-right .icon-menu-m {
        display: flex;
    }

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

    .overlay-m.active {
        opacity: .5;
        visibility: visible;
    }

    .menu {
        background: #7b5734;
        border-color: rgba(0, 0, 0, 0.1);
        color: #fff;
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 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;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

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

    .menu .name-level1 {
        color: #65442b;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .menu .name-level1 img {
        width: 22px;
    }

    .menu .level1 {
        display: block;
    }

    .menu .item-level1 .name-level1 {
        display: inline-block;
        padding: 5px 0;
    }

    .menu .item-level1.active {
        margin-bottom: 5px;
    }

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

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

    .menu .close-menu-mb svg path {
        fill: #FFF;
    }

    .logo-menu {
        margin-bottom: 15px;
    }

    .logo-menu img {
        max-width: 230px;
        width: 100%;
    }

}

@media (max-width: 576px) {
    .title-page {
        font-size: 22px;
    }

    .title-wrap {
        margin-bottom: 20px;
    }

    .header-right ul {
        display: none;
    }
}