@media (min-width: 576px) {
    .section-goals .grid-layout {
        -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .grid-layout {
        -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 50px;
    }

}

@media (min-width: 1025px) {
    .box-3 .col:nth-child(1) .box-3__item .decor,
    .box-3 .col:nth-child(3) .box-3__item .decor,
    .box-3 .col:nth-child(6) .box-3__item .decor,
    .box-3 .col:nth-child(8) .box-3__item .decor {
        opacity: 0;
        pointer-events: none;
    }

    .box-3 .col:nth-child(1) .box-3__item .layer,
    .box-3 .col:nth-child(3) .box-3__item .layer,
    .box-3 .col:nth-child(6) .box-3__item .layer,
    .box-3 .col:nth-child(8) .box-3__item .layer {
        background: linear-gradient(to bottom, rgba(24, 40, 56, 0.68) 0%, rgba(24, 40, 56, 0.68) 35%, rgb(18, 51, 100) 100%);
    }

    .box-3 .col:nth-child(1) .box-3__item .image,
    .box-3 .col:nth-child(3) .box-3__item .image,
    .box-3 .col:nth-child(6) .box-3__item .image,
    .box-3 .col:nth-child(8) .box-3__item .image {
        background-color: var(--primary-color);
        transform: scale(-1) rotate(180deg);
    }

    .box-3 .col:nth-child(1) .box-3__item .image.pseudo-before::before,
    .box-3 .col:nth-child(3) .box-3__item .image.pseudo-before::before,
    .box-3 .col:nth-child(6) .box-3__item .image.pseudo-before::before,
    .box-3 .col:nth-child(8) .box-3__item .image.pseudo-before::before {
        border-top-color: var(--primary-color);
    }

    .box-3 .col:nth-child(1) .box-3__item .image img,
    .box-3 .col:nth-child(3) .box-3__item .image img,
    .box-3 .col:nth-child(6) .box-3__item .image img,
    .box-3 .col:nth-child(8) .box-3__item .image img {
        filter: invert(100%);
    }

    .box-3 .col:nth-child(1) .box-3__item .title,
    .box-3 .col:nth-child(3) .box-3__item .title,
    .box-3 .col:nth-child(6) .box-3__item .title,
    .box-3 .col:nth-child(8) .box-3__item .title {
        color: var(--bs-white);
    }
}

@media (min-width: 1200px) {
    header .container,
    .section-breadcrumb .container {
        max-width: 90%;
    }

}

@media screen and (max-width: 1400px) and (min-width: 1200px) {
    header .container {
        max-width: 98%;
    }

    .header-navigation .navigation-wrap ul {
        gap: 15px !important;
    }
}

@media (max-width: 1199px) {
    .section-swiper.swiper-3d {
        height: 300px;
    }

    .section-hero .hero-content_title {
        font-size: 1.8em;
    }

    header {
        background: linear-gradient(to bottom, #004a87f0, #046abf 95%);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #9dbfd3a8;
    }

    .header-bottom {
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-logo {
        width: 130px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .is-scroll .header-logo {
        width: 120px;
    }

    .is-scroll .header-bottom__wrap {
        padding: 0 !important;
    }

    .header-navigation__close .icon {
        position: relative;
        width: 65px;
        height: 65px;
        transition: var(--transition-default);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-navigation__close > svg path {
        fill: var(--bs-white);
    }

    .header-navigation__close .rotate-logo {
        transition: var(--transition-default);
        transform-origin: center;
        animation: animation-logo 5s infinite linear;
    }

    @keyframes animation-logo {
        100% {
            transform: rotate(360deg);
        }
    }
    .header-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgb(2 11 16 / 93%);
        backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 15;
        transition: var(--transition-default);
    }

    .is-overflow .header-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        z-index: 20;
        right: 0;
        max-width: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(var(--primary-rgb), 0.98);
        padding: 50px;
        -webkit-transition: all .5s ease 0s;
        -moz-transition: all .5s ease 0s;
        -ms-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

    }

    .is-navigation .header-navigation {
        max-width: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-navigation ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        -ms-transition: all .4s ease 0s;
        -o-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
        transition-delay: 0.4s;
        transform: translateX(-30%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-navigation .header-navigation ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .header-navigation ul > li > a,
    .header-navigation ul > li > button {
        color: var(--bs-white);
        font-size: 18px;
        padding: 0;
    }

    .header-navigation ul > li:hover > a, .header-navigation ul > li:hover > button {
        color: var(--bs-gray-100) !important;
    }

    .header-navigation ul > li .number {
        font-size: 15px;
    }

    .header-navigation ul > li > ul {
        position: unset;
        top: unset;
        left: unset;
        width: unset;
        background-color: unset;
        box-shadow: unset;
        backdrop-filter: unset;
        border-radius: 0;
        opacity: unset;
        visibility: unset;
        pointer-events: unset;
        border-left: 1px solid var(--secondary-color);
        padding: 0;
        margin: 15px 0 15px 30px;
    }

    .header-navigation ul > li > ul > li > a {
        font-weight: 400;
        font-size: 16px;
    }

    .header-navigation ul > li > ul > li:hover > a {
        margin-left: 12px;
    }

    .header-navigation ul > li > ul > li > a::before {
        left: 8px;
    }

    .header-navigation ul > li > ul > li + li {
        border-top: 1px solid transparent;
    }

    .header-navigation .menu-child {
        display: none !important;
    }

    .header-search {
        color: var(--bs-white) !important;
    }

    .header-language__mobile {
        height: 65px;
    }

    .header-language__mobile .language-active {
        font-size: 16px;
    }

    .header-language__mobile .language-active .image {
        width: 25px;
        height: 25px;
        border: 2px solid var(--bs-white);
    }

    .header-language__mobile ul {
        width: 180px;
        padding: 5px;
        backdrop-filter: blur(10px);
        border: 1px solid #9dbfd3a8;
        border-radius: 0 0 10px 10px;
        background-color: rgba(255, 255, 255, 0.93);
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header-language__mobile:hover ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-language__mobile ul li + li {
        border-top: 1px solid rgba(157, 191, 211, 0.31);
    }

    .header-language__mobile ul li span.image {
        width: 20px;
        height: 20px;
    }

    .header-language__mobile ul li a {
        color: var(--bs-gray-700);
        padding: 8px 10px;
    }

    .header .tool-search .tool-search_inner {
        background-color: var(--bs-white);
    }

    .header .tool-search .tool-search_inner input {
        color: var(--bs-gray-800) !important;
    }

    .header .tool-search .tool-search_inner input::-webkit-input-placeholder,
    .header .tool-search .tool-search_inner input::-moz-placeholder,
    .header .tool-search .tool-search_inner input:-ms-input-placeholder,
    .header .tool-search .tool-search_inner input::-ms-input-placeholder {
        color: var(--bs-gray-800);
        opacity: .9;
    }

    .header .tool-search .tool-search_inner input::placeholder {
        color: var(--bs-gray-800);
        opacity: .9;
    }

    .tool-search .tool-search_inner button {
        background-color: var(--primary-color);
        color: var(--bs-white);
    }

    .section-hero .hero-content {
        font-size: 13px;
    }

    .button-theme .icon-svg {
        width: 45px;
        height: 45px;
    }

    .count-item {
        font-size: 1em;
    }
}

@media (max-width: 1024px) {
    .section-html .section-heading {
        margin-bottom: 30px;
    }

    .section-heading .heading-title {
        font-size: 1.7em;
    }

    .section-html {
        padding: 30px 0;
    }

    .section-tab .nav-link {
        padding: 8px 22px;
        font-size: 14px;
    }


    .section-breadcrumb__svg {
        width: 80px;
        height: 80px;
    }

    .footer-logo {
        width: 150px;
    }

    .animation-gallery__gird {
        height: 65vh;
    }

    .animation-gallery__gird .gird-column {
        width: calc(100% / 3);
    }

    .section-goals .layers .image-card {
        width: 280px;
        height: 280px;
    }

    .box-3 .col:nth-child(odd) .box-3__item .decor {
        opacity: 0;
        pointer-events: none;
    }

    .box-3 .col:nth-child(odd) .box-3__item .layer {
        background: linear-gradient(to bottom, rgba(24, 40, 56, 0.68) 0%, rgba(24, 40, 56, 0.68) 35%, rgb(18, 51, 100) 100%);
    }

    .box-3 .col:nth-child(odd) .box-3__item .image {
        background-color: var(--primary-color);
        transform: scale(-1) rotate(180deg);
    }

    .box-3 .col:nth-child(odd) .box-3__item .image.pseudo-before::before {
        border-top-color: var(--primary-color);
    }

    .box-3 .col:nth-child(odd) .box-3__item .image img {
        filter: invert(100%);
    }

    .box-3 .col:nth-child(odd) .box-3__item .title {
        color: var(--bs-white);
    }

    .introduce-bg .introduce-heading {
        font-size: 12px;
    }

    .card-document {
        font-size: 14px;
    }

    .card-document .card-document__image {
        height: 280px;
    }

    .page-document .card-document .card-document__image {
        height: 350px;
    }

    .card-document .icon-document {
        width: 65px;
        height: 65px;
    }

}

@media (max-width: 991px) {
    .section-swiper.swiper-3d {
        height: 450px;
    }

    .section-hero .hero-content_title {
        font-size: 1.6em;
    }

    .section-hero .button-theme .icon-svg {
        width: 40px;
        height: 40px;
    }

    .section-breadcrumb {
        padding: 150px 0 30px;
    }

    .section-breadcrumb__title {
        font-size: 1.8em;
    }

    .section-hero .btn-prev, .section-hero .btn-next {
        width: 30px;
        height: 30px;
    }


    .detail-article .section-breadcrumb::after,
    .page-article .section-breadcrumb::after,
    .page-projects .section-breadcrumb::after {
        position: unset;
        content: unset;
        background: unset;
    }

    .detail-article_title.heading-title-2 {
        font-size: 1.5em;
    }

    .tab-category {
        transform: translateY(0);
        background-color: var(--primary-color);

    }

    .tab-category ul,
    .page-gallery .category-gallery > ul,
    .page-video .category-video > ul {
        overflow-x: auto;
    }

    .tab-category ul > li > a {
        font-size: 1em;
    }

    .page-gallery .category-gallery > ul > li,
    .page-video .category-video > ul > li {
        font-size: 1em;
        padding: 9px 20px;
    }

    .detail-project__desc.pseudo-after::after,
    .detail-project__related.pseudo-after::after {
        width: 100vw;
    }


    .detailContent h1 {
        font-size: 1.35em;
    }

    .detailContent h2 {
        font-size: 1.3em;
    }

    .detailContent h3 {
        font-size: 1.25em;
    }

    .detailContent h4 {
        font-size: 1.2em;
    }

    .detailContent h5 {
        font-size: 1.15em;
    }

    .detailContent h6 {
        font-size: 1.1em;
    }

    .section-partner {
        padding: 50px 0 20px;
    }

    .count-item .number-value {
        font-size: 3em;
    }

    .section-land .card-land {
        padding: 9px 12px;
        font-size: 0.95em;
    }

    .section-expense .box-image,
    .section-expense .box-image .image {
        position: relative !important;
        transform: unset !important;
        width: 95%;
        height: unset;
        top: unset;
        border-radius: 0 20px 20px 0;
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .section-box .box-image {
        position: relative !important;
        right: unset !important;
        transform: unset !important;
        width: 100%;
        height: unset;
        top: unset;
        margin-top: 40px;
        margin-left: 40px;

    }

    .box-3__item .image {
        width: 60px;
        height: 60px;
    }

    .box-3__item {
        font-size: 1em;
        padding: 15px !important;
    }

    .box-3__item .image img {
        width: 36px;
        height: 36px;
    }

    .box-3__item .layer {
        padding: 15px !important;
    }

    .animation-gallery__gird .gird-column:nth-child(5) {
        display: none !important;
    }

    .section-document.pseudo-after::after, .section-document.pseudo-after::before {
        height: 100%;
    }

    .section-document .section-heading .heading-title-2,
    .section-document .section-heading .heading-title {
        color: var(--bs-white) !important;
    }

    .page-factory__heading .heading-title-2 {
        font-size: 1.25em !important;
    }

    .page-contact .contact-left {
        padding: 30px 20px;
    }

    .page-contact__logo {
        width: 160px;
    }

    .page-contact .contact-left .name-company {
        font-size: 1.15em;
    }

    .contact-person__item .icon-top {
        width: 45px;
        height: 45px;
        margin-top: -10px;
        margin-left: 4px;
    }

    .page-contact .contact-item, .page-contact .contact-item a {
        font-size: 14px;
    }

    .section-location .location-right {
        border-radius: 20px 20px 0 0;
    }

    .section-location .location-right__top .number {
        font-size: 80px;
    }

    .utilities-wrap {
        flex-wrap: wrap;
    }

    .utilities-wrap .utilities-card {
        width: 100%;
        height: 300px;
        font-size: 14px;
    }

    .utilities-wrap .utilities-card .layer-content .title {
        display: none !important;
    }

    .utilities-wrap .utilities-card .layer-text .content {
        display: block;
    }

    .introduce-bg,
    .animation-gallery__gird {
        height: 50vh;
    }

    .page-intro .section-document.pseudo-after::after {
        height: 100%;
    }

    .footer-bg {
        top: 120px;
        height: 120px;
    }

}

@media (max-width: 767px) {
    .section-swiper.swiper-3d {
        height: 350px;
    }

    .section-heading .heading-title {
        font-size: 1.6em;
    }

    .section-heading .heading-title-2 {
        font-size: 1.5em;
    }

    .card-html .icon {
        width: 60px;
        height: 60px;
    }

    .detail-article__date {
        border-right: 1px solid transparent;
    }


    footer {
        padding-bottom: 65px;
    }

    .scroll-top {
        bottom: 76px;
        right: 11px;
        width: 38px;
        height: 38px;
    }

    .floating-support {
        right: 8px;
        bottom: 121px;
    }

    .floating-support .icon-support {
        width: 45px;
        height: 45px;
        font-size: 1em;
    }

    .floating-support .tool-item__card {
        font-size: 13px;
        min-width: 280px;
        right: 4px;
    }

    .floating-support .tool-item__card ul > li + li {
        margin-top: 6px;
        padding-top: 6px;
    }

    .floating-product {
        font-size: 14px;
        padding: 12px 2px 5px 2px;
    }

    .footer-bottom_collapse {
        padding: 12px 0;
        width: 100%;
    }

    footer .footer-title {
        font-size: 1em;
    }

    .footer-bottom_collapse .footer-title__collapse,
    .box-profile__title {
        pointer-events: auto;
        margin-bottom: 0;
    }

    .footer-bottom_collapse .footer-link.collapse:not(.show) {
        display: none;
    }

    .footer-colapse__wrap .col:not(:last-child) .footer-bottom_collapse {
        border-bottom: 1px solid rgb(241 241 241 / 39%);
    }

    .footer-bottom_collapse .footer-title[aria-expanded='true'] {
        margin-bottom: 12px;
    }

    .box-profile {
        width: 250px;
    }

    .animation-gallery__gird {
        height: 50vh;
    }

    .animation-gallery__gird .gird-column:nth-child(4) {
        display: none !important;
    }

    .modal-land .modal-content .content {
        height: 700px;
    }

    .project-item__title {
        font-size: 1em;
    }
}

@media (max-width: 576px) {

    .section-swiper.swiper-3d {
        height: 270px;
    }

    .section-hero .swiper-pagination {
        bottom: 10px;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .section-hero .hero-content {
        padding: 15px 0 25px;
        background: linear-gradient(to bottom, rgb(37 39 41 / 18%), rgb(26 39 49 / 63%));
    }

    .section-hero .hero-content_title {
        font-size: 1.3em;
    }

    .section-hero .button-theme .icon-svg {
        width: 35px;
        height: 35px;
    }

    .header-navigation {
        padding: 30px;
    }

    .section-breadcrumb {
        padding: 100px 0 20px;
    }

    .section-hero.pseudo-after::after,
    .section-breadcrumb::after {
        content: unset;
        position: unset;
        background: transparent;
    }

    .footer-animation, .section-animation-text {
        animation: scrollRight 8s linear 0s infinite;
    }

    .count-item .number-value {
        font-size: 2.5em;
    }

    .section-goals__count .count-item {
        font-size: 0.85em;
    }

    .section-goals__count .count-item .number-value {
        font-size: 2.5em;
    }

    .box-2 .box-2__item {
        font-size: 14px;
    }

    .box-2 .box-2__item .title {
        font-size: 1.1em;
    }

    .box-3__item {
        font-size: 0.9em;
    }

    .section-goals .layers {
        height: 350px;
    }

    .section-goals .layers .image-card {
        width: 220px;
        height: 220px;
    }

    .modal-land .modal-content .content {
        padding: 20px;
    }

    .page-factory__heading .heading-title-2 {
        font-size: 1.15em !important;
    }

    .introduce-bg .introduce-heading {
        font-size: 10px;
    }

    .section-partner__image {
        max-width: 220px;
    }

}

@media (max-width: 425px) {
    .section-hero .hero-content_title {
        font-size: 1.1em;
    }

    .section-hero .button-theme .icon-svg {
        width: 30px;
        height: 30px;
    }

    .box-3__item .image {
        width: 50px;
        height: 50px;
    }

    .box-3__item .image img {
        width: 30px;
        height: 30px;
    }

    .box-3__item::before {
        padding-top: 125%;
    }
}

@media (max-width: 375px) {
    .section-swiper.swiper-3d {
        height: 240px;
    }

    .article-card__link.pseudo-before::before {
        left: -70%;
        width: 70%;
    }

    .floating-tool .tool-text {
        font-size: 12px;
    }

    .header-navigation ul > li .number {
        font-size: 13px;
    }

    .header-navigation ul > li > a,
    .header-navigation ul > li > button {
        font-size: 16px;
    }
}

