@media (max-width: 1120px) {
    body h1 {
        font-size: 48px;
    }

    .blog-list {
        padding: 3rem 0;
    }

    ul.blog-list-ul a.post-title {
        font-size: 1rem;
    }

    footer .wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }

    footer .wrap button.footer-title {
        width: 100%;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.875rem 0;
        font-size: 0.9375rem;
        margin: 0;
        display: flex;
        justify-content: space-between;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    footer .wrap .footer-title .icon {
        width: 18px;
        height: 18px;
        position: relative;
        flex-shrink: 0;
    }

    footer .wrap .footer-title .icon:before {
        content: "+";
        font-size: 16px;
        position: absolute;
        transition: .3s;
    }

    footer .wrap .footer-accordion.active .icon:before {
        content: "-";
    }

    footer .wrap .footer-content {
        padding-bottom: 1rem;
    }

    footer .wrap .div4 .footer-content {
        display: flex;
        flex-direction: column;
    }

    .blog-detail {
        padding: 3rem 0;
    }

    .blog-list h1 {
        margin-bottom: 2rem;
    }

    .blog-detail h1 {
        font-size: 2rem;
    }

    .blog-detail .content h2,
    body h2 {
        font-size: 1.8rem;
    }

    .blog-detail .content h3 {
        font-size: 1.6rem;
    }

    .blog-detail .content h4 {
        font-size: 1.4rem;
    }

    .blog-detail .content h5 {
        font-size: 1.2rem;
    }

    .blog-detail .content h6 {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    html body {
        padding-top: 63px;
    }

    #header .res_navigation {
        margin-left: 20px;
        display: block;
    }

    .res_navigation .nav-toggle.active {
        display: none;
    }

    #header .main-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1;
        transform: translateX(100%);
        transition: all ease 0.3s;
        margin-right: 0;
        border-top: 1px solid rgba(0 0 0 / 0.2);
        width: 300px;
        display: flex;
        flex-direction: column;
    }

    html.menu-open {
        overflow: hidden;
    }

    html.menu-open #header .main-menu {
        transform: translateX(0%);
    }

    #header .main-menu ul#menu-header-menu {
        flex-direction: column;
        justify-content: left;
        align-items: baseline;
        gap: 0;
        height: 100%;
        overflow-y: auto;
        padding: 0.75rem;
    }

    #header ul#menu-header-menu li {
        width: 100%;
    }

    #header ul#menu-header-menu li a {
        width: 100%;
        font-size: 16px;
        padding: 0.875rem 1rem;
        color: #111827;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 0.5rem;
    }

    #header .mobile-logo {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgb(229, 231, 235);
    }

    #header .menu-header-menu-container {
        height: 100%;
    }

    #header ul#menu-header-menu>li:last-child {
        margin-top: auto;
        padding: 1rem 1.25rem;
        border-top: 1px solid rgb(229, 231, 235);
    }

	#header ul#menu-header-menu li a:hover, 
	#header ul#menu-header-menu li.current-menu-item>a{
        color: #0062A4 !important;
        background: #eff6ff !important;
        border: 0;
    }

    html.menu-open #close-menu {
        display: block;
    }

    body h1 {
        font-size: 39px;
    }

    ul.blog-list-ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body h1 {
        font-size: 32px;
    }

    .recent-post h2 {
        margin-bottom: 1.4rem;
    }

    ul.blog-list-ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .recent-post {
        padding-bottom: 3rem;
    }

    .blog-detail h1,
    .blog-detail .content h2,
    body h2 {
        font-size: 1.7rem;
    }

    .blog-detail .content h3 {
        font-size: 1.4rem;
    }

    .blog-detail .content h4 {
        font-size: 1.2rem;
    }

    .blog-detail .content h5 {
        font-size: 1.1rem;
    }

    .blog-detail .content ul li {
        padding-left: 25px;
    }

    .blog-detail .content ul li::before {
        top: 5px;
        width: 20px;
        height: 20px;
    }
}