@media screen and (min-width: 992px) and (max-width: 1320px) {
    .header .header-navigation > ul {
        gap: 22px;
    }

    .header .header-navigation > ul > li > a {
        font-size: 1em;
    }

    .header .header-contact {
        font: var(--text-2);
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --heading-1: normal 600 30px/1.5 var(--font-theme);
        --heading-2: normal 600 28px/1.5 var(--font-theme);
        --heading-3: normal 600 26px/1.5 var(--font-theme);
        --heading-4: normal 600 24px/1.5 var(--font-theme);
        --heading-5: normal 600 22px/1.5 var(--font-theme);
        --heading-6: normal 600 20px/1.5 var(--font-theme);
        --heading-7: normal 600 18px/1.5 var(--font-theme);
        --heading-8: normal 600 15px/1.5 var(--font-theme);
        --heading-9: normal 600 13px/1.5 var(--font-theme);
        --heading-10: normal 600 11px/1.5 var(--font-theme);

        --text-1: normal 400 15px/1.5 var(--font-theme);
        --text-2: normal 400 13px/1.5 var(--font-theme);
        --text-3: normal 400 11px/1.5 var(--font-theme);
    }

    .section-hero .hero-content .hero-content_title {
        font: var(--heading-4);
        margin-bottom: 5px;
    }

    .section-hero .hero-content .hero-content_description {
        font: var(--heading-7);
    }

    .section-tools .card .card-header {
        height: 55px;
        width: 55px;
    }

    .section-gap {
        padding: 30px 0 !important;
    }

    .button-theme {
        font-size: 1em;
        padding: 8px 18px;
    }

    .button-theme.button-theme_circle {
        width: 36px;
        height: 36px;
    }

    .section-heading {
        margin-bottom: 20px !important;
    }

    .section-heading .heading-title {
        font: var(--heading-5);
        font-weight: 700;
    }

    .section-products__button .section-heading {
        margin-bottom: 0 !important;
    }
}

@media screen and (min-width: 992px) {
    .header .header-navigation > ul > li::after {
        position: absolute;
        content: '';
        bottom: 0;
        left: auto;
        right: 0;
        width: 0;
        height: 2px;
        background-color: var(--bs-white);
        z-index: 1;
        transition: var(--transition-default);
        border-radius: 0 5px;
    }

    .header .header-navigation > ul > li:hover::after {
        left: 0;
        right: auto;
        width: 100%;
    }

    .header .header-navigation > ul > li:hover > a {
        color: var(--bs-white);
    }
}

@media screen and (max-width: 991px) {
    .header {
        padding: 0;
    }

    .header .container-fluid {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .header .header-inner {
        padding: 15px 0;
        justify-content: space-between !important;
        width: 100%;
        height: 52px;
    }

    .header .header-logo,
    .header .header-contact {
        position: relative !important;
        top: unset !important;
        left: unset !important;
        transform: unset !important;
    }

    .header .header-contact {
        font-size: 1.225em;
    }

    .header .header-contact span {
        font-size: 0.85em;
    }

    .header .header-hamburger .hamburger-button {
        position: relative;
        width: 20px;
        height: 16px;
        transform: translateY(-1px);
        display: block;
    }

    .header .header-hamburger .hamburger-button > i {
        background-color: var(--bs-white);
        width: 100%;
        height: 2px;
        position: absolute;
        display: block;
        transition: var(--transition-default);
        left: 0;
    }

    .header .header-hamburger .hamburger-button > i:nth-child(1) {
        top: 0;
    }

    .header .header-hamburger .hamburger-button > i:nth-child(2) {
        top: 7px;
    }

    .header .header-hamburger .hamburger-button > i:nth-child(3) {
        bottom: 0;
        width: 15px;
        left: auto;
        right: 0;
    }

    .is-navigation .header .header-hamburger .hamburger-button > i:nth-child(1) {
        transform: rotate(45deg);
        top: 7px;
    }

    .is-navigation .header .header-hamburger .hamburger-button > i:nth-child(2) {
        left: 50%;
        width: 0;
    }

    .is-navigation .header .header-hamburger .hamburger-button > i:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 7px;
        width: 100%;
    }

    .header-overlay {
        background: rgba(0, 0, 0, 0.65);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 12;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: var(--transition-default);
        -o-transition: var(--transition-default);
        transition: var(--transition-default);
        height: 100vh;
    }

    .is-navigation .header-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header .header-navigation {
        position: absolute;
        top: 52px;
        height: 0;
        width: calc(100% + var(--bs-gutter-x));
        max-width: calc(100% + var(--bs-gutter-x));
        background-color: var(--bs-white);
        left: calc(var(--bs-gutter-x) * -0.5);
        right: calc(var(--bs-gutter-x) * -0.5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-default);
    }

    .is-navigation .header .header-navigation {
        height: calc(100vh - 52px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header .header-navigation > ul {
        flex-direction: column;
        gap: 0;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li > a,
    .header .header-navigation > ul > li > button,
    .header .header-navigation > ul > li > ul > li > a {
        color: var(--dark-color);
        width: 100%;
        text-align: left;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 1.15em;
        font-weight: 600;
    }

    .header .header-navigation > ul > li > button[aria-expanded=true] > i {
        transform: rotate(180deg);
    }

    .header .header-navigation > ul > li > a:before {
        display: none;
    }

    .header .header-navigation > ul > li + li {
        border-top: 1px solid var(--black-250);
    }

    .header .header-navigation > ul > li > ul {
        position: static;
        width: 100%;
        min-width: 100%;
        left: unset;
        top: unset;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background-color: transparent;
        border-top: 1px solid var(--black-250);
        box-shadow: none;
        transform: scale(1);
    }

    .header .header-navigation > ul > li > ul > li > a {
        padding-left: 15px;
    }

    .is-navigation {
        height: 100%;
        overflow: hidden;
    }

    .section-hero .hero-content .hero-content_description {
        display: none;
    }

    .slider-products .swiper .swiper-slide {
        transform: scale(1);
    }

    .product-card .card-title {
        font: var(--heading-6);
        color: var(--primary-red);
    }

    .product-card .card-text {
        font: var(--text-2);
    }

    .page-products .product-card,
    .product-card {
        padding: 15px 10px !important;
        border: 1px solid var(--bs-gray-700) !important;
    }

    .product-card .product-price {
        font: var(--heading-8) !important;
    }

    .page-products .product-card .button-theme,
    .product-card .button-theme {
        background-color: var(--dark-color);
        color: var(--bs-white);
        padding: 8px 18px;
        font-size: 0.9em;
    }

    .section-products .product-card .card-button {
        position: unset;
        bottom: unset;
        left: unset;
        transform: unset;
        opacity: 1;
        visibility: visible;
    }

    .section-introduction {
        flex-direction: column;
    }

    .section-introduction .section-heading {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section-introduction .introduction-media {
        position: relative !important;
        width: 100% !important;
        inset: unset !important;
    }

    .button-contact {
        padding: 12px !important;
    }

    .button-contact > i, .button-contact > .icon {
        width: 36px;
        height: 36px;
    }

    .footer .footer-top .footer-list {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer .footer-top .footer-social {
        width: 100%;
        justify-content: center;
    }

    .footer .footer-bottom {
        padding: 30px 0;
    }

    .slider-theme .slider-navigation .button-theme {
        display: none;
    }

    .contact-form .contact-form_item .contact-form_item--input {
        font-size: 1em;
    }

    .page-contact .contact-list .contact-list_item .contact-content .contact-content_value {
        font-size: 1em;
    }

    .page-contact .col-border {
        padding-left: calc(var(--bs-gutter-x) * .5);
        border-left: 0;
    }

    .slider-products_2 .product-card .card-title {
        font: var(--heading-7);
    }

    .article-detail .article-title {
        font-size: 1.75em;
    }

    .page-product_detail .section-information {
        height: auto;
    }

    .page-product_detail .section-detail {
        height: 175vw;
    }
}

@media screen and (max-width: 991px) {
    .section-breadcrumb .breadcrumb-list .breadcrumb .breadcrumb-item {
        display: none;
    }

    .section-breadcrumb .breadcrumb-list .breadcrumb .breadcrumb-item:nth-child(1),
    .section-breadcrumb .breadcrumb-list .breadcrumb .breadcrumb-item:nth-child(2) {
        display: block;
    }

    .section-breadcrumb .breadcrumb-list .breadcrumb .breadcrumb-item > a {
        font-size: 14px;
    }

    .detail-content {
        font-size: 15px;
    }

    .detail-content h1 {
        font-size: 1.45em;
    }

    .detail-content h2 {
        font-size: 1.375em;
    }

    .detail-content h3 {
        font-size: 1.3em;
    }

    .detail-content h4 {
        font-size: 1.225em;
    }

    .detail-content h5 {
        font-size: 1.15em;
    }

    .detail-content h6 {
        font-size: 1.075em;
    }

    .page-articles .article-large .article-card {
        flex-direction: column;
    }

    .page-articles .article-large .article-card .card-header {
        width: 100%;
    }

    .page-articles .article-large .article-card .card-body {
        padding: 15px 0 !important;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 30px;
    }

    .news-card .card-body .card-title {
        font-size: 1.3em;
    }

    .news-list .news-card,
    .news-sidebar .news-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

    .news-list .news-card .card-header,
    .news-sidebar .news-card .card-header {
        width: 33.333333%;
        flex-shrink: 0;
    }

    .news-list .news-card .card-body,
    .news-sidebar .news-card .card-body {
        padding: 0 !important;
    }

    .news-list .news-card .card-body .card-title,
    .news-sidebar .news-card .card-body .card-title {
        font-size: 1.075em;
        margin-bottom: 0;
        --line: 3;
    }

    .news-sidebar .news-card .card-header,
    .news-sidebar .news-card .card-header .ratio,
    .news-list .news-card .card-header,
    .news-list .news-card .card-header .ratio {
        border-radius: 0;
    }

    .news-list .news-card .card-body .card-text {
        display: none;
    }

    .news-sidebar_list .news-sidebar_list__item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-top: 18px;
        margin-top: 18px;
    }

    .news-sidebar_list .news-sidebar_list__item span:not(.ratio) {
        font-weight: 600;
        --line: 3;
    }

    .news-sidebar_list .news-sidebar_list__item span:not(.ratio):before {
        display: none;
    }

    .news-sidebar_list .news-sidebar_list__item .ratio {
        display: block;
        --bs-aspect-ratio: calc(280 / 540 * 100%);
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0px 2px 3px #ccc;
        width: 33.333333%;
        flex-shrink: 0;
    }

    .news-list {
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
    }

    .news-list .row.g-3 {
        --bs-gutter-y: 0;
    }

    .news-list .row.g-3 .col-lg-4 {
        padding-top: 18px;
        margin-top: 18px;
        border-top: 1px solid #e9e9e9;
    }
}

@media screen and (max-width: 768px) {
    .footer .footer-bottom {
        padding: 30px 0 80px;
    }

    .article-detail .article-meta {
        flex-wrap: wrap;
        font: var(--text-2);
        gap: 8px;
    }

    .article-detail .article-social {
        margin-left: 0 !important;
    }

    .footer {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    .product-info__actions-flex .button-contact {
        width: 100% !important;
    }

    .section-tools .card {
        padding: 0 10px 10px 10px;
    }

    .section-tools .card .card-header {
        height: 45px;
        width: 55px;
        font: var(--heading-7) !important;
    }

    .section-tools .card .card-body .card-text {
        font-size: 12px;
    }

    .product-card .card-title {
        font: var(--heading-7);
    }

}

@media (max-width: 425px) {
    .product-info__actions-flex {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .page-products .product-card .button-theme svg {
        display: none !important;
    }

    .section-tools .card .card-body .card-text {
        display: none !important;
    }

    .section-tools .card .card-link {
        color: var(--bs-gray-700) !important;
    }

}

@media screen and (max-width: 345px) {
    .section-heading .heading-title {
        font: var(--heading-6)
    }

}
