/*
    Theme Name: hlhsheetmetal-theme
    Theme URI:
    Description: 自定义主题，适用于WordPress 6.0及以上版本。支持区块编辑器，具有响应式布局和自定义颜色选项。
    Author: liling
    Author URI: // 作者网站（可选）
    Version: 1.0
    License: GNU General Public License v2 or later  // 许可证（推荐GPL）
    License URI: https://www.gnu.org/licenses/gpl-2.0.html  // 许可证链接
    Text Domain: hlhsheetmetal-theme  // 文本域（用于国际化，与主题目录名一致）
    Tags: block-theme, responsive-layout, custom-colors, custom-logo
    Requires at least: 6.0  // 最低WordPress版本要求
    Tested up to: 6.4  // 测试通过的最高WordPress版本
*/

p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-weight: 400;
}

body {
    margin: 0px !important;
    padding: 0px !important;
    background: #ffffff !important;
    font-family: Roboto !important;
}

p {
    font-size: 18px !important;
}

h1,
article h1,
aside h1,
nav h1,
section h1 {
    font-weight: bold;
    font-size: 40px;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 24px;
}

a {
    text-decoration: none !important;
    margin: 0;
}

ul {
    padding-left: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

/* 2. 基础 Flex 容器（核心类） */
.flex {
    display: flex;
}

/* 方向控制 */
.flex-row {
    flex-direction: row;
    /* 默认横向 */
}

.flex-col {
    flex-direction: column;
    /* 纵向 */
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/* 换行控制（解决内容溢出） */
.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
    /* 默认不换行 */
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* 3. 对齐方式（水平 + 垂直）【高频组合】 */
/* 水平对齐（justify-content） */
.justify-start {
    justify-content: flex-start;
    /* 左/上对齐 */
}

.justify-center {
    justify-content: center;
    /* 水平居中 */
}

.justify-end {
    justify-content: flex-end;
    /* 右/下对齐 */
}

.justify-between {
    justify-content: space-between;
    /* 两端对齐（常用：导航左右分布） */
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* 垂直对齐（align-items） */
.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
    /* 垂直居中（常用：单行内容居中） */
}

.align-end {
    align-items: flex-end;
}

.align-baseline {
    align-items: baseline;
}

.align-stretch {
    align-items: stretch;
    /* 项目高度撑满容器 */
}

/* 多行垂直对齐（align-content） */
.align-content-start {
    align-content: flex-start;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

/* 4. 间距与自适应 */
/* 间距（gap）- 按尺寸分类 */
.gap-sm {
    gap: var(--flex-gap-sm);
}

.gap-md {
    gap: var(--flex-gap-md);
}

.gap-lg {
    gap: var(--flex-gap-lg);
}

.gap-xl {
    gap: var(--flex-gap-xl);
}

/* 项目自适应 */
.flex-1 {
    flex: 1;
    /* 等分剩余空间（常用：多列平分） */
}

.flex-auto {
    flex: auto;
}

.flex-none {
    flex: none;
    /* 项目不缩放（固定宽度） */
}

/* 项目缩放控制 */
.flex-grow-1 {
    flex-grow: 1;
    /* 允许放大 */
}

.flex-grow-0 {
    flex-grow: 0;
    /* 禁止放大 */
}

.flex-shrink-1 {
    flex-shrink: 1;
    /* 允许缩小 */
}

.flex-shrink-0 {
    flex-shrink: 0;
    /* 禁止缩小（常用：Logo/图标固定尺寸） */
}

.banner--common {
    margin-top: 124px;
}

/* 默认按钮样式 */
.default-button {
    padding: 10px 30px;
    box-sizing: border-box;
    background: #4E4AD9;
    border-radius: 10px;

    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin-top: 50px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    pointer-events: auto;
    z-index: 1;
    position: relative;
}

.page-content {
    margin-bottom: 60px;
}

/* 导航栏样式 */
.site-header__inner {
    width: 100%;
    box-sizing: border-box;
    transition: 0.25s;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.site-header__top-bar {
    width: 100%;
    height: 50px;
    background: #F7F7F8;
}

.site-header__top-bar .site-header__top-bar-content {
    width: 90%;
    max-width: 1350px;
    height: 100%;
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.site-header__top-bar .site-header__top-bar-info-list {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.site-header__top-bar .site-header__top-bar-info-list img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.site-header__top-bar .site-header__top-bar-info-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.site-header__top-bar .site-header__top-bar-info-item a {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}

.site-header__top-bar .site-header__top-bar-info-item .site-header__info-tel:hover {
    color: #da251d;
    font-weight: 700;
    transform: scale(1.1);
    transition: .25s;
}

.site-header__bar {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.site-header__logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.site-header__nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 74px;
    gap: 15px;
}

.site-header__nav .menu>ul {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.site-header__nav .menu .page_item,
.site-header__nav .menu .menu-item {
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    position: relative;
}

.site-header__nav .menu .page_item>a,
.site-header__nav .menu .menu-item>a {
    display: block;
    min-width: 100px;
    padding: 0 25px;
    box-sizing: border-box;
    text-align: center;
    height: 46px;
    line-height: 46px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    position: relative;
}

.site-header__nav .menu .page_item:hover>a,
.site-header__nav .menu .menu-item:hover>a {
    color: #E0191E;
}

.site-header__nav .menu .page_item.current_page_parent>a,
.site-header__nav .menu .menu-item.current_page_parent>a {
    color: #E0191E;
}

.site-header__nav .menu .page_item>.children,
.site-header__nav .menu .menu-item>.sub-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 255px;
    background: #F5F5F5;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header__nav .menu .page_item>.children::before,
.site-header__nav .menu .menu-item>.sub-menu::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: transparent;
}


.site-header__nav .menu .page_item>.children .page_item,
.site-header__nav .menu .menu-item>.sub-menu .menu-item {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
}

.site-header__nav .menu .page_item>.children .page_item>a,
.site-header__nav .menu .menu-item>.sub-menu .menu-item>a {
    height: auto;
    line-height: normal;
    padding: 14px 15px;
    margin: 0px 5px;
    display: block;
    box-sizing: border-box;
    background: transparent;
    color: #333333;
    position: relative;
}

.site-header__nav .menu .page_item>.children .page_item:last-child a::after,
.site-header__nav .menu .menu-item>.sub-menu .menu-item:last-child a::after {
    display: none;
}

.site-header__nav .menu .page_item>.children .page_item:hover a::before,
.site-header__nav .menu .menu-item>.sub-menu .menu-item:hover a::before {
    display: none;
}

.site-header__nav .menu .page_item>.children .page_item:hover a,
.site-header__nav .menu .menu-item>.sub-menu .menu-item:hover a {
    background: #E0191E;
    color: #FFFFFF;
}

.site-header__nav .menu .page_item>.children .page_item.current_page_item a,
.site-header__nav .menu .menu-item>.sub-menu .menu-item.current-menu-item a {
    background: #F3DFDF;
    color: #E0191E;
}

.site-header__nav .menu .page_item:hover>.children,
.site-header__nav .menu .menu-item:hover>.sub-menu {
    display: block;
}

.site-info {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center
}

.site-info .site-info-item {
    display: flex;
    align-items: center;
    margin-right: 15px
}

.site-info .site-info-item a {
    color: #ffffff;
}

.site-info .site-info-item img {
    width: 20px;
    height: 20px;
    margin-right: 8px
}

.site-header__nav .request-button {
    width: 90%;
    margin: 20px auto;
    display: none;
}

.site-mobile-header {
    width: 100%;
    display: none;
    position: relative;
}

.site-mobile-header .site-mobile-header__wrapper {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-mobile-header .site-mobile-header__logo {
    width: 120px;
    display: flex;
    align-items: center;
}

.site-mobile-header .site-mobile-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header #fold-btn {
    width: 50px;
    height: 100%;
    font-size: 21px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: block;
    border: none;
    background: transparent;
}

.site-header #close-btn {
    width: 50px;
    height: 100%;
    font-size: 21px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: none;
    border: none;
    background: transparent;
}

.site-header .site-mobile-header__nav {
    width: 100%;
    min-width: 330px;
    position: absolute;
    top: 50px;
    background-color: #222222;
    height: calc(100vh - 50px);
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    padding-bottom: 0.8rem;
    transition: 0.5s;
    z-index: 111111;
    display: none;
}

.site-header .site-mobile-header__nav .menu-main_nav-container {
    height: 60%;
}

.site-header .site-mobile-header__nav .menu {
    height: 100%;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.site-header .site-mobile-header__nav .menu>ul,
.site-header .site-mobile-header__nav #main_nav {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header .site-mobile-header__nav .menu>ul>.page_item,
.site-header .site-mobile-header__nav #main_nav>.menu-item {
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #666666;
}

.site-header .site-mobile-header__nav .menu>ul>.page_item>a,
.site-header .site-mobile-header__nav #main_nav>.menu-item>a {
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    display: block;
}

.site-header .site-mobile-header__nav .menu>ul>.page_item>a:hover,
.site-header .site-mobile-header__nav #main_nav>.menu-item>a:hover {
    color: #E0191E;
}

/* .site-header .site-mobile-header__nav .page_item_has_children>ul {
    display: none;
} */

.site-header .site-mobile-header__nav .page_item_has_children>ul>.page_item>a,
.site-header .site-mobile-header__nav .menu>.menu-item>.sub-menu>.menu-item>a {
    height: 45px;
    line-height: 45px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    display: block;
    padding-left: 8px;
}

.site-header .site-mobile-header__nav .page_item_has_children>ul>.page_item>a:hover,
.site-header .site-mobile-header__nav .menu>.menu-item>.sub-menu>.menu-item>a:hover {
    color: #E0191E;
}

.site-header .site-mobile-header__nav .request-button {
    width: 90%;
    max-width: 400px;
    margin: 20px auto 0;
    display: block;
}

.site-header .site-header__side-info .request-button {
    width: 180px;
    height: 50px;
    line-height: 50px;
    background: #E0191E;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 0px;
}

/* 底部 */
.footer-inner {
    background: #F7F7F8;
    padding: 30px 0px;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-inner .footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-inner .footer-content .footer-content__inner {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-inner .footer-content .footer-content__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-inner .footer-content .footer-divider__line {
    width: 100%;
    height: 1px;
    background: rgb(102, 102, 102);
    margin: 20px 0px;
    display: none;
}

.footer-inner .footer-content .footer-content__inner.footer-content__inner-second {
    gap: 10px;
}

.footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer-logo {
    display: none;
}

.footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer__links {
    display: none;
}

.footer-inner .footer-content .footer-codes {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-right: 30px;
}

.footer-inner .footer-content .footer-codes .footer-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #333333;
}

.footer-inner .footer-content .footer-codes .footer-code img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    overflow: hidden;
}

.footer-inner .footer-content .footer-logo {
    width: 150px;
    flex-shrink: 0;
}

.footer-inner .footer-content .footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-inner .footer-content .footer-content__item {
    gap: 10px;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}

.footer-inner .footer-content .footer-content__item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-inner .footer-content .footer-content__item span {
    word-break: break-word;
}

.footer-inner .footer-content .footer-content__item a {
    color: #333333;
}

.footer-inner .footer-content .footer-content__item a:hover {
    color: #da251d;
}

.footer-content__right .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-content__right .menu>ul,
.footer-content__right #footer_nav {
    display: flex;
    align-items: flex-start;
    gap: 15px
}

.footer-content__right .menu>ul .page_item,
.footer-content__right #footer_nav .menu-item {
    width: 198px;
    display: flex;
    flex-direction: column;
}

.footer-content__right .menu>ul>.page_item>a,
.footer-content__right #footer_nav>.menu-item>a {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin-bottom: 25px;
}

.footer-content__right .menu>ul .page_item .children .page_item>a,
.footer-content__right #footer_nav .menu-item>.sub-menu .menu-item>a {
    width: 200px;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 35px;
    cursor: pointer;
    margin: 0;
}

.footer-content__right .menu>ul .page_item .children .page_item>a:hover,
.footer-content__right #footer_nav .menu-item>.sub-menu .menu-item>a:hover {
    color: #e0191e;
}

.footer-content__right #footer_nav .menu-item>.sub-menu .menu-item.current-menu-item a {
    color: #e0191e;
}

/* .footer-content__right .menu>ul>.page_item:first-child,
.footer-content__right #footer_nav .menu-item:first-child {
    display: none !important;
} */

.site-footer .footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
}

.site-footer .footer-content__title {
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    color: rgb(51, 51, 51);
    margin-bottom: 5px;
}

.site-footer .footer-content__item {
    font-size: 18px;
    color: rgb(51, 51, 51);
    line-height: 28px;
}


.site-footer .footer-share {
    width: 100%;
    height: 62px;
    line-height: 62px;
    background: #ffffff
}

.site-footer .footer-share__container {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.site-footer .footer-social__link {
    display: flex;
    align-items: center
}

.site-main {
    margin-top: 0px;
}

.request-button {
    width: 300px;
    height: 60px;
    line-height: 60px;
    background: #ff591b;
    border-radius: 8px 0px 8px 0px;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin-top: 50px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    pointer-events: auto;
    z-index: 1;
    position: relative;
    border: none;
}

/* 404 */
.content-area {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-area .page-title {
    margin-bottom: 20px;
}

.content-area .page-content .btn {
    padding: 8px 25px;
    box-sizing: border-box;
    background: #4E4AD9;
    border-radius: 10px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

/* 所有区块的外层容器，统一设置上下间距 */
.wp-block {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    max-width: 1200px !important;
}

/* 1. 段落区块：修改字体、行高、颜色 */
.wp-block-paragraph {
    font-family: 'Roboto';
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1rem;
}

.wp-block-heading {
    font-weight: 600;
    color: #222222;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* H1标题 */
.wp-block-heading-h1 {
    font-size: 40px;
    border-bottom: 2px solid #4E4AD9;
    padding-bottom: 0.5rem;
}

/* H2标题 */
.wp-block-heading-h2 {
    font-size: 32px;
}

.wp-block-image img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none !important;
    max-width: 100%;
    height: auto;
}

/* 按钮区块：定制按钮样式 */
.wp-block-button__link {
    background-color: #4E4AD9;
    color: #ffffff !important;
}

/* 按钮hover效果 */
.wp-block-button__link:hover {
    background-color: #3b3ab0 !important;
}

.wp-block.custom-block-style {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #4E4AD9;
    border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 760px) {

    h1,
    article h1,
    aside h1,
    nav h1,
    section h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 25px !important;
    }

    p {
        font-size: 16px !important;
    }

    .banner--common {
        margin-top: 0px;
    }

    .site-main {
        margin-top: 50px;
    }

    .site-header .site-header__inner {
        background: #000000 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .site-header .site-header__top-bar,
    .site-header .site-header__bar {
        display: none;
    }

    .site-header .site-mobile-header {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        margin: 0px auto;
    }

    .footer-inner .footer-content .footer-content__left {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .footer-inner .footer-content .footer-codes {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-content__item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-content__right {
        width: 100%;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-divider__line {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second {
        width: 90%;
        padding-top: 20px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer-logo {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer__links {
        display: block;
    }

    .footer-content__right .menu {
        width: 100%;
    }

    .footer-content__right .menu>ul,
    .footer-content__right #footer_nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
    }

    .site-footer .footer-share__container {
        flex-wrap: wrap;
        padding: 10px 0;
        gap: 10px;
    }

    .site-footer .footer-share {
        line-height: normal;
    }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
    .banner--common {
        margin-top: 0px;
    }

    .site-main {
        margin-top: 50px;
    }

    .site-header .site-header__inner {
        background: #000000 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .site-header .site-header__top-bar,
    .site-header .site-header__bar {
        display: none;
    }

    .site-header .site-mobile-header {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        margin: 0px auto;
    }

    .footer-inner .footer-content .footer-content__left {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .footer-inner .footer-content .footer-codes {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-content__right {
        width: 100%;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-divider__line {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second {
        width: 400px;
        padding-top: 20px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer-logo {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer__links {
        display: block;
    }

    .footer-content__right .menu {
        width: 100%;
    }

    .footer-content__right .menu>ul,
    .footer-content__right #footer_nav {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
    .site-branding img {
        width: 150px;
    }

    .site-header__nav .menu>ul {
        gap: 10px;
    }

    .site-header__nav .menu .page_item>a,
    .site-header__nav .menu .menu-item>a {
        min-width: 80px;
        padding: 0 15px;
        font-size: 16px;
    }

    .site-info .site-info-item {
        margin-right: 8px;
    }

    .site-info .site-info-item span,
    .site-info .site-info-item a {
        font-size: 12px;
    }

    .site-info .request-button {
        padding: 6px 10px;
        font-size: 16px;
    }

    .footer-inner .footer-content .footer-content__inner {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        margin: 0px auto;
    }

    .footer-inner .footer-content .footer-content__left {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .footer-inner .footer-content .footer-codes {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-content__right {
        width: 100%;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-divider__line {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second {
        width: 400px;
        padding-top: 20px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer-logo {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer__links {
        display: block;
    }
}

@media screen and (min-width: 1350px) and (max-width: 1440px) {
    .footer-inner .footer-content .footer-content__inner {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        margin: 0px auto;
    }

    .footer-inner .footer-content .footer-content__left {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .footer-inner .footer-content .footer-codes {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-content__right {
        width: 100%;
        justify-content: center;
    }

    .footer-inner .footer-content .footer-divider__line {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second {
        width: 400px;
        padding-top: 20px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer-logo {
        display: block;
    }

    .footer-inner .footer-content .footer-content__inner.footer-content__inner-second .footer-content__left .footer__links {
        display: block;
    }
}


@media screen and (min-width: 1440px) {}