.about_con{
    position: relative;
}
    .about_info{
        background: url(../../assets/images/bg_info_bw.png) no-repeat center bottom;
        background-size: 100% auto;
        width: calc(100% + 40px);
        position: relative;
        left: -20px;
        padding: 0 20px;
    }
        .info_top{
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 7rem 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
            .info_top .top_l{
                position: relative;
            }
            .info_top h1{
                font-size: 24px;
            }
            .info_top .top_r div{
                margin-left: 20%;
            }
            .info_top img.card{
                width: 90%;
            }
            .info_top img.img_chip.chip1{
                bottom: auto;
                top: -15%;
                width: 15%;
            }
            .info_top img.img_chip.chip2{
                bottom: 5%;
                top: auto;
                width: 25%;
                left: 80%;
            }
        .info_detail{
            position: relative;
            padding-top: 12rem;
        }
            .info_detail > img{
                width: 100%;
            }
            .info_detail .highlight_box{
                position: absolute;
                font-size: 46px;
                width: 250px;
                left: 50%;
                margin-left: -125px;
                top: 0;
            }
                .info_detail .highlight_box > div{
                    font-weight: bold;
                }
                .info_detail .highlight_box > div:not(:first-child){
                    font-weight: normal;
                    font-size: 32px;
                }
            .info_detail .sub_box{
                display: grid;
                grid-template-columns: 2fr 3fr;
                padding-bottom: 5rem;
            }
                .info_detail .sub_box .sub_l{
                    padding-right: 5%;
                }
            
    .career_box{
        position: relative;
        padding: 7rem 0;
        display: grid;
        grid-template-columns: 2fr 1fr 2fr;
        align-items: center;
    }
        .career_l{
            padding-right: 10%;
        }
            .career_l h2{
                font-size: 46px;
            }
                .career_l h2 i{
                    font-size: 24px;
                    display: block;
                    font-style: normal;
                }
            .career_m img{
                width: 80%;
            }
        .career_r{
            padding-left: 10%;
        }
            .career_r a{
                display: inline-block;
                padding: 10px 20px;
                border-radius: 5px;
                font-weight: bold;
                text-align: center;
                text-decoration: none;
                color: var(--white);
                border: 2px solid #fff;
                background-color: var(--blue-btn);
                transition: background-color 0.3s, border-color 0.3s;
                position: relative;
                text-decoration: none !important;
            }
            .career_r a:hover{
                background-color: var(--blue);
            }
    .news_box{
        position: relative;
    }
        .news_box > h2{
            font-size: 46px;
            text-align: center;
            text-transform: uppercase;
            padding: 1rem 0;
        }
        .news_list{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            padding: 3rem 0;
            margin-bottom: 5rem;
        }
            .news_list .news_item{
                position: relative;
                overflow: hidden;
                box-shadow: 0 0 10px rgba(0,0,0,0.1);
                transition: box-shadow 0.3s;
            }
            .news_list .news_item:hover{
                box-shadow: 0 0 20px rgba(0,0,0,0.2);
            }
                .news_list .news_item a{
                    text-decoration: none;
                    color: var(--white);
                }
                .news_list .news_item a:hover, .news_list .news_item a:hover .news_content h3{
                    color: var(--blue);
                }
                .news_list .news_item img{
                    width: 100%;
                    height: 200px;
                    object-fit: cover;
                    border-radius: 10px;
                }
                    .news_list .news_content p{
                        font-size: 14px;
                        margin-top: 15px;
                    }
                    .news_list .news_content h3{
                        font-size: 22px;
                        text-transform: uppercase;
                        transition: all 0.3s;
                    }
@media (max-width: 768px) {
    .info_detail{
        padding-top: 22rem;
    }
    .news_list, .career_box, .info_top, .info_detail .sub_box{
        grid-template-columns: 1fr;
    }
    .info_detail .sub_box{
        margin-top: 3rem;
    }
    .info_top img.card{
        width: 100%;
        margin-bottom: 2rem;
    }
    .info_top img.img_chip.chip1{
        bottom: auto;
        top: -20%;
        left: 10%;
        width: 20%;
    }
    .info_top img.img_chip.chip2{
        bottom: 10%;
        top: auto;
        width: 20%;
        left: 80%;
    }
    .info_top .top_r div{
        margin-left: 0;
    }
    .career_l h2, .career_m{
        text-align: center;
    }
    .career_r{
        text-align: center;
        padding-right: 10%;
        margin-top: 10%;
    }
}