.top_banner_center {
    /* aspect-ratio: 1/0.20833333333; */
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner_title_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.banner_title_wrap .title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}

.banner_title_wrap .sub_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.banner_title_wrap .sub_title .arrow {
    display: flex;
    width: 20px;
    margin-top: 2px;
}

.company_cont {
    padding: 70px 0;
}

.company_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.company_title .title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    word-break: keep-all;
}

.company_title .title color {
    color: var(--main-color);
}

.company_title .desc {
    font-size: 24px;
    font-weight: 400;
    color: #5E5E5E;
    word-break: keep-all;
}

@media screen and (max-width:1023px) {
    .top_banner_center {
        height: 140px;
    }

    .banner_title_wrap {
        gap: 10px;
    }

    .banner_title_wrap .title {
        font-size: 24px;
    }

    .banner_title_wrap .sub_title {
        font-size: 14px;
    }

    .company_cont {
        padding: 32px 0;
    }

    .company_title .title {
        font-size: 22px;
    }

    .company_title .desc {
        font-size: 18px;
    }
}