
    /* banner */
    .box_text_banner.desktop,
    .banner_img {
        display: none;
    }

    .banner_img_mobile,
    .box_text_banner.mobile {
        display: block;
    }

    .box_text_banner {
        position: absolute;
        top: 15px;
        width: 100%;
        text-align: center;
    }

    .box_text_banner .topic {
        font-size: 18px;
        color: #2C7446;
        font-weight: bold;
    }

    .box_text_banner .detail {
        font-size: 12px;
        font-weight: bold;
    }

    .banner_img,
    .banner_img_mobile {
        -webkit-animation: fadeinout 4s linear forwards;
        animation: fadeinout 4s linear forwards;
    }

    @-webkit-keyframes fadeinout {

        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeinout {

        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }
    }

    section.position-relative .snow {
        position: absolute;
        inset: 0;
        /* pointer-events: none; */
        /* ไม่บังการคลิก */
        z-index: 1;
        /* ลอยบนสุด */
        opacity: .9;

        /* 3 เลเยอร์ของเกล็ดหิมะ ขนาดต่างกัน */
        background-image:
            radial-gradient(15px 15px at 15px 15px, #fff 60%, transparent 61%),
            radial-gradient(10px 10px at 10px 10px, #fff 60%, transparent 61%),
            radial-gradient(5px 5px at 5px 5px, #fff 60%, transparent 61%);
        background-repeat: repeat;
        /* ปรับ spacing/density ของแต่ละเลเยอร์ */
        background-size: 220px 220px, 340px 340px, 160px 160px;

        /* ให้โปรยลง + ลอยเอียงเบา ๆ ด้วยการเลื่อน background-position */
        animation: snow-fall 18s linear infinite;
    }

    /* เคลื่อนไหว: แต่ละเลเยอร์เลื่อนคนละระยะ ⇒ ดูเหมือนเร็วต่างกัน */
    @keyframes snow-fall {
        0% {
            background-position: 0px 0px, 0px 0px, 0px 0px;
        }

        100% {
            background-position: -120px 800px, 140px 1200px, -80px 600px;
        }
    }

    /* เคารพ prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
        .snow {
            animation: none;
        }
    }

    @media (min-width: 375px) {
        section.position-relative .snow {
            max-height: 120px;
        }
    }

    @media (min-width: 425px) {
        section.position-relative .snow {
            max-height: 135px;
        }
    }

    @media (min-width: 576px) {
        section.position-relative .snow {
            max-height: 180px;
        }
    }

    @media (min-width: 768px) {
        section.position-relative .snow {
            max-height: 240px;
        }
    }

    @media (min-width: 992px) {
        section.position-relative .snow {
            max-height: 155px;
        }
    }

    @media (min-width: 1200px) {
        section.position-relative .snow {
            max-height: 190px;
        }
    }

    @media (min-width: 1400px) {
        section.position-relative .snow {
            max-height: 220px;
        }
    }

    @media (min-width: 1500px) {
        section.position-relative .snow {
            max-height: 300px;
        }
    }

    .box_text_banner .topic,
    .box_text_banner .detail {
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
        transform: translateY(-50px);
        opacity: 0;
        animation-name: titleAnimation;
        animation-timing-function: ease;
        animation-duration: 3s;
    }

    .box_text_banner .topic,
    .box_text_banner .detail {
        animation-delay: 0.6s;
        -webkit-animation-fill-mode: forwards;

        &:first-child {
            animation-delay: 0.7s;
        }

        &:last-child {
            animation-delay: 0.5s;
        }
    }

    @keyframes titleAnimation {
        0% {
            transform: translateY(-50px);
            opacity: 0;
            -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
        }

        20% {
            transform: translateY(0);
            opacity: 1;
            -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
        }

        80% {
            transform: translateY(50px);
            opacity: 0;
            -webkit-clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%);
            clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%);

        }

        100% {
            transform: translateY(0);
            opacity: 1;
            -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
        }
    }

    /* ระบบข้อมูล */
    .bg_data_system {
        max-height: none;
        min-height: auto;
        overflow: hidden;
    }

    .bg_data_system svg {
        width: auto;
        height: 265px;
    }

    .section_data_system {
        position: absolute;
        top: 0;
    }

    .section_data_system .container {
        padding: 20px 0;
        color: #FFF;
    }

    .box_data_system.desktop,
    .section_data_system .container .text_data_system {
        display: none;
    }

    .box_data_system.mobile {
        display: flex;
    }

    .box_data_system {
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .box_data_system img {
        max-width: 50%;
        margin-bottom: 15px;
        height: auto;
        cursor: pointer;
    }

    /* slide data center */
    .btn_slide_data_center {
        text-align: center;
        padding: 1rem 0;
        cursor: pointer;
        transition: .5s ease-in-out;
    }

    .btn_slide_data_center.hide {
        rotate: -180deg;
    }

    .box_slide_data_center {
        padding: 15px 15px 25px;
    }

    .box_slide_data_center .topic.desktop,
    .btn_slide_data_center {
        display: none;
    }

    .box_slide_data_center .topic.mobile {
        display: block;
        text-align: center;
        padding-left: 0px;
    }

    .box_slide_data_center .topic {
        font-size: 16px;
    }

    .box_slide_data_center .flex_center {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
    }

    .box_slide_data_center .flex_center .box_food {
        width: 100%;
        height: 110px;
        margin-bottom: 20px;
    }

    .box_slide_data_center .flex_center .box_food:last-child {
        margin-bottom: 0;
    }

    .box_slide_data_center .flex_center .box_food .food {
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .box_slide_data_center .flex_center .box_food .food.bg_green {
        background-color: #E9FFA5;
    }

    .box_slide_data_center .flex_center .box_food .food .quantity {
        font-size: 18px;
        line-height: 1.2;
    }

    .box_slide_data_center .flex_center .box_food .food img {
        padding-right: 15px;
        height: 40px;
    }

    .box_slide_data_center .flex_greenhouse_gases {
        margin-left: -27px;
        margin-right: -27px;
    }

    .box_slide_data_center .flex_greenhouse_gases .graph {
        width: 100%;
        height: 280px;
    }

    .box_slide_data_center .flex_greenhouse_gases .graph .bg_graph {
        width: 100%;
        height: 100%;
        padding: 15px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%);
    }

    .box_slide_data_center .flex_greenhouse_gases .bin {
        width: 100%;
        padding: 0;
    }

    .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin {
        width: 100%;
        height: 100%;
        background-color: #88BC72;
        color: #FFF;
        text-align: right;
        padding: 20px 25px;
        display: flex;
        flex-direction: column;
        align-content: space-around;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }

    .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
        width: 80px;
        height: 80px;
    }

    .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
        padding-left: 5px;
        font-size: 16px;
    }

    .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
        font-size: 20px;
    }

    .box_slide_data_center .img_summary {
        width: 100%;
        height: auto;
        margin-top: -20px;
    }

    .box_slide_data_center .img_summary .radius {
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }

    .box_slide_data_center .img_summary .radius img {
        width: 300%;
        height: auto;
        overflow: hidden;
        position: relative;
        top: 0;
        margin-top: -100px;
    }

    .box_slide_data_center .img_summary .radius .img_text {
        position: absolute;
        top: 0;
        display: flex;
        padding: 20px 25px;
    }

    .box_slide_data_center .img_summary .radius .img_text .text {
        margin-left: 10px;
        display: flex;
        flex-direction: column;
    }

    .box_slide_data_center .img_summary .radius .img_text .text .topic {
        font-size: 20px;
    }

    .box_slide_data_center .img_summary .radius .img_text .text .detail {
        font-size: 15px;
    }

    .box_slide_data_center .detail_summary {
        padding: 25px 20px 0;
        color: #717171;
    }

    /* สรุปผลทั้งหมด */
    .box_total_data_center {
        padding-top: 25px;
    }

    .box_total_data_center .box_total {
        width: 100%;
        font-size: .875em;
        text-align: center;
        color: #717171;
        padding: 0 7px;
        margin-bottom: 20px;
    }

    .box_total_data_center .box_total .total {
        border: 1px solid #2C7446;
        padding: 10px 0;
        border-radius: 20px;
        box-shadow: 0px 2px 2px 0px #d6d6d6;
    }

    .box_total_data_center .box_total .total span {
        color: #44AA00;
        display: block;
    }

    .box_total_data_center .box_total .total span h3 {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
        padding-right: 5px;
    }

    /* บทความ */
    .box_article {
        margin-top: 40px;
        padding: 40px 15px 50px;
        border-top: 1px dashed #000;
        border-bottom: 1px dashed #000;
        position: relative;
    }

    .box_article .topic {
        z-index: 1;
    }

    .box_article .topic h1 {
        color: #144194;
        line-height: 1.2;
    }

    .box_article .topic h5 {
        font-size: 1rem;
        font-weight: 100;
        margin-bottom: 1rem;
    }

    .box_article .detail {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        order: 2;
        text-align: center;
    }

    .box_article .detail h1 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 0;
        background: -webkit-linear-gradient(45deg, #44AA00, #D0BCFF, #FFCB0A, #144194);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .box_article .detail h5 {
        font-weight: 100;
        font-size: 1rem;
    }

    .box_article .detail .btn {
        background-color: #539D28;
        border-radius: 30px;
        color: #FFF;
        padding: 5px 20px;
        display: block;
        margin: auto;
        margin-bottom: 20px;
    }

    .box_article .image .desktop {
        display: none;
    }

    .box_article .image .mobile {
        display: block;
    }

    .box_article .image {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 20px;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    /* ข่าวสารประชาสัมพันธ์ */
    /* .swiper-block {
        margin-top: 10px;
        overflow: hidden;
    }

    .swiper-block .swiper-slide {
        width: 100%;
        border-radius: 20px;
    }

    .swiper-block .swiper-slide .thumbnail {
        width: 100%;
        height: 230px;
        overflow: hidden;
        border-radius: 20px;
    }

    .swiper-block .swiper-slide .thumbnail img {
        max-height: 320px;
        max-width: none;
    }

    .swiper-block .swiper-slide .topic {
        padding-top: 10px;
        color: #144194;
        font-size: 20px;
    }

    .swiper-block .swiper-slide .desc {
        padding-top: 10px;
        color: #717171;
    }

    .swiper-block .swiper-slide .date {
        display: inline-block;
        vertical-align: bottom;
    } */

    .box_content {
        padding: 40px 15px 0;
    }

    /* กิจกรรมของ ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ */
    .box_activity {
        padding-top: 0;
    }

    .box_activity .section_activity {
        background-image: url('../../images/bg/bg_activity.png');
        background-color: #FFCB0A;
        background-size: 100% 100%;
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .box_activity .section_activity .topic {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 10px;
        color: #FFF;
        padding-left: 0;
        padding-right: 0;
        text-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
    }

    .box_activity .section_activity .detail {
        margin-top: 5px;
        font-weight: 100;
    }

    .box_activity .section_activity .detail h2 {
        font-size: 23px;
        line-height: 1.3;
        font-weight: 100;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .box_activity .section_activity .video iframe {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    /* ปฏิทิน */
    /* .box_calendar .calendar {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .box_calendar .calendar .box {
        text-align: center;
        line-height: 1.1;
        padding: 2px 7px;
        font-weight: 400;
        border-radius: 15px;
    }

    .box_calendar .calendar .box .day {
        font-size: 30px;
    }

    .box_calendar .calendar .box .month {
        font-size: 18px;
    } */

    /* นับตำแหน่งที่ 2 เป็นกล่องที่ 1 */
    /* .box_calendar .calendar:nth-child(2) .box {
        border: 2px solid #FFCB0A;
        color: #FFCB0A;
    }

    .box_calendar .calendar:nth-child(3) .box {
        border: 2px solid #44AA00;
        color: #44AA00;
    }

    .box_calendar .calendar:nth-child(4) .box {
        border: 2px solid #144194;
        color: #144194;
    }

    .box_calendar .calendar:nth-child(5) .box {
        border: 2px solid #FF2890;
        color: #FF2890;
    }

    .box_calendar .calendar .text {
        padding-left: 10px;
        font-weight: 400;
        color: #717171;
    }

    .box_calendar .calendar .text small {
        font-size: .8em;
    }

    .box_calendar .calendar .text .desc {
        color: #000;
    } */

    @media (min-width: 375px) {

        /* banner */
        .box_text_banner .topic {
            font-size: 22px;
        }

        /* ระบบข้อมูล */
        .bg_data_system svg {
            height: 295px;
        }

        /* slide data center */
        .box_slide_data_center .img_summary .radius img {
            margin-top: -170px;
        }

        .box_article .detail h1 {
            font-size: 34px;
        }
    }

    @media (min-width: 425px) {

        /* banner */
        .box_text_banner .topic {
            font-size: 24px;
        }

        .box_text_banner .detail {
            font-size: 16px;
        }

        /* ระบบข้อมูล */
        .bg_data_system svg {
            height: 310px;
        }

        /* slide data center */
        .box_slide_data_center .topic {
            font-size: 18px;
        }

        .box_slide_data_center .flex_greenhouse_gases .graph {
            height: 300px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
            width: 90px;
            height: 90px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
            font-size: 18px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
            font-size: 24px;
        }

        .box_slide_data_center .img_summary .radius img {
            margin-top: -190px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 24px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            font-size: 18px;
        }

        .box_slide_data_center .detail_summary {
            font-size: 16px;
        }

        /* กิจกรรมของ ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ */
        .box_activity .section_activity .video iframe {
            min-height: 200px;
        }

        .box_article .detail h1 {
            font-size: 38px;
        }
    }

    @media (min-width: 576px) {

        /* banner */
        .box_text_banner .topic {
            font-size: 2rem;
        }

        .box_text_banner .detail {
            font-size: 1rem;
        }

        /* slide data center */
        .box_slide_data_center .topic {
            font-size: 20px;
        }

        .box_slide_data_center .flex_center .box_food {
            width: 50%;
            padding: 0 10px;
        }

        .box_slide_data_center .flex_greenhouse_gases {
            margin-left: -33px;
            margin-right: -33px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center {
            padding: 0 50px;
        }

        .box_slide_data_center .img_summary .radius img {
            margin-top: -350px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 24px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            font-size: 18px;
        }

        .box_slide_data_center .detail_summary {
            font-size: 16px;
        }

        /* สรุปผลทั้งหมด */
        .box_total_data_center {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .box_total_data_center .box_total {
            width: 50%;
            padding: 0 10px;
        }
    }

    @media (min-width: 768px) {

        /* banner */
        .box_text_banner .topic {
            font-size: 2.5rem;
        }

        .box_text_banner .detail {
            font-size: 22px;
        }

        /* ระบบข้อมูล */
        .bg_data_system svg {
            height: 315px;
        }

        .box_data_system.desktop {
            display: flex;
        }

        .box_data_system.mobile {
            display: none;
        }

        /* slide data center */
        .btn_slide_data_center {
            display: block;
        }

        .box_slide_data_center {
            display: inline-block;
            padding: 15px 15px 35px;
        }

        .box_slide_data_center .topic {
            font-size: 22px;
        }

        .box_slide_data_center .flex_center .box_food {
            width: 33.33%;
            padding: 0 10px;
        }

        .box_slide_data_center .flex_center .box_food .food {
            font-size: 18px;
        }

        .box_slide_data_center .flex_center .box_food .food .quantity {
            font-size: 20px;
        }

        .box_slide_data_center .flex_greenhouse_gases {
            margin-left: -39px;
            margin-right: -39px;
        }

        .box_slide_data_center .flex_greenhouse_gases .graph {
            height: 420px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
            width: 100px;
            height: 100px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
            font-size: 24px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
            font-size: 30px;
        }

        .box_slide_data_center .img_summary .radius img {
            margin-top: -460px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 30px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            font-size: 24px;
        }

        .box_slide_data_center .detail_summary {
            font-size: 20px;
        }

        .box_slide_data_center .flex_center .box_food:nth-child(4),
        .box_slide_data_center .flex_center .box_food:nth-child(5) {
            margin-bottom: 0;
        }

        /* สรุปผลทั้งหมด */
        .box_total_data_center .box_total {
            width: 33.33%;
        }

        /* บทความ */
        .box_article .detail h1 {
            font-size: 46px;
        }

        /* กิจกรรมของ ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ */
        .box_activity .section_activity .topic {
            font-size: 35px;
        }

        .box_activity .section_activity .video iframe {
            min-height: 435px;
        }

        .box_activity .section_activity .detail h2 {
            font-size: 30px;
        }
    }

    @media (min-width: 992px) {

        /* banner */
        .banner_img,
        .box_text_banner.desktop {
            display: block;
        }

        .banner_img_mobile,
        .box_text_banner.mobile {
            display: none;
        }

        .box_text_banner .topic {
            font-size: 3rem;
        }

        .box_text_banner .detail {
            font-size: 1.5rem;
            font-weight: 600;
        }

        /* ระบบข้อมูล */
        .bg_data_system {
            max-height: 185px;
            min-height: 185px;
        }

        .section_data_system .container .text_data_system {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            color: #258a28;
        }

        .section_data_system .container .text_data_system .topic {
            font-size: 24px;
            text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.25);
        }

        .box_data_system {
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: nowrap;
        }

        .box_data_system img {
            max-width: 25%;
            padding: 0 5px;
            margin-bottom: 0;
        }

        /* slide data center */
        .box_slide_data_center .topic {
            font-size: 24px;
        }

        .box_slide_data_center .topic.desktop {
            display: block;
            text-align: left;
            padding-left: 15px;
        }

        .box_slide_data_center .topic.mobile {
            display: none;
        }

        .box_slide_data_center .flex_center .box_food .food {
            font-size: 18px;
        }

        .box_slide_data_center .flex_center .box_food .food .quantity {
            font-size: 22px;
        }

        .box_slide_data_center .flex_greenhouse_gases {
            margin-left: 0;
            margin-right: 0;
        }

        .box_slide_data_center .flex_greenhouse_gases .graph {
            width: 65%;
            height: 262px;
            padding: 0 10px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin {
            width: 35%;
            padding: 0 10px;
        }

        .box_slide_data_center .flex_greenhouse_gases .graph .bg_graph,
        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin {
            border-radius: 15px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center {
            justify-content: space-between;
            height: 103px;
            padding: 0;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
            width: 85px;
            height: 85px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
            font-size: 14px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
            font-size: 20px;
        }

        .box_slide_data_center .img_summary {
            margin-top: 0px;
            width: 80%;
            height: 200px;
            padding: 0 10px;
        }

        .box_slide_data_center .img_summary .radius img {
            width: 120%;
            margin: 0;
            top: -45%;
        }

        .box_slide_data_center .img_summary .radius .img_text {
            width: 100%;
            height: 100%;
            align-items: center;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 21px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            display: flex;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
            font-size: 13px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail .pad {
            padding-left: 30px;
        }

        .box_slide_data_center .detail_summary {
            width: 20%;
            font-size: 14px;
            padding: 0 10px;
        }

        .box_content {
            padding: 50px 15px 0;
        }

        /* บทความ */
        .box_article .topic {
            width: 65%;
            z-index: 1;
        }

        .box_article .topic h1 {
            font-size: 1.8rem;
        }

        .box_article .topic h5 {
            font-size: 1.4em;
            font-weight: 500;
        }

        .box_article .detail {
            width: 50%;
            -webkit-box-ordinal-group: 1;
            -ms-flex-order: 1;
            order: 1;
            text-align: left;
        }

        .box_article .detail h1 {
            font-size: 38px;
        }

        .box_article .detail h5 {
            font-weight: 100;
            font-size: 1.2rem;
        }

        .box_article .detail .btn {
            margin: inherit;
        }

        .box_article .image .desktop {
            display: block;
        }

        .box_article .image .mobile {
            display: none;
        }

        .box_article .image {
            width: 50%;
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 2;
            order: 2;
            position: absolute;
            right: 0;
            top: 140px;
        }

        .box_article .image img {
            padding-right: 30px;
        }

        /* กิจกรรมของ ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ */
        .box_activity {
            padding-top: 50px;
        }

        .box_activity .section_activity .topic {
            padding-top: 25px;
            padding-left: 15px;
            padding-right: 15px;
            font-size: 35px;
        }

        .box_activity .section_activity .video,
        .box_activity .section_activity .detail {
            padding-left: 20px;
            padding-right: 20px;
        }

        .box_activity .section_activity .container {
            padding-left: 50px;
            padding-right: 50px;
        }
    }

    @media (min-width: 1200px) {

        /* banner */
        .box_text_banner .topic {
            font-size: 3.6rem;
            line-height: 1.3;
            padding-top: 20px;
        }

        /* ระบบข้อมูล */
        .bg_data_system {
            max-height: 210px;
            min-height: 210px;
        }

        .bg_data_system svg {
            height: 210px;
        }

        /* slide data center */
        .box_slide_data_center .flex_center .box_food {
            width: 20%;
            margin-bottom: 0;
        }

        .box_slide_data_center .flex_center .box_food .food {
            font-size: 16px;
        }

        .box_slide_data_center .flex_center .box_food .food .quantity {
            font-size: 20px;
        }

        .box_slide_data_center .flex_greenhouse_gases .graph {
            height: 302px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center {
            height: 123px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
            width: 110px;
            height: 110px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
            font-size: 18px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
            font-size: 24px;
        }

        .box_slide_data_center .img_summary .radius img {
            width: 110%;
            top: -55%;
        }

        /* สรุปผลทั้งหมด */
        .box_total_data_center {
            padding-top: 45px;
        }

        .box_total_data_center .box_total {
            width: 20%;
            margin-bottom: 0;
        }

        .box_article .topic h1 {
            font-size: 2.1rem;
        }

        .box_article .image {
            top: 40px;
        }

        /* ปฏิทิน */
        /* .box_calendar .calendar {
            margin-bottom: 0;
        } */

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 23px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            font-size: 14px;
        }
    }

    @media (min-width: 1400px) {

        /* ระบบข้อมูล */
        .bg_data_system svg {
            height: auto;
        }

        /* slide data center */
        .box_slide_data_center .flex_greenhouse_gases .graph {
            height: 333px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center {
            height: 139px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center svg {
            width: 100px;
            height: 100px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_pad {
            font-size: 20px;
        }

        .box_slide_data_center .flex_greenhouse_gases .bin .bg_bin .text_flex_center .text_size {
            font-size: 28px;
        }

        .box_slide_data_center .img_summary .radius img {
            width: 100%;
            top: -60%;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .topic {
            font-size: 24px;
        }

        .box_slide_data_center .img_summary .radius .img_text .text .detail {
            font-size: 15px;
        }

        .box_total_data_center .box_total .total span h3 {
            font-size: 36px;
        }

        /* บทความ */
        .box_article .topic h1 {
            font-size: 2.5rem;
        }

        .box_article .detail h1 {
            font-size: 54px;
        }
    }

    /* modal */
    #modalFoodBankSystem .modal-content,
    #modalLookieWasteSystem .modal-content,
    #modalFoodCarbonCredits .modal-content,
    #modalCalculateGreenhouseGas .modal-content {
        background-image: url('../../images/banner/bg_data_center.png');
        background-size: 100% 100%;
    }

    #modalFoodCarbonCredits .modal-content,
    #modalCalculateGreenhouseGas .modal-content {
        padding: 10px 5px;
    }

    #modalFoodBankSystem .modal-header,
    #modalLookieWasteSystem .modal-header {
        align-items: flex-start;
    }

    #modalFoodBankSystem .modal-body {
        padding: 0 30px 20px;
    }

    #modalFoodBankSystem .modal-body img {
        border-radius: 15px;
        margin-bottom: 20px;
    }

    #modalLookieWasteSystem .modal-body {
        padding: 40px 30px 30px;
    }

    #modalLookieWasteSystem .modal-body .desc {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #modalFoodCarbonCredits .modal-header {
        padding-bottom: 0;
        align-items: baseline;
        padding-top: 0
    }

    #modalFoodCarbonCredits .modal-body .box_graph,
    #modalFoodCarbonCredits .modal-body .box_type_food,
    #modalFoodCarbonCredits .modal-body .box_area,
    #modalCalculateGreenhouseGas .modal-content .modal-body .box {
        border-top: 1px dashed #000;
    }

    #modalFoodCarbonCredits .modal-body .box_graph {
        margin-top: 10px;
        padding-top: 10px;
    }

    #modalFoodCarbonCredits .modal-body .box_graph .topic,
    #modalFoodCarbonCredits .modal-body .box_type_food .topic,
    #modalFoodCarbonCredits .modal-body .box_area .topic,
    #modalFoodCarbonCredits .modal-body .box_carbon_credit .topic {
        font-size: 20px;
        font-weight: 500;
    }

    #modalFoodCarbonCredits .modal-body .box_type_food,
    #modalFoodCarbonCredits .modal-body .box_type_food .topic,
    #modalCalculateGreenhouseGas .modal-content .modal-body .box {
        margin-top: 15px;
    }

    #modalFoodCarbonCredits .modal-body .bd_right {
        border-right: 1px dashed #000;
    }

    #modalFoodCarbonCredits .modal-body .box_type_food .list {
        line-height: 35px;
        font-weight: 600;
        padding-bottom: 15px;
        color: #626262;
    }

    #modalFoodCarbonCredits .modal-body .box_area .topic {
        padding-top: 15px;
        padding-bottom: 5px;
    }

    #modalFoodCarbonCredits .modal-body .box_area .box_progress {
        display: flex;
        align-items: flex-end;
        padding-bottom: 5px;
    }

    #modalFoodCarbonCredits .modal-body .box_area .box_progress .box_img {
        width: 32px;
    }

    #modalFoodCarbonCredits .modal-body .box_area .box_progress .progress {
        width: 100%;
        height: 15px;
        border-radius: 20px;
        background-color: #FFF;
    }

    #modalFoodCarbonCredits .modal-body .box_area .box_progress .progress .progress-bar {
        border-radius: 20px;
        text-align: left;
        padding: 0 7px;
        font-size: 14px;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .text-summary {
        text-align: center;
        font-size: 12px;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .text-summary.mobile {
        display: block;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .text-summary.desktop {
        display: none;
    }

    #modalFoodCarbonCredits .amount_carbon .row.position-relative {
        z-index: 1;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste {
        padding: 0;
        width: 33.33%;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) {
        margin-top: 8px;
        margin-left: -100px;
        margin-right: 140px;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(3) {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        margin-bottom: -15px;
        margin-left: -40px;
    }

    #modalFoodCarbonCredits .modal-body .box_type_food {
        padding-bottom: 15px;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row {
        width: calc(100% + 200px);
        height: 80px;
        display: flex;
        flex-direction: column;
        white-space: nowrap;
        justify-content: center;
        align-items: center;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(1) {
        width: 44%;
        text-align: center;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(2) {
        width: 36%;
        text-align: center;
        font-weight: 600;
        padding-right: 3px;
        font-size: 1.3em;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(3) {
        width: 20%;
        text-align: center;
        font-weight: 600;
        font-size: 90%;
    }

    #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row .text_shadow {
        text-shadow: 1px 1px 1px #6a6a6a;
    }

    #modalFoodCarbonCredits .amount_carbon .bg-absolute {
        position: absolute;
        top: 8px;
        width: 100%;
    }

    #modalFoodCarbonCredits .amount_carbon .bg-absolute .block-bg {
        width: 100%;
        height: 80px;
    }

    #modalFoodCarbonCredits .amount_carbon .bg-absolute .block-bg:nth-of-type(1) {
        background: #B97220;
        background: linear-gradient(90deg, rgba(185, 114, 32, 1) 0%, rgba(255, 255, 255, 1) 90%);
    }

    #modalFoodCarbonCredits .amount_carbon .bg-absolute .block-bg:nth-of-type(3) {
        background: #FFF;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(76, 132, 255, 1) 100%);
    }

    #modalCalculateGreenhouseGas .modal-content .modal-header {
        align-items: baseline;
        padding-top: 0;
        padding-bottom: 0;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .left .topic,
    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .topic {
        font-size: 18px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #000;
        display: flex;
        justify-content: space-between;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .topic {
        flex-direction: column;
        align-items: center;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .left .topic {
        margin-bottom: 5px;
        align-items: center;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .left .dataType .type {
        padding-left: 10px;
        padding-bottom: 5px;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .left .dataType .use {
        border: 1px solid #CAC9C9;
        background-color: #FFF;
        border-radius: 15px;
        padding: 5px 10px 5px 25px;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .topic button {
        border-color: #6E501A;
        color: #6E501A;
        border-radius: 15px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 12px;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide {
        border: 1px solid #C8C8C8;
        border-radius: 15px;
        margin: 30px 0 40px;
        background: #FFF;
        background-image: url('../../images/banner/bg_yellow.png');
        background-size: 100%;
        background-position: bottom right;
        background-size: auto;
        background-repeat: no-repeat;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide .row {
        padding: 25px 20px 10px;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide .row .col-sm-9 {
        padding-top: 15px;
        padding-left: 30px;
        text-align: center;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide .row .col-sm-9 h1 {
        color: #6E501A;
        display: inline-block;
        font-weight: 400;
        margin-bottom: 0;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide .row .col-sm-9 h4 {
        color: #6E501A;
        display: inline-block;
        font-weight: 200;
        padding-left: 10px
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .text_remark {
        font-size: 14px;
    }

    #modalFoodCarbonCredits .modal-body .box_area .bd_right {
        border-right: 0;
        margin-bottom: 10px;
    }

    #modalFoodCarbonCredits .modal-body .box_area .box_carbon_credit {
        border-top: 1px dashed #000;
        font-weight: 500;
    }

    #modalFoodCarbonCredits .modal-body .box_type_food .bd_right {
        border-right: 0;
        border-bottom: 1px dashed #000;
    }

    #modalFoodCarbonCredits .modal-body .box_type_food .bd_right .list img {
        max-width: 25px;
        vertical-align: middle;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center img {
        height: 100px;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit {
        display: flex;
        align-items: center;
        color: #FFF;
        background: #9CC34C;
        padding-left: 25px;
        padding-right: 25px;
        border-radius: 45px;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit .unit {
        font-size: 18px;
        padding-left: 10px
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center img,
    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit,
    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .value {
        margin-bottom: 10px;
    }

    #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit .number {
        font-size: 50px;
    }

    #modalCalculateGreenhouseGas .left .block_input_data {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        font-size: 14px;
        padding-bottom: 8px;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .input_leakage {
        padding-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data {
        padding-left: 3px;
        padding-right: 3px;
        padding-bottom: 7px;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(1) {
        width: 100%;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(2) {
        width: 90%;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(3) {
        width: 5%;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(4) {
        width: 5%;
        cursor: pointer;
    }

    #modalCalculateGreenhouseGas .left .block_input_data .input_leakage .form-control,
    #modalCalculateGreenhouseGas .left .block_input_data .list .input_data .form-control {
        border: 1px solid #CAC9C9;
        border-radius: 20px;
        font-size: 14px;
    }

    #modalCalculateGreenhouseGas .left .block_input_data #addListCal {
        background-color: #FFF;
        border: 1px solid #CAC9C9;
        border-radius: 20px;
        font-size: 14px;
        padding-left: 35px;
        padding-right: 35px;
    }

    #modalCalculateGreenhouseGas .box_slide .col-4,
    #modalCalculateGreenhouseGas .box_slide .col-8 {
        width: 100%;
        text-align: center !important;
    }


    #modalFoodCarbonCredits .modal-header h4,
    #modalLookieWasteSystem h4,
    #modalFoodBankSystem .modal-header h4,
    #modalCalculateGreenhouseGas .modal-header h4 {
        margin-bottom: 0;
        font-size: 20px;
    }

    #modalFoodBankSystem h2 {
        font-size: 22px;
    }

    #modalFoodCarbonCredits .modal-body .box_graph .topic,
    #modalFoodCarbonCredits .modal-body .box_type_food .topic,
    #modalFoodCarbonCredits .modal-body .box_area .topic,
    #modalFoodCarbonCredits .modal-body .box_carbon_credit .topic {
        font-size: 18px;
    }

    #modalCalculateGreenhouseGas .modal-content .modal-body .box .left,
    #modalCalculateGreenhouseGas .modal-content .modal-body .box .right {
        padding: 15px;
    }

    @media (min-width: 425px) {

        #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit .number {
            font-size: 60px;
            font-weight: 500;
        }

        #modalFoodCarbonCredits .modal-body .box_carbon_credit .text-summary.mobile {
            display: none;
        }

        #modalFoodCarbonCredits .modal-body .box_carbon_credit .text-summary.desktop {
            display: block;
        }

        #modalCalculateGreenhouseGas .box_slide .col-4 {
            width: 33.33333333%;
        }

        #modalCalculateGreenhouseGas .box_slide .col-8 {
            width: 66.66666667%;
            text-align: right !important;
        }
    }

    @media (min-width: 576px) {

        #modalCalculateGreenhouseGas .left .block_input_data .input_leakage {
            flex-direction: row;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .input_leakage .input_data {
            width: 30%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(1) {
            width: 65%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(2) {
            width: 25%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(3) {
            width: 5%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(4) {
            width: 5%;
        }

        #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .box_slide .row .col-sm-9 {
            padding-top: 0;
            padding-left: 0;
            text-align: right;
        }
    }

    @media (min-width: 768px) {
        #modalCalculateGreenhouseGas .modal-content .modal-body .box .right .topic {
            flex-direction: row;
        }
    }

    @media (min-width: 992px) {
        #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-direction: row;
            padding: 10px 0;
        }

        #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center img,
        #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .credit,
        #modalFoodCarbonCredits .modal-body .box_carbon_credit .flex-center .value {
            margin-bottom: 0px;
        }

        #modalFoodCarbonCredits .modal-header h4,
        #modalLookieWasteSystem h4,
        #modalFoodBankSystem .modal-header h4 {
            margin-bottom: 0;
            font-size: calc(1.275rem + .3vw);
        }

        #modalFoodBankSystem h2 {
            font-size: calc(1.325rem + .9vw);
        }

        #modalFoodCarbonCredits .modal-body .box_graph .topic,
        #modalFoodCarbonCredits .modal-body .box_type_food .topic,
        #modalFoodCarbonCredits .modal-body .box_area .topic,
        #modalFoodCarbonCredits .modal-body .box_carbon_credit .topic {
            font-size: 20px;
        }

        #modalCalculateGreenhouseGas .modal-content .modal-body .box .left,
        #modalCalculateGreenhouseGas .modal-content .modal-body .box .right {
            padding: 25px;
        }

        /* #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(1) {
            width: 100%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(2) {
            width: 95%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(3) {
            width: 5%;
        } */

        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) {
            margin-top: 8px;
            margin-left: -130px;
            margin-right: 170px;
        }

        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row {
            height: 44px;
            flex-wrap: wrap;
            align-items: center;
        }

        #modalFoodCarbonCredits .amount_carbon .bg-absolute .block-bg {
            height: 44px;
        }

        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(1),
        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(2) {
            text-align: right;
        }

        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(2) .block_row div:nth-of-type(3) {
            text-align: left;
        }

        #modalFoodCarbonCredits .modal-body .box_type_food {
            padding-bottom: 15px;
        }
    }

    @media (min-width: 1200px) {

        #modalFoodCarbonCredits .modal-body .box_area .bd_right,
        #modalFoodCarbonCredits .modal-body .box_type_food .bd_right {
            border-right: 1px dashed #000;
        }

        #modalFoodCarbonCredits .modal-body .box_type_food .bd_right {
            border-bottom: 0;
        }

        #modalFoodCarbonCredits .modal-body .box_area .box_carbon_credit {
            border-top: 0;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(1) {
            width: 65%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(2) {
            width: 25%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(3) {
            width: 5%;
        }

        #modalCalculateGreenhouseGas .left .block_input_data .list .input_data:nth-child(4) {
            width: 5%;
        }

        #modalFoodCarbonCredits .amount_carbon .block_waste:nth-of-type(3) {
            display: block;
            margin-bottom: 0;
        }
    }