.breadcrumb {
    display: none;
}

header.header.slide-in-down.header-bg {
    position: fixed;
    width: 100%;
}

header.header.slide-in-down.header-bg .ctnr {
    display: none;
}

.header-desktop .top-bar {
    background: #0fa859;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-desktop .header {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-desktop .ctnr {
    display: flex;
    align-items: center;
}

.header-desktop .header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 12px;
    background: #fff;
}

.header-desktop .header-left {
    color: #757575;
    font-size: 14px;
    font-weight: 500;
}

.header-desktop .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #757575;
}

.header-desktop .international-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    border-top: unset;
    border-bottom: unset;
    background: #0ea659;
    border-radius: 3px;
}

.header-desktop .international-link:hover {
    color: #ed2f36;
    transform: translateY(-1px);
}

.header-desktop .flag-icon {
    width: 16px;
    height: 12px;
    background: linear-gradient(to bottom, #012169 0%, #012169 33%, white 33%, white 66%, #c8102e 66%);
    position: relative;
    display: inline-block;
}

.header-desktop .flag-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, #c8102e 40%, #c8102e 45%, transparent 45%), linear-gradient(-45deg, transparent 40%, #c8102e 40%, #c8102e 45%, transparent 45%), linear-gradient(135deg, transparent 40%, #c8102e 40%, #c8102e 45%, transparent 45%), linear-gradient(-135deg, transparent 40%, #c8102e 40%, #c8102e 45%, transparent 45%);
}

.header-desktop .search-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-desktop .search-icon:hover {
    transform: scale(1.1);
}

.header-desktop .main-header {
    padding: 15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0px 20px;
}

.header-desktop .logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: space-between;
    padding: 0px 40px;
}

.header-desktop .logo-main {
    font-size: 36px;
    font-weight: bold;
    color: #1976d2;
    margin-right: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0px 20px;
}

.header-desktop .logo-container:hover .logo-main {
    color: #1565c0;
    text-shadow: 0 0 10px rgba(25, 118, 210, 0.3);
}

.header-desktop .logo-subtitle {
    font-size: 11px;
    color: #666;
    max-width: 140px;
    line-height: 1.3;
}

.header-desktop .navigation {
    background: #0fa858;
    border-top: 1px solid #f0f0f0;
}

.header-desktop .nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.header-desktop .nav-item {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-desktop .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.header-desktop .nav-link .dropdown-arrow {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.header-desktop .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-desktop .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: max-content;
    background: #fff;
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 2px solid #ee2f37;
}

.header-desktop .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-desktop .dropdown-item {
    display: block;
    padding: 6px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
}

.header-desktop .dropdown-item:last-child {
    border-bottom: none;
}

.header-desktop .dropdown-item:hover {
    background: #f8f9fa;
    color: #0fa858;
}

.header-desktop .dropdown-item:first-child {
    border-radius: 6px 6px 0 0;
}

.header-desktop .dropdown-item:last-child {
    border-radius: 0 0 6px 6px;
}

header.header-desktop .item-images-brand.item-bg-pages {
    margin-top: 0px;
    margin-bottom: 0px;
}

.header-desktop .nav-link:hover::before {
    left: 100%;
}

.header-desktop .nav-link:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    color: #0fa858;
}

.header-desktop .nav-item.home .nav-link {
    background: #eb343a;
    height: 100%;
}

.header-desktop .home-icon {
    width: 18px;
    height: 18px;
    fill: #1976d2;
}

.header-desktop .nav-item.vngo .nav-link {
    color: #ff6f00;
    font-weight: bold;
    position: relative;
}

.header-desktop .nav-item.vngo .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6f00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-desktop .nav-item.vngo .nav-link:hover::after {
    width: 80%;
}

.header-desktop .content-area {
    padding: 30px 0;
    min-height: 400px;
}

.header-desktop .placeholder-content {
    text-align: center;
    color: #666;
    background: #fff;
    padding: 60px 30px;
    border-radius: 0;
    box-shadow: none;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.header-desktop .placeholder-content:hover {
    transform: none;
    box-shadow: none;
    background: #fafafa;
}

.header-desktop .search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 8px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    z-index: 9999;
}

.header-desktop .search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-desktop .search-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.header-desktop .search-input:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    background: white;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-desktop .slide-in-down {
    animation: slideInDown 0.6s ease-out;
}

.header-desktop .fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.header-desktop .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(25, 118, 210, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@media (max-width: 768px) {
    .header-desktop {
        /* Mobile dropdown */
    }

    .header-desktop .header-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-desktop .logo-main {
        font-size: 28px;
    }

    .header-desktop .nav-menu {
        flex-direction: column;
        position: relative;
    }

    .header-desktop .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        z-index: 1001;
    }

    .header-desktop .nav-menu.mobile-hidden {
        display: none;
    }

    .header-desktop .nav-menu.mobile-visible {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f0f0f0;
        max-height: 400px;
        overflow-y: auto;
    }

    .header-desktop .nav-item {
        width: 100%;
        border-bottom: 1px solid #f8f8f8;
    }

    .header-desktop .nav-item:last-child {
        border-bottom: none;
    }

    .header-desktop .nav-link {
        padding: 16px 20px;
        font-size: 14px;
        justify-content: space-between;
    }

    .header-desktop .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header-desktop .nav-item:hover .dropdown-menu,
    .header-desktop .nav-item.mobile-dropdown-open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header-desktop .dropdown-item {
        padding: 12px 20px;
        border-bottom: 1px solid #e9ecef;
    }

    .header-desktop .search-dropdown {
        left: 0;
        right: 0;
        min-width: auto;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-desktop .container {
        padding: 0 10px;
    }

    .header-desktop .logo-main {
        font-size: 24px;
    }

    .header-desktop .logo-subtitle {
        font-size: 10px;
    }

    .header-desktop .nav-link {
        padding: 14px 15px;
        font-size: 13px;
    }
}

.header-desktop .mobile-menu-toggle {
    display: none;
}

.header-desktop body {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.banner-header-top img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.header-desktop .logo-main img {
    height: 100px;
    filter: drop-shadow(2px 3px 1px #cdcdcd);
}

.header-desktop .nav-item:hover .dropdown-menu {
    display: block;
    overflow: hidden;
}

.search-desck svg {
    width: 25px;
    height: 25px;
    margin-bottom: -5px;
}

.search-desck svg path {
    stroke: #bdbdbd;
}

.header-desktop .nav-item.home .nav-link svg {
    width: 15px;
    height: 15px;
}

.header-desktop .nav-item.home .nav-link svg path {
    stroke: #ffffff;
    fill: #ffffff;
}

.header-desktop .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0fa8591a;
    padding: 5px 15px;
    border-radius: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 3px;
    transition: background 0.3s;
}

.header-desktop .top-bar .contact-info {
    display: flex;
    gap: 20px;
}

.news-ticker {
    overflow: hidden;
    border-radius: 5px;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    overflow: hidden;
}

.ticker-text {
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
    width: calc(100% - 96px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-label {
    background: #0fa859;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

.box-ticker-texts {
    overflow: hidden;
}

.ticker-text ul {
    display: flex;
    align-items: center;
    gap: 0px 20px;
}

.ticker-text ul li a {
    font-weight: 400;
    display: inline-block;
}

.ticker-text ul li {
    list-style: disc;
    margin-left: 20px;
}

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

.search-mobile-icon {
    padding: unset;
}

.search-mobile-icon svg {
    margin-top: 6px;
}

.navbar-collapse.search-mobile {
    position: relative;
    padding: 10px 0px 5px;
    border-top: 1px solid #cdcdcd;
    margin-top: 10px;
}

.navbar-collapse.search-mobile input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
}

.navbar-collapse.search-mobile.active {
    display: block;
}


svg.icon-actives path {
    stroke: #000 !important;
}



.search-mobile-icon.active svg {
    display: none;
}

.search-mobile-icon.active svg.icon-actives {
    display: block;
    height: 30px;
    width: 30px;
    margin-top: 0px;
}

.navbar-collapse.search-mobile button {
    padding: unset;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.navbar-collapse.search-mobile button svg {
    height: 20px;
    width: 20px;
}

.dsearch {
    position: relative;
}

.navbar-collapse.search-mobile {
    display: none;
}

.navbar-collapse.search-mobile .form-inline {
    position: relative;
}

.header-right>* {
    position: relative;
    padding: 5px 9px;
}

.header-right>*:last-child:before {
    content: "";
    display: none;
}

.header-desktop .nav-item:last-child {
    border-right: none;
}

@media(max-width:990px) {
    .blog-news-item-right img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }
}


.header-mobile {
    /* Submenu styles */
    /* Overlay backdrop */
    /* Demo content */
    position: relative;
    z-index: 999999999;
}

.header-mobile .header {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-mobile .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-mobile .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.header-mobile .logo:hover {
    transform: scale(1.05);
}

.header-mobile .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-mobile .search-icon,
.header-mobile .menu-toggle {
    background: rgb(17 167 92);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-mobile .search-icon:hover,
.header-mobile .menu-toggle:hover {
    background: rgb(17 167 92);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header-mobile .menu-toggle.active {
    background: rgb(13 168 91);
    /* transform: rotate(90deg); */
}

.header-mobile .dropdown-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
    padding-top: 0;
}

.header-mobile .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgb(62 62 62 / 10%);
    backdrop-filter: blur(10px);
}

.header-mobile .menu-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.header-mobile .close-btn {
    background: rgb(13 168 91);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: unset;
    font-size: 22px;
}

.header-mobile .close-btn:hover {
    background: rgb(13 168 91);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-mobile .dropdown-menu.show {
    right: 0;
    top: 0;
}

.header-mobile .menu-item {
    padding: 0;
    border-bottom: 1px solid rgb(65 65 65 / 18%);
    background: transparent;
}

.header-mobile .menu-item:last-child {
    border-bottom: none;
}

.header-mobile .menu-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-mobile .menu-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.header-mobile .menu-link:hover:before {
    left: 0;
}

.header-mobile .menu-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.box-item-menu-c1.active~.submenu {
    max-height: unset;
}

.header-mobile .menu-icon {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.header-mobile .menu-text {
    flex: 1;
}

.header-mobile .menu-arrow {
    font-size: 14px;
    opacity: 0.6;
    transition: transform 0.3s ease;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.header-mobile .menu-link:hover .menu-arrow {
    transform: translateX(5px);
}

.header-mobile .submenu {
    background: rgba(0, 0, 0, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.header-mobile .submenu .menu-link {
    padding-left: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.header-mobile .submenu .menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.header-mobile .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.header-mobile .menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.header-mobile .demo-content {
    margin-top: 100px;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

@media (max-width: 480px) {
    .header-mobile .header {
        padding: 12px 15px;
    }

    .header-mobile .logo {
        font-size: 20px;
    }

    .header-mobile .search-icon,
    .header-mobile .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .header-mobile .dropdown-menu {
        top: 100%;
    }

    .header-mobile .menu-link {
        padding: 18px 20px;
        font-size: 15px;
    }
}




.header-mobile .logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-mobile .logo {
    display: block;
}

.header-mobile button.search-icon svg {
    width: 30px;
    height: 27px;
    /* fill: #cdcdcd; */
}

.header-mobile svg path {
    stroke: #ffffff;
}

.menu-logo img {
    height: 50px;
}

.menu-item {
    padding: 12px 24px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #333;
    text-decoration: none;
    border-left: 3px solid #0fa85900;
}

.menu-item span {
    font-size: 16px;
    font-weight: 500;
}

.box-item-menu-c1 {
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    justify-content: space-between;
    /* padding-right: 10px; */
    position: relative;
}

.box-item-menu-c1 svg {
    width: 23px;
    height: 22px;
    fill: #333;
    transition: transform 0.3s ease;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

a.submenu-item {
    padding: 12px 24px 12px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #cdcdcd;
}


.header-mobile .menu-item:hover {
    border-left: 3px solid #0fa859;
}

.submenu.active {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgb(13 168 91 / 14%);
    max-height: 100%;
}

.popup-search {
    position: relative;
    z-index: 999999;
}

.popup-search .search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-search .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-search .search-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-search .search-popup {
    position: fixed;
    top: 14%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90%;
    max-width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-search .close-btn {
    position: absolute;
    top: -9px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 999999;
}

.popup-search .close-icon {
    width: 30px;
    height: 30px;
    color: #646060;
}

.popup-search .popup-search-container {
    position: relative;
    padding: 40px 20px;
}

.popup-search .popup-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: #f9fafb;
    outline: none;
    transition: all 0.2s ease;
}

.popup-search .popup-search-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    padding: unset;
    background: none;
}

.list-images-header {
    display: flex;
    align-items: center;
    gap: 0px 30px;
}

.list-images-header img {
    height: 65px;
    width: 100%;
}





















































.header-mobile .dropdown-menu {
    max-width: 100%;
}

.menu-container {
    /* background: #f4f4f4; */
}

.menu-tabs-container ul.menu-tabs {
    background: #ffffff00;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .05);
}

.menu-tabs-container .clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.menu-tabs-container ul.menu-tabs li:last-child a {
    border-right: none !important;
}


.menu-tabs-container ul.menu-tabs li a.active {
    color: #e53c3d;
    border-bottom: 2px solid #3ca445;
    font-weight: 900;
}

.menu-tabs-container ul.menu-tabs li a {
    display: block;
    float: left;
    width: calc(100% / 3);
    text-align: center;
    font-size: 16px;
    height: 40px;
    color: #999;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.menu-tabs-container .menu-content {
    /* margin-bottom: 24px; */
    /* background: #fff; */
    padding: 15px;
}

#category-tab ul {
    text-align: left;
}


.menu-tabs-container .tab_danhmuc {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    justify-content: space-between;
    grid-row-gap: 15px;
}

#category-tab ul li {
    display: inline-block;
}

.menu-tabs-container div#category-tab ul.category-list li a {
    position: relative;
    display: flex;
    float: left;
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    color: #555;
    line-height: 40px;
    box-sizing: border-box;
    white-space: nowrap;
    font-weight: 600;
    background: #fff;
    align-items: center;
    gap: 0px 10px;
    padding-left: 13px;
}

.menu-tabs-container div#category-tab ul.category-list li a.star:before {
    background-position: 0 0;
}


.menu-tabs-container div#category-tab ul.category-list li a.sprites_new:before {
    width: 16px;
    display: block;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.sprites_new:before {
    background-image: url(https://kenh14cdn.com/mob_images/sprite-k14_2020_v1.png);
    background-size: 380px;
    background-repeat: no-repeat;
}

.k14mth-list {
    padding: 15px 15px;
    background: #fff;
    overflow: hidden;
}

.k14mth-list .container-title {
    padding-left: 13px;
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    position: relative;
    border-left: 3px solid #ff6d19;
    height: 24px;
    margin-bottom: 16px;
    line-height: 24px;
    width: 100vw;
    margin-left: -16px;
}

.k14mth-list .k14mth-cover {
    margin-bottom: 10px;
}

.k14mth-cover {
    display: block;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
}

.k14mth-cover a {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .8) 100%);
}

.k14mth-name {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px 16px;
    color: #fff;
    font-size: 26px;
    color: #fff;
}

.k14mth-list .k14mth-cover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000004a;
}


.header-mobile .search-container {
    height: 38px;
    width: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    /* border: 1px solid #cdcdcd; */
}

.header-mobile .search-container input {
    height: 100%;
    width: 96%;
    padding-left: 3%;
    border: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 17px;
    color: #999;
}

.header-mobile .search-container .btn-search {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(https://kenh14cdn.com/mob_images/search-icon.png) center center #0da85b no-repeat;
    background-size: 16px;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
}

.header-mobile .search-container {
    width: 40px;
}

.header-mobile .search-container input {
    height: 100%;
    width: 96%;
    padding-left: 3%;
    border: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 17px;
    color: #999;
}

form.search-container.active {
    width: 100%;
    border-bottom: 1px solid #0da85b;
}

.search-container-form-mobile {
    display: flex;
    justify-content: right;
}

.header-mobile section.main-section {
    border-top: 2px solid #11a85a;
}

.menu-tabs-container {
    background-image: url(dflag.webp), url(trongdong3.webp);
    background-position: right -70px top -65px, center center;
    background-size: 450px 200px, 500px 500px;
    background-repeat: no-repeat, no-repeat;
}

.header-mobile .footer-container .main-section {
    background: none;
}

.header-mobile .footer-container .main-section {
    padding-top: 0px;
}

div#wrapper_mn {
    background-color: #3aa54847;
    background-image: url(https://c.baothanhhoa.vn/cdn/apps/cms/baothanhhoa/css/dflag.webp), url(https://c.baothanhhoa.vn/cdn/apps/cms/baothanhhoa/css/trongdong3.webp);
    background-position: right -70px top -65px, center center;
    background-size: 450px 200px, 500px 500px;
    background-repeat: no-repeat, no-repeat;
    /* background: #000; */
}

.listqc ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 15px;
    border-radius: 5px;
}

.listqc {
    padding: 15px;
    padding-top: 0px;
}

.menu-container {
    padding-top: 12px;
}

ul.menu-tabs.clearfix {
    padding: 0px 10px;
}

section.main-section {
    padding: 0px 15px;
    padding-bottom: 20px;
}

ul.menu-tabs.clearfix.muckhac {
    margin-bottom: 20px;
}

svg.icon-actives {
    display: none;
}

.menu-tabs-container div#category-tab ul.category-list li a img {
    width: 25px;
    height: 30px;
    object-fit: contain;
}

















.section_nav {
    width: 100%;
    position: relative;
    height: 40px;
    background: rgb(255, 255, 255);
    transition-duration: 250ms;
    transition-property: all;
    transition-timing-function:
        cubic-bezier(0.7, 1, 0.7, 1);
    top: 0px;
    overflow: hidden;
    border-top: 1px solid #3aa546;
    margin-bottom: 8px;
}

.section_nav .wrap-scroll-nav {
    width: 100%;
    height: 100%;
    overflow: scroll hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.section_nav .next-nav {
    cursor: pointer;
    width: 49px;
    height: 24px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDkiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0OSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjI0IiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjxwYXRoIGQ9Ik0yMCAwSDQ0VjI0SDIwVjBaIiBmaWxsPSJ3aGl0ZSIvPgo8Y2lyY2xlIGN4PSIzMiIgY3k9IjEyIiByPSIxMS41IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjRTVFNUU1Ii8+CjxwYXRoIGQ9Ik0zMi45NzUgNi45NzUxTDMxLjkyNSA4LjAyNTFMMzUuMTUgMTEuMjUwMUgyNlYxMi43NTAxSDM1LjE1TDMxLjkyNSAxNS45NzUxTDMyLjk3NSAxNy4wMjUxTDM4IDEyLjAwMDFMMzIuOTc1IDYuOTc1MVoiIGZpbGw9IiM3NTc1NzUiLz4KPHJlY3QgeD0iNDQiIHdpZHRoPSI1IiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iMjAiIHkxPSIyNCIgeDI9IjMuMTc4OTFlLTA3IiB5Mj0iMjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0id2hpdGUiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSJ3aGl0ZSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+CiA=) 0px 0px no-repeat;
    position: absolute;
    top: 5px;
    right: 0px;
}

.section_nav .dmenu,
.dmenu>li {
    list-style-type: none;
}

.section_nav .dmenu {
    vertical-align: middle;
    padding-left: 0px;
    display: flex;
    align-items: center;
}

.section_nav .dmenu li {
    display: table-cell;
}

.section_nav .dmenu li:first-of-type a {
    padding-left: 5px;
}

.section_nav .icon_home.icon_home_v2 {
    position: relative;
    border-right: none;
    line-height: 41px;
    float: none;
}

.section_nav .dmenu li a {
    color: rgb(79, 79, 79);
    position: relative;
    height: 100%;
    display: block;
    padding: 6px 5px;
    white-space: nowrap;
    text-transform: uppercase;
    font: bold 12px / 18px arial !important;
}

.section_nav .icon_home.icon_home_v2 .ico-home {
    background: rgb(228 60 59);
    font-size: 14px;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    line-height: 22px;
    text-align: center;
    display: inline-block;
    padding: 0px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap-scroll-nav::-webkit-scrollbar {}

.section_nav .icon_home.icon_home_v2 .ico-home svg path {
    /* stroke: #e7413b; */
}

.section_nav {
    position: relative;
    overflow: hidden;
    background: #fff;
    /* border-bottom: 1px solid #3aa546; */
}

.wrap-scroll-nav {}

.dmenu {}

.dmenu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

.next-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #fff 60%, transparent);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    z-index: 5;
}

/* .next-nav::after {
    content: '›';
    font-size: 22px;
    font-weight: bold;
    color: #000;
    padding-right: 10px;
    transition: opacity 0.3s;
  }
   */
.next-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.wrap-scroll-nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.wrap-scroll-nav::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    height: 5px;
}

.wrap-scroll-nav::-webkit-scrollbar-thumb {
    background-color: #a6a1a1;
    border: 2px solid #a6a1a1;
}

@media(min-width:990px) {
    .header-mobile {
        display: none;
    }
}

@media(max-width:990px) {
    .header-mobile .header-content a.logo {
        /* position: absolute; */
        left: 50%;
        /* transform: translateX(-50%); */
    }

    .header-mobile .item-images-brand.item-bg-pages {
        margin: 0px;
    }

    header.header-desktop {
        display: none;
    }
}

@media(max-width:1328px) {
    .header-desktop .nav-link {
        padding: 10px 13px;
    }
}

@media(max-width:1280px) {
    .header-desktop .nav-link {
        font-size: 14px;
        padding: 10px 10px;
    }
}

@media(max-width:1150px) {
    .header-desktop .nav-link {
        font-size: 14px;
        padding: 10px 8px;
    }
}

.header {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 9999;
}

.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
