main.works {
    padding-top: 173px;

    .section-title {
        font-size: 74px;
    }

    .inner_box {
        max-width: 1200px;
        margin: 90px auto;
        display: flex;
        justify-content: space-between;

        .left_box {
            flex: 0 0 18%;
            position: relative;

            .left_box_menu {
                display: flex;
                flex-direction: column;

                span {
                    display: flex;
                    margin-bottom: 41px;
                    font-size: 20px;
                    font-weight: bold;
                    line-height: 1.2;
                    cursor: pointer;
                }

                span.action {
                    color: #EB6400;
                }


            }
        }

        .right_box {
            flex: 0 1 75%;
            min-width: 0;

            /* Header */
            .header {
                background-color: #fff;
                text-align: left;
                font-size: 30px;
                margin-bottom: 70px;
                .header-note {
                    font-size: 16px;
                    margin-top: 20px;
                    line-height: 1.4;
                }
            }

            .main-title {
                font-size: 28px;
                color: #1a1a1a;
                font-weight: 600;
                letter-spacing: 0px;
            }



            /* Hero Image */
            .hero-image {
                width: 100%;
                overflow: hidden;
                max-height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #fff;
                /* padding: 20px; */
            }

            .hero-image img {
                width: 100%;
                height: auto;
                object-fit: cover;
                display: block;
            }

            /* Timeline Section */
            .timeline-section {
                padding: 70px 0px 0px;
            }

            .section-title {
                font-size: 32px;
                color: #333;
                margin-bottom: 40px;
                font-weight: 900;
                text-align: left;
            }

            .department-list {
                /* color: #000000; */
                font-size: 18px;
                margin-bottom: 60px;
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                letter-spacing: 1px;
            }

            .department-list span {
                white-space: nowrap;
                font-weight: 900;
            }

            .intro-text {
                font-size: 18px;
                color: #555;
                line-height: 1.9;
                margin-bottom: 70px;
                padding: 0;
                background-color: transparent;







                span {
                    font-size: 14px;
                }
            }

            /* Timeline */
            .timeline {
                position: relative;
                padding-left: 0;
            }

            .timeline-item {
                display: grid;
                grid-template-columns: 140px 40px 1fr;
                gap: 20px;
                margin-bottom: 35px;
                position: relative;
            }

            .timeline-item:not(:last-child)::before {
                content: '';
                position: absolute;
                left: 170px;
                top: 28px;
                bottom: -43px;
                width: 3px;
                background-color: #EB6400;
            }

            .time-label {
                font-size: 24px;
                font-weight: 700;
                color: #EB6400;
                text-align: center;
                padding-top: 5px;
            }

            .timeline-dot {
                width: 24px;
                height: 24px;
                background-color: #EB6400;
                border-radius: 50%;
                /* border: 3px solid #fff; */
                /* box-shadow: 0 0 0 2px #EB6400; */
                margin-top: 8px;
                position: relative;
                z-index: 2;
            }

            .timeline-content {
                padding: 10px 0;
            }

            .timeline-content.gray {
                background-color: #F4F4F5;
                padding: 30px;
                margin-bottom: 30px;
            }

            .activity-title {
                font-size: 24px;
                font-weight: 700;
                color: #000;
                margin-bottom: 28px;
            }

            .activity-description {
                font-size: 18px;
                color: #000;
                line-height: 2;
                margin-bottom: 15px;
            }

            /* Highlight Box */
            .highlight-box {
                display: flex;
                gap: 12px;
                background-color: #fff;
                border: 2px solid #EB6400;
                padding: 19px;
                margin-top: 15px;
                align-items: flex-start;
                position: relative;



                .highlight-text {
                    display: flex;
                    align-items: center;
                    gap: 20px;

                    div {
                        flex: 0 0 16%;
                        text-align: center;

                        img {
                            max-width: 70%;
                        }
                    }

                    p {
                        flex: 0 0 80%;
                        font-size: 20px;
                        color: #EB6400;
                        font-weight: bold;
                        line-height: 1.7;
                    }
                }
            }

            .highlight-box::before {
                content: '';
                position: absolute;
                top: -16px;
                left: 30px;
                width: 0;
                height: 0;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 16px solid #EB6400;
            }

            .highlight-box::after {
                content: '';
                position: absolute;
                top: -13px;
                left: 31px;
                width: 0;
                height: 0;
                border-left: 9px solid transparent;
                border-right: 9px solid transparent;
                border-bottom: 15px solid #fff;
            }




            /* CTA Section */
            .cta-section {
                /* padding: 0px 20px 0px; */
                text-align: center;
            }

            .cta-button {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                background-color: #1a1a1a;
                color: #fff;
                text-decoration: none;
                padding: 18px 10px;
                border-radius: 10px;
                font-size: 24px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                height: 140px;

                .micicon {
                    flex: 0 0 4%;

                    img {
                        max-width: 100%;
                    }
                }

                .ctatext {
                    flex: 0 0 28%;
                    text-align: center;
                }

                .ctaarrow {
                    flex: 0 0 4%;










                    img {
                        max-width: 100%;
                    }
                }
            }

            .cta-button:hover {
                background-color: #333;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            }


        }
    }
}


main.works.scrollfix .left_box_menu, main.numbers.scrollfix .left_box_menu {
    position: fixed;
    top: 106px;
    width: 216px;
}



















main.numbers {
    padding-top: 173px;

    .section-title {
        font-size: 74px;
    }

    .inner_box {
        max-width: 1200px;
        margin: 90px auto;
        display: flex;
        justify-content: space-between;

        .left_box {
            flex: 0 0 18%;
            position: relative;

            .left_box_menu {
                display: flex;
                flex-direction: column;

                span {
                    display: flex;
                    margin-bottom: 41px;
                    font-size: 20px;
                    font-weight: bold;
                    line-height: 1.2;
                    cursor: pointer;
                }

                span.action {
                    color: #EB6400;
                }


            }
        }

        .right_box {
            flex: 0 0 75%;
            max-width: 75%;
            box-sizing: border-box;

            h2 {
                font-size: 36px;
                font-weight: 700;
                letter-spacing: 4px;
                margin-bottom: 50px;
            }

            h3 {
                font-size: 28px;
                font-weight: 500;
                font-weight: 700;
                display: flex;
                justify-content: space-between;
                margin-bottom: 40px;

                span {
                    display: block;
                    font-size: 14px;
                    font-weight: normal;
                    margin-top: 20px;
                }
            }

            .numbersflex {
                display: flex;
                max-width: 100%;
                justify-content: space-between;

                .numbersflex_rows {
                    display: flex;
                    flex-direction: column;
                    max-width: 49.5%;
                    flex: 0 0 49.5%;



                    .numbersflex_box {
                        max-width: 100%;
                    }
                }
            }

            .numbersflex.col3 {
                display: flex;

                .numbersflex_box {
                    flex: 0 0 32.8%;
                    max-width: 32.6%;
                    height: 415px;
                }
            }

            .numbersflex_box {
                background-color: #F4F4F5;
                box-sizing: border-box;
                /* min-height: 340px; */
                padding: 26px;
                margin-bottom: 8px;
                width: 100%;
                height: auto;
                position: relative;

                h4 {
                    font-size: 20px;
                    border-bottom: 1px solid #EB6400;
                    display: inline;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                span {
                    font-size: 14px;
                    text-align: right;
                    display: block;
                    position: absolute;
                    right: 20px;
                    bottom: 20px;
                }
            }

            .numbersflex_box.excla::before {
                position: absolute;
                content: "";
                width: 40px;
                height: 40px;
                background-image: url(assets/img/works/exclamationmark.png);
                background-size: cover;

                top: 15px;
                right: 20px;
            }


            .nb1 {
                img {
                    max-width: 293px;
                    margin: 70px 0;
                }
            }

            .nb2 {
                img {
                    max-width: 236px;
                    margin: 40px 0;
                }
            }

            .nb3 {
                img {
                    width: 100%;
                    max-width: 363px;
                    margin: 35px 0 20px;
                }
            }

            .nb4 {
                img {
                    width: 100%;
                    max-width: 356px;
                    margin: 60px 0 30px;
                }
            }

            .nb5 {
                img {
                    width: 100%;
                    max-width: 235px;
                    margin: 50px 0 0px;
                }
            }

            .nb6 {
                img {
                    width: 100%;
                    max-width: 243px;
                    margin: 110px 0 0;
                }
            }

            .nb7 {
                img {
                    width: 100%;
                    max-width: 202px;
                    margin: 80px 0 0;
                }
            }

            .nb8 {
                max-width: 49.5%;

                img {
                    width: 100%;
                    max-width: 188px;
                    margin: 66px 0 0;
                }
            }

            .nb9 {
                max-width: 49.5%;

                img {
                    width: 100%;
                    max-width: 224px;
                    margin: 21px 0;
                }
            }

            .nb10 {
                max-width: 49.5%;

                img {
                    width: 100%;
                    max-width: 230px;
                    margin: 33px 0;
                }
            }

            .nb11 {
                max-width: 49.5%;

                img {
                    max-width: 197px;
                    margin: 43px 0;
                }
            }

            .nb12 {
                flex-grow: 1;

                div {
                    display: block;
                    text-align: center;
                }

                img {
                    width: 100%;
                    max-width: 702px;
                    margin: 35px 0;
                }
            }

            .nb13 {
                img {
                    width: 100%;
                    max-width: 724px;
                    margin: 80px 0;
                }
            }

            .nb14 {
                max-width: 49.5%;

                img {
                    max-width: 150px;
                    margin: 44px 0;
                }
            }

            .inner_main_cate2 {
                margin-top: 50px;
            }

            .inner_main_cate3 {
                margin-top: 50px;
            }

            #anc2 {
                margin-top: 100px;
            }

            #anc3 {
                margin-top: 80px;
            }
        }
    }
}








main.numbers, main.works {
    .conv {
        .f_wrap {
            display: flex;
            justify-content: center;
            gap: 36px;
            margin-top: 80px;
            max-width: 100%;

            a:first-child {
                background-color: #EB6400;
            }

            a:last-child {
                background-color: #000;
            }

            a {
                color: white;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 157px;
                max-width: 574px;
                border-radius: 10px;
                background-image: url(assets/img/ic_target.png);
                background-position: 97% 10%;
                background-size: 20px;
                background-repeat: no-repeat;
                width: 40vw;
                position: relative;
                overflow: hidden;
                transition: all 0.3s ease;
                /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */

                span:nth-child(1) {
                    font-size: 26px;
                    font-weight: 700;
                    margin-bottom: 8px;
                    position: relative;
                    z-index: 2;
                }

                span:nth-child(2) {
                    font-size: 65px;
                    font-weight: 900;
                    font-family: "Lato", sans-serif;
                    letter-spacing: 5px;
                    position: relative;
                    z-index: 2;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                    transition: left 0.7s ease;
                }

                &:hover {
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                    transform: translateY(-5px);

                    &::before {
                        left: 100%;
                    }
                }
            }
        }
    }
}




@media only screen and (max-width: 1100px) {
    main.works {
        .inner_box {
            .right_box {
                .highlight-box {
                    .highlight-text {
                        flex-direction: column;

                        div {
                            img {
                                max-width: 70px;
                            }
                        }

                    }
                }

                .cta-button {
                    .ctatext {
                        min-width: 270px;
                    }
                }
            }
        }
    }

        main.numbers, main.works {
        .conv {
            margin-top: 30px;
            padding: 0;

            .f_wrap {
                margin-top: 0;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                
                

                a {
                    width: 100%;
                    height: 80px;
                    background-size: 13px;

                    span:nth-child(1) {
                        font-size: 14px;
                    }

                    span:nth-child(2) {
                        font-size: 31px;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 768px) {

    main.works {
        padding-top: 25vw;
        .section-title {
            font-size: 36px;
            font-size: 9.6vw;
            letter-spacing: 2px;
        }

        .mb_menu {
            margin-bottom: 30px;


            span {
                display: inline-block;
                margin-bottom: 27px;
                font-size: 16px;
                font-size: 4.5vw;
                font-weight: bold;
                line-height: 1.2;
                cursor: pointer;
                background-image: url(assets/img/ic_arrow_down.png);
                background-repeat: no-repeat;
                background-position: 100% center;
                background-size: 15px;
                padding-right: 30px;
            }
        }

        .inner_box {
            margin-top: 60px;

            .left_box {
                display: none;
                margin-bottom: 50px;
            }

            .right_box {
                flex: 0 0 100%;
                max-width: 100%;

                .main-title {
                    font-size: 18px;
                    font-size: 4.8vw;
                    line-height: 1.5;
                }

                .header {
                    margin-bottom: 40px;
                }

                .timeline-section {
                    padding: 40px 0 0;
                }

                .hero-image {
                    margin: 0 -7.4vw;
                    width: calc(100% + 14.8vw);
                }

                .section-title {
                    font-size: 22px;
                    font-size: 5.85vw;
                    margin-bottom: 25px;
                }

                .department-list {
                    font-size: 14px;
                    font-size: 3.7334vw;
                    margin-bottom: 15px;
                    letter-spacing: 0px;
                }

                .intro-text {
                    font-size: 13px;
                    margin-bottom: 10px;
                }

                .time-label {
                    font-size: 16px;
                    text-align: left;
                }

                .timeline-item {
                    grid-template-columns: 55px 12px 1fr;
                    gap: 10px;
                    margin-bottom: 0;
                }

                .activity-title {
                    font-size: 16px;
                    margin-bottom: 10px;
                    line-height: 1.3;
                }

                .activity-description {
                    font-size: 13px;
                }

                .timeline-dot {
                    width: 12px;
                    height: 12px;
                }

                .timeline-item:not(:last-child)::before {
                    left: 70px;
                    top: 20px;
                    width: 2px;
                    bottom: -10px;
                }

                .timeline-content.gray {
                    padding: 22px;
                    margin-bottom: 10px;
                }

                .highlight-box {
                    margin-top: 25px;
                    padding: 15px;

                    .highlight-text {
                        flex-direction: column;
                        gap: 10px;

                        p {
                            font-size: 14px;
                        }
                    }
                }

                .highlight-box::before {
                    top: -21px;
                    left: 43.5%;
                    border-left: 13px solid transparent;
                    border-right: 13px solid transparent;
                    border-bottom: 20px solid #EB6400;
                }

                .highlight-box::after {
                    left: 44%;
                    top: -18px;
                    border-left: 12px solid transparent;
                    border-right: 12px solid transparent;
                    border-bottom: 20px solid #fff;
                }

                .cta-section {
                    margin-top: 20px;
                }


                .cta-button {
                    height: 45px;
                    font-size: 16px;

                    .micicon {
                        flex: 0 0 6%;
                    }

                    .ctatext {
                        flex: 0 0 50%;
                        min-width: 0;
                    }

                    .ctaarrow {
                        flex: 0 0 8%;
                    }
                }
            }
        }
    }


    main.numbers {
        padding-top: 25vw;
        .mb_menu {
            margin-bottom: 40px;



            span {
                display: inline-block;
                margin-bottom: 27px;
                font-size: 4vw;
                font-weight: bold;
                line-height: 1.2;
                cursor: pointer;
                background-image: url(assets/img/ic_arrow_down.png);
                background-repeat: no-repeat;
                background-position: 100% center;
                background-size: 15px;
                padding-right: 30px;
            }
        }

        .section-title {
            font-size: 9.6vw;
            letter-spacing: 4px;
        }

        .inner_box {
            .left_box {
                display: none;
                margin-bottom: 50px;
            }

            .right_box {
                max-width: 100%;
                flex: 0 0 100%;

                h2 {
                    font-size: 20px;
                    font-size: 5.7vw;
                    margin-bottom: 40px;
                }

                h3 {
                    font-size: 20px;
                    font-size: 5.7vw;
                    font-weight: 900;
                    margin-bottom: 30px;

                    span {
                        font-size: 12px;
                        margin-bottom: 0;
                        margin-top: 0px;
                    }
                }

                img {
                    /* max-width: 100%!important; */
                }

                section {
                    padding: 0;
                }

                .numbersflex {
                    flex-direction: column;

                    .numbersflex_rows {
                        max-width: 100%;

                    }

                    .numbersflex_box {
                        flex: 0 0 100%;
                        padding: 16px;
                        max-width: 100% !important;

                        h4 {
                            font-size: 16px;
                        }

                        img {
                            max-width: 100%;
                        }

                        span {
                            font-size: 12px;
                            bottom: 10px;
                        }

                    }

                    .numbersflex_box.excla::before {
                        width: 30px;
                        height: 30px;
                    }

                    .nb1 {
                        img {
                            max-width: 200px;
                            margin: 50px 0;
                        }
                    }

                    .nb2 {
                        img {
                            max-width: 190px;
                            margin: 26px 0;
                        }
                    }

                    .nb3 {
                        img {
                            max-width: 260px;
                            margin: 26px 0;
                        }
                    }

                    .nb4 {
                        img {
                            max-width: 280px;
                            margin: 35px 0;
                        }
                    }

                    .nb5 {
                        img {
                            max-width: 180px;
                            margin: 0px 0;
                        }
                    }

                    .nb6 {
                        img {
                            max-width: 200px;
                            margin: 55px 0 10px;
                        }
                    }

                    .nb7 {
                        img {
                            max-width: 150px;
                            margin: 25px 0 15px;
                        }
                    }

                    .nb8 {
                        img {
                            max-width: 140px;
                            margin: 45px 0 15px;
                        }
                    }

                    .nb9 {
                        img {
                            max-width: 170px;
                            margin: 15px 0 10px;
                        }
                    }

                    .nb10 {
                        img {
                            max-width: 150px;
                            margin: 25px 0 20px;
                        }
                    }

                    .nb11 {
                        img {
                            max-width: 150px;
                            margin: 40px 0 5px;
                        }
                    }

                    .nb12 {
                        img {
                            max-width: 250px;
                            margin: 55px 0 55px;
                        }
                    }

                    .nb13 {
                        img {
                            max-width: 250px;
                            margin: 55px 0 35px;
                        }
                    }

                    .nb14 {
                        img {
                            max-width: 120px;
                            margin: 35px 0 15px;
                        }
                    }
                }

                .numbersflex.col3 {
                    .numbersflex_box {
                        flex: 0 0 100%;
                        max-width: 100% !important;
                    }
                    
                }


                .inner_main_cate2 {
                    margin-top: 40px;
                }

                #anc2 {
                    margin-top: 40px;
                }

                #anc3 {
                    margin-top: 40px;
                }
            }
        }
    }




}