html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}
/*edit*/

        .container {
            display: grid;
            grid-template-columns: repeat(6, 1fr); /* แบ่งเป็น 6 คอลัมน์ */
            gap: 10px; /* ช่องว่างระหว่างคอลัมน์ */
        }

        .column {
            background-color: lightblue;
            padding: 20px;
            text-align: center;
        }

        /* โค้ด CSS ที่ทันสมัยสำหรับส่วนบริการ - 2025 - ธีมสีฟ้า-ส้ม-ขาว */
        :root {
          --primary-color: #1e88e5; /* สีฟ้าหลัก */
          --secondary-color: #ff7043; /* สีส้ม */
          --accent-color: #29b6f6; /* สีฟ้าอ่อน */
          --text-primary: #37474f;
          --text-secondary: #546e7a;
          --bg-light: #f5f9ff; /* พื้นหลังสีฟ้าอ่อนมาก */
          --bg-white: #ffffff;
          --shadow-sm: 0 4px 8px rgba(30, 136, 229, 0.1);
          --shadow-lg: 0 8px 16px rgba(30, 136, 229, 0.15);
          --border-radius: 10px;
          --transition-speed: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: var(--bg-light);
        }

        /* สไตล์ของส่วนบริการ */
        .custom-section {
          padding: 60px 0;
          background-color: var(--bg-light);
          background-image: linear-gradient(120deg, rgba(240, 248, 255, 0.8), rgba(243, 249, 255, 0.9));
        }

        .custom-container {
          max-width: 1200px;
          margin: 0 auto;
        }

        .heading-custom {
          text-align: center;
          font-size: 36px;
          color: var(--primary-color);
          margin-bottom: 40px;
          position: relative;
          display: inline-block;
        }

        .heading-custom::after {
          content: '';
          position: absolute;
          width: 60px;
          height: 3px;
          background: var(--secondary-color);
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          border-radius: 2px;
        }

        /* รูปแบบของแต่ละรายการบริการ */
        .service-section {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 30px;
          padding: 20px;
        }

        .service-item {
          background-color: var(--bg-white);
          padding: 20px;
          border-radius: var(--border-radius);
          box-shadow: var(--shadow-sm);
          text-align: center;
          transition: transform var(--transition-speed), box-shadow var(--transition-speed);
          position: relative;
          overflow: hidden;
          border-bottom: 3px solid transparent;
        }

        .service-item:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
          border-bottom: 3px solid var(--secondary-color);
        }

        .service-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 0;
          background: linear-gradient(180deg, rgba(30, 136, 229, 0.03) 0%, rgba(30, 136, 229, 0) 100%);
          transition: height var(--transition-speed);
          z-index: -1;
        }
        .service-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.service-heading {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/*.service-paragraph {
  font-size: 1rem;
  color: #555;
}*/

.service-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.service-button:hover {
  background: #0056b3;
}


        .service-item:hover::before {
          height: 100%;
        }

        .service-image {
          width: 100px;
          height: 100px;
          margin: 0 auto 20px;
          object-fit: contain;
          transition: transform var(--transition-speed);
          filter: drop-shadow(0 4px 6px rgba(30, 136, 229, 0.1));
        }

        .service-item:hover .service-image {
          transform: scale(1.1);
        }

        .service-heading {
          font-size: 20px;
          color: var(--primary-color);
          margin-bottom: 10px;
          transition: color var(--transition-speed);
        }

        .service-item:hover .service-heading {
          color: var(--secondary-color);
        }

        .service-paragraph {
          font-size: 16px;
          color: var(--text-secondary);
          line-height: 1.6;
          margin-bottom: 15px;
        }

        /* ไอเท็มที่เด่นชัด */
        .service-item.featured {
          border-top: 3px solid var(--secondary-color);
          box-shadow: 0 6px 12px rgba(255, 112, 67, 0.12);
        }

        .service-item.featured .service-heading {
          color: var(--secondary-color);
        }

        .service-item.featured:hover {
          border-bottom: 3px solid var(--primary-color);
          border-top: 3px solid var(--secondary-color);
        }

        /* ปุ่มเพิ่มเติม (เพิ่มเข้ามาใหม่) */
        .service-button {
          display: inline-block;
          padding: 8px 16px;
          background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
          color: white;
          border-radius: 5px;
          text-decoration: none;
          font-weight: 500;
          margin-top: 10px;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
        }

        .service-button:hover {
          background: linear-gradient(45deg, var(--secondary-color), #ff9a76);
          transform: translateY(-3px);
          box-shadow: 0 5px 10px rgba(255, 112, 67, 0.2);
        }

        /* การตั้งค่า responsive */
        @media (max-width: 768px) {
          .service-item {
            padding: 15px;
          }
          
          .service-image {
            width: 80px;
            height: 80px;
          }
          
          .service-button {
            padding: 6px 14px;
            font-size: 14px;
          }
        }

        @media (max-width: 480px) {
          .heading-custom {
            font-size: 28px;
            color: var(--primary-color);
          }
          
          .service-section {
            grid-template-columns: 1fr;
          }
          
          .service-heading {
            font-size: 18px;
          }
          
          .service-paragraph {
            font-size: 14px;
          }
        }


body .faq-section {
  background-image: url("../images/job.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: rgb(49, 171, 237) !important;
  min-height: 540px !important;
  padding: 0px 20px !important;
}
.faq-title {
  text-align: center;
  color: #e53935; /* สีแดง */
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  border-bottom: 3px solid #003a78; /* เส้นน้ำเงินเข้ม */
  padding-bottom: 8px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
/*  background-color: rgba(255, 255, 255, 0.8);  กล่องขาวโปร่งใส */
background-color: rgba(255, 255, 255, 0.8); /* กล่องขาวโปร่งใส */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  background-color: rgba(255, 255, 255, 1); /* กล่องจะขาวขึ้นเมื่อ active */
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}
body .news-section {
  background-image: url("../images/job.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: rgb(49, 171, 237) !important;
  min-height: 540px !important;
  padding: 0px 20px !important;
}
.news-title {
  text-align: center;
  color: #e53935; /* สีแดง */
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  border-bottom: 3px solid #003a78; /* เส้นน้ำเงินเข้ม */
  padding-bottom: 8px;
}

.news-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
/*  background-color: rgba(255, 255, 255, 0.8);  กล่องขาวโปร่งใส */
background-color: rgba(255, 255, 255, 0.8); /* กล่องขาวโปร่งใส */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item.active {
  background-color: rgba(255, 255, 255, 1); /* กล่องจะขาวขึ้นเมื่อ active */
}

.news-answer {
  display: none;
  margin-top: 10px;
}

.news-item.active .faq-answer {
  display: block;
}




/*icon foot*/
 
.followsocial {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.followsocial li a {
    font-size: 24px;
    color: #000; /* สีเริ่มต้น: ดำ */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* เปลี่ยนสีเมื่อ hover */
.followsocial li a.facebook:hover   { color: #3b5998; }
.followsocial li a.line:hover       { color: #00c300; }
.followsocial li a.twitter:hover    { color: #1da1f2; }
.followsocial li a.instagram:hover  { color: #e4405f; }
.followsocial li a.youtube:hover    { color: #ff0000; }
.followsocial li a.tiktok:hover     { color: #010101; }

/* ขยายขนาดเมื่อ hover */
.followsocial li a:hover {
    transform: scale(1.4);
}


/*edit*/



body {
  margin: 0;
}
.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 10px;
}




.post-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 15px;
    text-align: center;
}

.post-block:hover {
    transform: translateY(-5px);
}

.post-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-block h2 {
    font-size: 18px;
    margin: 10px 0;
}

.post-block a {
    text-decoration: none;
    color: #333;
}

.post-block p {
    font-size: 14px;
    color: #666;
}
@media (max-width: 600px) {
  .latest-posts-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .post-block {
    padding: 10px;
  }
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
}

.circle-img {
   width: 80px;
  height: 80px; 
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.circle-img:hover {
  transform: scale(1.05);              /* ขยายภาพเล็กน้อย */
  border-color: #0082f3;               /* เปลี่ยนขอบเป็นสีฟ้า */
  box-shadow: 0 0 15px rgba(0,130,243,0.4); /* เพิ่มเงาฟ้า */
}
.image-row {
  display: flex;
  justify-content: center; /* จัดให้อยู่กลางแนวนอน */
  gap: 30px;               /* ระยะห่างระหว่างรูป */
  flex-wrap: wrap;         /* ให้ขึ้นบรรทัดใหม่ถ้าจอกว้างไม่พอ */
  padding: 20px;
}

.image-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #0082f3;
}


.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/*    คุกกี้ */
   .cookiepolicyalert {
  position: fixed;
  bottom: 0;
  width: 100%;
/*  background-color: #f8f9fa; /* สีพื้นหลังขาวเทา */
  background-color: rgba(255, 255, 255, 1.0); /* สีขาวโปร่งใส 90% */
  border-top: 3px solid #007bff; /* เส้นบนสีฟ้า */
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.container_cooki {
  /* คุณสามารถใส่ค่าที่ต้องการที่นี่ */
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.cookiepolicyalert p {
  white-space: normal;      /* อนุญาตให้ขึ้นบรรทัด */
  text-align: left;         /* จัดข้อความชิดซ้าย */
  max-width: 100%;          /* ใช้พื้นที่เต็ม */
  line-height: 1.5;
}

.cookiepolicyalert .col-md-8 {
  width: 100%;
}


.cookiepolicyalert h5 {
  margin: 0 0 5px 0;
  color: #007bff; /* ฟ้า */
}

.cookiepolicyalert p {
  margin: 0;
  color: #343a40; /* เทาเข้มอ่านง่าย */
  font-size: 14px;
}

.cookiepolicyalert a {
  color: #fd7e14; /* ส้ม */
  text-decoration: underline;
}

.cookiepolicyalert .btn {
  margin: 5px 5px 0 0;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.cookiepolicyalert .btn-primary {
  background-color: #007bff;
  color: #fff;
}

.cookiepolicyalert .btn-warning {
  background-color: #fd7e14;
  color: #fff;
}

@media (max-width: 768px) {
  .cookiepolicyalert .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
}


/*    คุกกี้ */

/* Section Hotline */

.section-hotline {
  background-color: #01579b;
  background-image: url('images/tel.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0 !important; /* บังคับลด padding */
  min-height: auto !important;
  height: auto !important;
  color: white;
}

.section-hotline h4,
.section-hotline p {
  margin: 10px 0 !important; /* ลดระยะห่างข้อความ */
  padding: 0 !important;
}


.hotline-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* เพิ่ม position relative เพื่อให้เนื้อหาบนภาพไม่หายไป */
  z-index: 1; /* เพิ่ม z-index เพื่อให้เนื้อหาทับบนพื้นหลัง */
}

.w-layout-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w-layout-cell {
  flex: 1;
  padding: 20px;
}

.hotline-heading {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* เพิ่มเงาให้ข้อความอ่านง่าย */
}

.hotline-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* เพิ่มเงาให้ข้อความอ่านง่าย */
}

.button {
  background-color: #ffffff;
  color: #01579b;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
  background-color: #004b8d;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hotline-container {
    flex-direction: column;
    text-align: center;
  }

  .w-layout-cell {
    padding: 10px;
  }

  .hotline-heading {
    font-size: 24px;
  }

  .hotline-paragraph {
    font-size: 14px;
  }
}


/* ปรับให้ section ชิดขึ้นจากด้านบน */
.custom-section {
  background-image: url("../cssimages/bg-banner2.png"), linear-gradient(to bottom, var(--overlay-o-section), var(--overlay-o-section)), url("../cssimages/bg-banner2.png");
  background-position: center top, 0 0, center;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 0 !important;  /* ไม่มี padding บน */
  margin-top: 0 !important;   /* กำหนด margin-top ให้หายไป */
  height: auto;
  position: relative;
  top: -20px;  /* ขยับขึ้นเล็กน้อย */
}

/* ปรับข้อความ 'OUR SERVICE' */
.heading-custom {
  font-size: 36px;  /* ขนาดตัวอักษร */
  font-weight: bold;
  text-align: center; /* จัดกลาง */
  margin-top: 12;
  padding-top: 0;
  line-height: 1.2;
  color: white;  /* กำหนดสีที่เหมาะสม */
}

/* ปรับ container ให้เหมาะสม */
.custom-container {
  padding-top: 0 !important; /* ปรับให้ container ไม่มีช่องว่างด้านบน */
  margin-top: 0 !important;  /* กำหนด margin-top ให้เป็น 0 */
  text-align: center; /* กำหนดให้เนื้อหาภายใน container จัดกลาง */
}

/* หากต้องการให้ภาพ หรือข้อความมีระยะห่างที่พอดี */
.custom-container .w-layout-blockcontainer {
  padding-top: 20px; /* เพิ่ม padding ตามที่ต้องการ */
}


/* กล่องครอบรูปทั้งหมด */
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* ให้ขึ้นบรรทัดใหม่อัตโนมัติเมื่อจอเล็ก */
  padding: 20px 0;
}

/* รูปแต่ละภาพ */
.image-onmouse {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-onmouse:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #0082f3;
}


/* รูปแต่ละภาพ */
.image-service {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-service:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #0082f3;
}



.turnkey-sec {
/*  width: 300px;*/
  height: 300px;
}

/* สไตล์ของส่วนบริการ */
.custom-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.heading-custom {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}

/* รูปแบบของแต่ละรายการบริการ */
.service-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}
/* Debug Style ชั่วคราว:*/
/*.service-paragraph {
  border: 1px dashed red;
  background-color: #fef3c7; /* เหลืองอ่อน */
/*}*/

.service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-heading {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.service-paragraph {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* การตั้งค่า responsive */
@media (max-width: 768px) {
  .service-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .heading-custom {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}


.read-more:hover {
    background-color: #005a87;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "î˜€";
}

.w-icon-slider-left:before {
  content: "î˜";
}

.w-icon-nav-menu:before {
/*  content: "î˜‚";*/

  content: "\2630"; /* Unicode สำหรับ Hamburger (☰) */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* ฟอนต์ที่รองรับ Unicode */
    font-size: 24px;
    color: #1e88e5; /* สีฟ้า */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: white; /* เพิ่มพื้นหลังสีขาว */
}
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "î˜ƒ";
}

.w-icon-file-upload-remove:before {
  content: "î¤€";
}

.w-icon-file-upload-icon:before {
  content: "î¤ƒ";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
/*  background-color: #3898ec;*/
  background-color:#00f;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge, .w-webflow-badge > img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  transition: unset;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  transform: none !important;
}

.w-webflow-badge > img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::placeholder, .w-select::placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #03a9f4;
  tap-highlight-color: #03a9f4;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("../cssimages/close.svg");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 900; /* ต่ำกว่า Lightbox */
  background: #ffffff;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
/*  color: #222;ขาว เปลี่ยนเป็นฟ้าด้านล่าง*/ 
  color: #00aaff;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
/*  padding: 20px;*/
  padding: 20px;
/*  ปรับชิด ปรับเฉพาะแนวนอน (ซ้าย-ขวา)*/
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
/*  รหัสสี ฟ้าน้ำทะเลเข้ม (สด)*/
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
/*สีดำ*/
/*  background: #000000;*/
background: #ffffff !important;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
 
}
.w-nav-overlay-0{
  background-color: #ffffff !important;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
/*   สีดำที่โปร่งใส 100%*/
  -webkit-tap-highlight-color: #ffffff;
  tap-highlight-color: #ffffff;
/*   background-color: #ffffff !important;; /* ถ้าต้องการให้พื้นหลังโปร่งใส */
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*.w-nav-button {
  background-color: #ffffff !important; /* บังคับให้เป็นสีขาวในสถานะปกติ 
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}*/

.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.active {
  color: #ffffff; /* สีขาว */
/*  background-color: transparent; /* ถ้าต้องการให้พื้นหลังโปร่งใส */
  background-color: #ffffff; /* ถ้าต้องการให้พื้นหลังโปร่งใส */
}

.w-nav-overlay.active {
  display: block; /* แสดงเมนูเมื่อเปิด */
}

/*.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}*/
 
.w-nav-button.w--open {
  background-color: #ffffff !important; /* บังคับให้เป็นสีขาวเมื่อเปิด */
}
/**/
/* เพิ่ม specificity โดยระบุ parent */
.w-nav .w-nav-button {
  background-color: #ffffff !important; /* บังคับสีขาว */
  transition: background-color 0.3s ease;
}

/* บังคับสีขาวในทุกสถานะ */
.w-nav .w-nav-button.w--open {
  background-color: #ffffff !important;
}

/* ปรับสีไอคอนให้ตัดกับพื้นหลัง */
.w-nav-button .w-icon-nav-menu {
  color: #ffffff  !important; /* สีดำเพื่อให้มองเห็นชัด */
}

.w-nav-button.w--open .w-icon-nav-menu {
  color: #ffffff !important;
}
/**/

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 768px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --dd-orange: #f9733b;
  --white: #fff;
  --dark-gray2: #454545;
  --p-light: #5a5a5a;
  --p-dark: #dadada;
  --overlay-o-section: #e5cebfb3;
  --modal-overlay: #0009;
  --dark-gray: #151921;
  --black: black;
  --light-gray: #e2e2e2;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-blockcontainer-foot {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}


.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}


.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 768px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

a {
  text-decoration: underline;
}

.brand {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.brand.w--current {
  padding-top: 0;
}

.image {
  text-decoration: line-through;
  position: static;
}

.navbar {
  z-index: 10;
  background-color: #0000;
  width: 100vw;
  position: fixed;
}

.nav-link {
  color: #0082f3;
  border-bottom: 4px solid #0000;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: border-color .2s;
}
.w-nav-link:hover {
  color: #00aaff;
  border-bottom: 4px solid #0082f3;
}

.nav-link.w--current {
  border-bottom: 4px solid var(--dd-orange);
  color: var(--dd-orange);
}

.quick-stack {
  height: 600px;
}

/*.section {
  background-image: linear-gradient(#00000000, #00000000), url("../cssimages/bg-banner1.png");
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}*/

.section {
  background-image: url("../cssimages/bg-banner1.png"), linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../cssimages/bg-banner1.png");
  background-position: 0 0, 50%;
  background-size: auto, cover;
/*  height: 100vh;*/
  height: 100%;
}

/*.section.sec1 {

 background-image: url("#"), linear-gradient(#2c2c2cbf, #2c2c2cbf), url("");
  background-position: 50% 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, fixed;
  position: relative;
}*/

 



/*.section.sec1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../cssimages/bg-banner1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.1) contrast(1.1); /* เพิ่มความสว่าง/คมชัด */
/*  z-index: -1;*/*/
/*}*/

.container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.heading {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 72px;
}

.heading-2 {
  color: var(--white);
  text-align: center;
  text-transform: none;
  max-width: 60vw;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.heading-aboutL {
  color: var(--white);
  text-align: left;
  text-transform: none;
  max-width: 60vw;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.heading-aboutR {
  color: var(--white);
  text-align: right;
  text-transform: none;
  max-width: 60vw;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.div-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  opacity: 1;
  pointer-events: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.button {
  background-color: #f9733b;
  background-image: linear-gradient(135deg, var(--dd-orange) 23%, #efb24e);
  border-radius: 50px;
  margin-top: 0;
  padding: 16px 32px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.button:hover {
  background-image: linear-gradient(135deg, var(--dd-orange) 23%, #efb24e);
  box-shadow: 0 2px 11px 2px #ffb03266;
}

.button_news {
  background-color: #0ba4e2;
  background-image: linear-gradient(135deg, #0ba4e2 23%, #4DBEFF);
  border-radius: 50px;
  margin-top: 0;
  padding: 16px 32px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-image 0.3s ease, box-shadow 0.3s ease;
}

.button_news:hover {
  background-image: linear-gradient(135deg, #007BFF 23%, #80D0FF);
  box-shadow: 0 2px 11px 2px #4DBEFF66;
}



.button.hero {
  display: none;
}

.button.in-form-btn {
  margin-top: 20px;
}

.flex-block-home {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: absolute;
  inset: auto auto 0;
}

.text-block {
  color: var(--white);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.lottie-animation {
  width: 56px;
}
.highlight-section {
  background-color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.highlight-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.highlight-box {
  background-color: #e1f5fe; /* ฟ้าอ่อน */
  border: 2px solid #0288d1; /* ฟ้าเข้ม */
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-image-wrapper {
  border: 4px solid #ff6f00; /* ขอบส้ม */
  border-radius: 12px;
  padding: 6px;
  display: inline-block;
  background-color: #ffffff;
}

.highlight-image {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.highlight-title {
  font-size: 1.5rem;
  color: #0288d1;
  margin-top: 20px;
}

.highlight-description {
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
}


.section-2 {
/*  background-color: #ffffff !important ; /* พื้นหลังสีขาว */
  background-image: url("../images/ab.jpg") !important;
  padding: 60px 20px !important ;
  min-height: 600px;
/*  padding: 60px 20px;*/
/*  background-color: var(--dark-gray2);*/
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.section-job {
  background-color: #ffffff !important ; /* พื้นหลังสีขาว 
/*  background-image: url("../images/ab.jpg") !important;*/
  padding: 60px 20px !important ;
  min-height: 600px;
/*  padding: 60px 20px;*/
/*  background-color: var(--dark-gray2);*/
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quick-stack-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 940px;
  height: 100%;
  padding-top: 56px;
  padding-bottom: 64px;
}

.cell {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

.container-2 {
  height: 100%;
}

.heading-3 {
  color: var(--dark-gray2);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;

}

.heading-3.dark-heading {
  color: var(--dd-orange);
  text-align: left;
  font-family: Montserrat, sans-serif;
  line-height: 48px;
}
.heading-sent.dark-heading {
  color: var(--dd-orange);
  text-align: left;
  font-family: Montserrat, sans-serif;
  line-height: 25px;
}

.heading-3.heading-dark {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  line-height: 44px;
}

.heading-3.heading-dark-baner {
  color:#000000;
  font-family: Montserrat, sans-serif;
  line-height: 44px;
}

.paragraph {
  color: var(--p-light);
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  display: block;
}

.paragraph.dark-paragraph {
  color: var(--p-dark);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.paragraph.radio-head-label {
  font-weight: 500;
}

.text-block-2 {
  color: var(--p-dark);
  padding-top: 12px;
  padding-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  line-height: 40px;
}

.section-3 {
  background-image: url("../cssimages/bg-banner2.png"), linear-gradient(to bottom, var(--overlay-o-section), var(--overlay-o-section)), url("../cssimages/bg-banner2.png");
  background-position: 50% 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, fixed;
 /* padding-top: 20px;  ลดจากค่าที่มีอยู่ เช่นเดิมอาจเป็น 100px */
/*  margin-top: 0;*/
  padding-top: 0px !important;
  margin-top: 0px !important;
  top: -20px;
  height: auto;
}

.heading-4 {
  text-align: center;
  width: 100%;
  font-family: Pilcrowrounded, sans-serif;
  font-size: 24px;
}

.container-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
/*  padding-top: 112px;*/
   padding-top: 62px;
  padding-bottom: 64px;
  display: flex;
}

.quick-stack-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  padding-top: 24px;
}

.cell-2 {
  text-align: center;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
}

.flex-block-2 {
  background-color: var(--white);
  border-radius: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 236px;
  margin-top: 72px;
  padding: 32px 16px 16px;
  transition: border .2s;
  position: relative;
  box-shadow: 0 2px 12px #0003;
}

.flex-block-2:hover {
  border: 2px solid var(--dd-orange);
  box-shadow: 0 2px 14px #00000073;
}

.service-heading {
  color: var(--dd-orange);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}
.service-heading-ab {
  color: var(--dd-orange);
  text-align: right !important;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.service-paragraph {
  color: var(--p-light);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.image-2 {
  border-radius: 50%;
  position: absolute;
  inset: -28% auto 0%;
}
.image-weare {
  border-radius: 20%;
  position: absolute;
  inset: -28% auto 0%;
}

.section-4 {
  background-image: url("../service/FOLLOWS.png"), linear-gradient(to bottom, var(--overlay-o-section), var(--overlay-o-section)), url("../service/FOLLOWS.png");
  background-position: 50% 100%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-bottom: 40px;
}

.quick-stack-4 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.container-4 {
  padding-top: 48px;
  padding-bottom: 96px;
}

.cell-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.project-name {
  color: var(--dark-gray2);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.cell-4, .cell-5 {
  justify-content: flex-start;
  align-items: center;
}

.flex-block-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
}

.flex-block-3.evme-menu {
  cursor: pointer;
  text-decoration: none;
}

.flex-block-3.true-menu, .flex-block-3.mor-menu {
  cursor: pointer;
}

.section-5 {
  background-color: var(--dd-orange);
}

.container-5 {
  max-width: 1080px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.cell-6, .cell-7, .cell-8, .cell-9 {
  justify-content: flex-start;
  align-items: center;
}

.quick-stack-5 {
  padding-top: 40px;
}

.section-6 {
/*  background-color: var(--dark-gray2);*/
  background-color: #FFFFFF;

  #FFFFFF
}

.section-7 {
  -webkit-text-fill-color: inherit;
/*  background-image: url(".../cssimages/bg-banner3.png"), linear-gradient(rgba(0, 123, 255, 0.4), rgba(0, 123, 255, 0.4)), url("../cssimages/bg-banner3.png");*/
/*  background-image: url(".../cssimages/bg-banner3.png");*/
/*  background-image: url("../cssimages/bg-banner3.png") !important;*/
/*  background-position: 50% 0, 0 0, 100%;*/
  /*background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, scroll;
  background-clip: border-box;
*/

  background-image: url("../cssimages/ab-new.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
/*  background-color: rgb(49, 171, 237) !important;*/
  min-height: 440px !important;
  padding: 0px 20px !important;
}
.section-abount {
  -webkit-text-fill-color: inherit;
/*  background-image: url(".../cssimages/bg-banner3.png"), linear-gradient(#000000b3, #000000b3), url("../cssimages/bg-banner3.png");*/
/*  background-image: url(".../cssimages/bg-banner3.png"), linear-gradient(#000000b3, #000000b3), url("../cssimages/bg-banner3.png");*/
  /*background-position: 50% 0, 0 0, 100%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100vw, auto, cover;
  background-attachment: scroll, scroll, scroll;
  background-clip: border-box;*/
}

.container-6 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.container-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 64px;
  display: flex;
}

.section-8 {
  background-color: #45454500;
  background-image: linear-gradient(#1d1814b0, #1d1814b0), url("../cssimages/skysca-bg.jpeg");
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: flex-start;
  display: block;
}

.field-label {
  color: var(--p-light);
  width: 100%;
  font-family: Noto Sans, sans-serif;
  font-weight: 400;
}

.field-label.dark-label {
  color: var(--white);
  font-family: Montserrat, sans-serif;
}

.flex-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #ffffff3d;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  margin-bottom: 0;
  padding: 32px;
}

.form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  display: flex;
}

.form-block {
  width: 100%;
}

.submit-button {
  background-color: var(--dd-orange);
  padding: 12px 24px;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.flex-block-5 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 32px;
}

.radio-button-label {
  font-family: Noto Sans, sans-serif;
  font-weight: 400;
}

.text-field {
  background-color: #fff;
  border-radius: 40px;
  margin-bottom: 24px;
}

.quick-stack-6 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
}

.cell-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.contact-info {
  color: var(--p-dark);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.footer {
  background-color: var(--dd-orange);
}

.container-8 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.footer-menu {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.flex-block-6 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.tabs {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-pane-tab-1, .tabs-content {
  width: 100%;
}

.tabs-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000004a;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-link-tab-1 {
  background-color: #0000;
  border-radius: 0%;
  width: 50%;
}

.tab-link-tab-1.w--current {
  background-color: var(--dd-orange);
  text-align: center;
  border-radius: 20px;
  width: 50%;
}

.tab-link-tab-2 {
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  width: 50%;
  height: 100%;
}

.tab-link-tab-2.w--current {
  background-color: var(--dd-orange);
}

.text-tab1 {
  color: var(--p-dark);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-tab1:focus, .text-tab1.text-tab-focus {
  color: var(--white);
}

.text-tab2 {
  color: var(--p-dark);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-tab2:focus, .text-tab2.text-tab-focus {
  color: var(--white);
}

.flex-block-partner {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: row;
  place-content: flex-start center;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 40px;
}

.flex-block-Shiping {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: row;
  place-content: flex-start center;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 40px;
}

.flex-block-8 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: flex-start;
}

.text-footer-bottom {
  color: var(--white);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.link-block {
  text-decoration: none;
}

.modal-outsource {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.modal-outsource.modal-div {
  display: none;
}

.box-service-modal {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 768px;
  height: auto;
  padding: 72px 56px;
  position: relative;
}

.service-image {
  width: 50%;
  height: 100%;
}

.service-detail {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
}

.modal-header {
  color: var(--dd-orange);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.button-in-modal {
  background-color: var(--dd-orange);
  padding: 12px 24px;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.button-in-modal.button {
  font-family: Montserrat, sans-serif;
}

.service-close {
  cursor: pointer;
  position: absolute;
  inset: 12px 12px 0% auto;
}

.modal-turnkey {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.modal-AIR {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.cell-11, .cell-12 {
  cursor: pointer;
}

.modal-digitalproduct, .modal-evme {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.project-close {
  cursor: pointer;
  position: absolute;
  inset: 16px 16px 0% auto;
}

.modal-true, .modal-morcon {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.image-4 {
  transition: opacity .2s;
}

.section-9 {
  background-color: var(--dark-gray2);
  justify-content: center;
  align-items: flex-start;
  display: block;
  position: relative;
}

.image-5 {
  position: static;
}

.image-6, .image-7 {
  position: absolute;
  inset: auto 0% 0%;
}

.image-8 {
  z-index: 0;
  display: block;
  position: static;
  inset: -92% 0% auto;
}

.flex-block-9 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.flex-block-10 {
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-2 {
  background-color: var(--dark-gray2);
  width: 100%;
  height: 48px;
}

.div-test-triangle {
  background-image: url("../cssimages/orange-triangle2.svg");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  width: 100%;
  height: 60px;
}

.div-grey-curve {
  background-image: url("https://cdn.prod.website-files.com/662f06da6c32223398edec43/663b70e9a8def49f3847fe7f_g-c-final-up.svg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100vw;
  width: 100vw;
  height: 100px;
}

.flex-block-11 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
  padding-bottom: 24px;
}

.radio-label-dark {
  color: var(--white);
  padding-left: 8px;
  font-family: Montserrat, sans-serif;
}

.services-selection {
  color: var(--white);
  width: 100%;
  margin-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.project-card-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-block-3, .link-block-4 {
  text-decoration: none;
}

.radio-button {
  border-color: var(--white);
  background-color: #ffffff17;
  width: 16px;
  height: 16px;
}

.radio-button.w--redirected-checked {
  border-width: 4px;
  border-color: var(--white);
  background-color: var(--dd-orange);
}

.image-9 {
  z-index: 0;
  width: 100vw;
  position: absolute;
}

.quick-stack-7 {
  width: 100%;
  padding-top: 256px;
  padding-bottom: 192px;
}

.cell-14 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
}

.text-quote {
  color: var(--p-dark);
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  line-height: 40px;
}

.image-10 {
  cursor: pointer;
  border-radius: 16px;
}

.para-job {
  color: var(--p-light);
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  display: block;
}

.para-job.dark-paragraph {
  color: var(--p-dark);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.para-job.radio-head-label {
  font-weight: 500;
}

.flex-block-12 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
}

.link-block-5 {
  text-decoration: none;
}

.navbar-child-page {
  z-index: 10;
  background-color: var(--dark-gray);
  width: 100vw;
  position: fixed;
}

.container-9 {
  max-width: 768px;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 60px;
}

.heading-5 {
  text-align: center;
}

.heading-th {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 8px;
  font-family: Noto Sans Thai, sans-serif;
}

.paragraph-2 {
  font-family: Noto Sans Thai, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.flex-block-13 {
  flex-flow: wrap;
  width: 8%;
}

.quick-stack-3-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  padding-top: 24px;
}

.modal-recruitment, .modal-systemint,.CROSS-BORDER,.modal-AIR {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}
 

.cell-15, .cell-16, .cell-17 {
  justify-content: flex-start;
  align-items: center;
}

.modal-waanx, .modal-sikarin, .modal-lightnet , .modal-lightnet {
  z-index: 12;
  background-color: var(--modal-overlay);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
}

.flex-block-customers {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  place-content: flex-start center;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 40px;
}

.digital-sec {
  cursor: pointer;
}

.outsource-sec {
  text-align: center;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
}


.turnkey-sec, .recruit-sec, .system-sec,.recruit-sec1{
  cursor: pointer;
}

.quick-stack-3-copy-copy, .backup-lollow {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  padding-top: 24px;
}

.cell-lollow {
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .flex-block-home {
    width: 100%;
    padding-top: 8px;
  }

  .lottie-animation {
    width: 64px;
  }

  .container-3 {
    padding-top: 104px;
  }

  .quick-stack-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  /*.flex-block-2 {
    height: 276px;
  }*/
   .flex-block-2 {
    height: 76px;
  }

  .service-heading {
    font-size: 20px;
    line-height: 24px;
  }

  .service-paragraph {
    font-size: 16px;
  }

  .image-2 {
    top: -22%;
  }

  .container-4 {
    padding-bottom: 72px;
  }

  .flex-block-4 {
    width: 72%;
  }

  .quick-stack-6 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .flex-block-partner {
    flex-flow: wrap;
  }

  .modal-outsource {
    display: none;
  }

  .box-service-modal {
    width: 90%;
  }

  .modal-morcon {
    display: none;
  }

  .cell-13 {
    justify-content: center;
    align-items: flex-start;
  }

  .image-8 {
    width: 100%;
    position: static;
    inset: -37px 0% auto;
  }

  .div-block-2 {
    height: 64px;
  }

  .container-9 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .heading-th {
    font-size: 32px;
  }

  .quick-stack-3-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .flex-block-customers {
    flex-flow: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-3-copy-copy, .backup-lollow {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .flex-block-home {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .quick-stack-2 {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .cell {
    justify-content: flex-start;
    align-items: center;
  }

  .heading-3 {
    font-size: 32px;
    line-height: 36px;
  }

  .heading-sent {
    font-size: 32px;
    line-height: 36px;
  }

  .heading-3.dark-heading {
    text-align: center;
    font-size: 32px;
  }

  .heading-3.heading-dark {
    font-size: 32px;
    line-height: 36px;
  }
  
  .heading-3.INTERNATIONAL-dark {
  font-size: 32px;
  color: #000000;
  line-height: 1.4;              /* ✅ สำคัญมาก เพื่อให้บรรทัดไม่ทับกัน */
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}

@media (max-width: 600px) {
  .heading-3.INTERNATIONAL-dark {
    font-size: 1.2rem;           /* ลดขนาดตัวอักษรในมือถือ */
    padding: 5px;
    line-height: 1.3;            /* ✅ อย่าลืมระบุใน mobile ด้วย */
  }
} 

/* Google Map */
div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49 .mapouter {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49 .gmap_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49 .gmap_canvas iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ควบคุม parent container */
#contact-sec .w-layout-blockcontainer,
#contact-sec .container-7 {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

/* ค่าเริ่มต้น (มือถือ) */
div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49.w-layout-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49.w-layout-cell,
div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdb7-98edec49.w-layout-cell {
  flex: none;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49 .mapouter {
  height: 300px;
}

/* หน้าจอคอมพิวเตอร์ (> 768px) */
@media (min-width: 769px) {
  div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49.w-layout-layout {
    flex-direction: row !important;
    min-height: 600px !important;
    flex-wrap: nowrap !important;
  }

  div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49.w-layout-cell,
  div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdb7-98edec49.w-layout-cell {
    flex: 1 0 50% !important;
    padding: 15px !important;
  }

  div#w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdaf-98edec49 .mapouter {
    height: 100% !important;
  }
}


/*edit*/
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .map-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-column {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 8px;
        }

        /* Responsive สำหรับหน้าจอเล็ก */
        @media screen and (max-width: 768px) {
            .map-column {
                min-width: 100%;
            }
        }

/*google map*/

  .paragraph.dark-paragraph {
    text-align: left;
    font-size: 14px;
  }

  .text-block-2 {
    font-size: 28px;
  }

  .container-3 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .quick-stack-3 {
    grid-column-gap: 47px;
    grid-row-gap: 47px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .flex-block-2 {
    height: auto;
    padding-bottom: 32px;
  }

  .image-2 {
    top: -82px;
  }

  .quick-stack-4 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .container-4 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .flex-block-3.evme-menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .flex-block-4 {
    width: 80%;
  }

  .container-8 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .flex-block-6 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    justify-items: center;
    width: 60%;
    display: grid;
  }

  .flex-block-partner {
    flex-flow: column;
  }

  .modal-outsource {
    display: none;
  }

  .box-service-modal {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    height: auto;
    padding: 24px;
  }

  .service-image {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 64%;
  }

  .service-detail {
    width: 100%;
  }

  .modal-evme {
    display: none;
  }

  .modal-morcon {
    width: 100%;
    height: 100%;
    display: none;
  }

  .image-3 {
    text-align: center;
  }

  .icon {
    color: var(--white);
    display: block;
  }

  .nav-menu {
    background-color: var(--dark-gray);
  }

  .menu-button {
    display: block;
  }

  .menu-button.w--open {
/*    background-color: var(--dark-gray);*/
    background-color: #ffffff !important;
;
  }
  }

  .cell-13 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .image-4 {
    max-width: 60%;
  }

  .image-8 {
    position: static;
  }

  .div-block-2 {
    height: 72px;
  }

  .quick-stack-7 {
    padding-top: 156px;
    padding-bottom: 128px;
  }

  .text-quote {
    font-size: 28px;
  }

  .para-job.dark-paragraph {
    text-align: left;
    font-size: 14px;
  }

  .container-9 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-stack-3-copy {
    grid-column-gap: 47px;
    grid-row-gap: 47px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .modal-waanx, .modal-sikarin, .modal-lightnet {
    display: none;
  }

  .flex-block-customers {
    flex-flow: wrap;
  }

  .quick-stack-3-copy-copy, .backup-lollow {
    grid-column-gap: 47px;
    grid-row-gap: 47px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    text-align: center;
    font-size: 32px;
    line-height: 40px;
  }

  .heading-2 {
    max-width: 80vw;
    font-size: 14px;
    line-height: 24px;
  }

  .div-block {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button.in-form-btn {
    margin-top: 20px;
  }

  .quick-stack-2 {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .cell {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .heading-3 {
    font-size: 32px;
  }

  .heading-3.dark-heading {
    font-size: 28px;
  }

  .paragraph {
    font-size: 14px;
    line-height: 18px;
  }

  .paragraph.dark-paragraph {
    text-align: left;
    line-height: 20px;
  }

  .container-3 {
    padding-top: 32px;
  }

  .quick-stack-3 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .flex-block-2 {
    height: auto;
  }

  .image-2 {
    top: -72px;
  }

  .container-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .project-name {
    font-size: 16px;
  }

  .container-7 {
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .flex-block-4 {
    width: 100%;
    margin-bottom: 48px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 24px;
  }

  .quick-stack-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-menu {
    height: 58px;
  }

  .tab-link-tab-1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .tab-link-tab-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .tab-link-tab-2.w--current {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .text-footer-bottom {
    font-weight: 400;
  }

  .modal-outsource {
    display: none;
  }

  .box-service-modal {
    padding: 16px;
  }

  .service-image {
    width: 80%;
  }

  .service-detail {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .modal-header {
    font-size: 24px;
    line-height: 30px;
  }

  .modal-evme {
    display: none;
  }

  .modal-morcon {
    width: 100%;
    height: 100%;
    display: none;
  }

  .icon.hider {
    display: none;
  }

  .nav-menu, .menu-button.w--open {
    background-color: var(--dark-gray);
  }

  .image-4 {
    max-width: 80%;
  }

  .image-5 {
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
  }

  .div-block-2 {
    height: 80px;
  }

  .quick-stack-7 {
    padding-top: 128px;
  }

  .para-job {
    font-size: 14px;
    line-height: 18px;
  }

  .para-job.dark-paragraph {
    text-align: left;
    line-height: 20px;
  }

  .flex-block-12 {
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .heading-th {
    font-size: 24px;
    line-height: 32px;
  }

  .quick-stack-3-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .modal-waanx, .modal-sikarin, .modal-lightnet {
    display: none;
  }

  .flex-block-customers {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quick-stack-3-copy-copy, .backup-lollow {
    padding-left: 24px;
    padding-right: 24px;
  }
}

#w-node-_4d893b33-f6b7-f57a-b73d-493744db3ce7-98edec49, #w-node-_4bee9208-6a28-512c-4f2a-8a18d563818c-98edec49, #w-node-_3c3b6f45-1bf3-893c-e3f5-b26f2fbdcf36-98edec49 ,#CUSTOMS-BROKERAGE,#AIR-FREIGHT{
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e701f525-753b-438d-c4ba-6ee8a474ddd1-98edec49 {
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr 1fr .4fr;
  display: none;
}

#w-node-_3550916e-c0af-37a0-d827-b93880de6f2f-98edec49 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_9f9ff80d-6781-5ee1-1ebc-f7af1d0a99a5-98edec49, #w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdae-98edec49 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  #w-node-_4d893b33-f6b7-f57a-b73d-493744db3ce7-98edec49, #w-node-_4bee9208-6a28-512c-4f2a-8a18d563818c-98edec49, #w-node-_3c3b6f45-1bf3-893c-e3f5-b26f2fbdcf36-98edec49, #w-node-e701f525-753b-438d-c4ba-6ee8a474ddd1-98edec49, #w-node-_3550916e-c0af-37a0-d827-b93880de6f2f-98edec49, #w-node-_9f9ff80d-6781-5ee1-1ebc-f7af1d0a99a5-98edec49, #w-node-_418c75de-8d3b-05a8-2d9c-0bee3395fdae-98edec49 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4bee9208-6a28-512c-4f2a-8a18d563818c-98edec49, #w-node-_3c3b6f45-1bf3-893c-e3f5-b26f2fbdcf36-98edec49, #w-node-e701f525-753b-438d-c4ba-6ee8a474ddd1-98edec49 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@font-face {
  font-family: 'Pilcrowrounded';
  src: url('https://cdn.prod.website-files.com/662f06da6c32223398edec43/662f3d0401efd45c633049fa_PilcrowRounded-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pilcrowrounded';
  src: url('https://cdn.prod.website-files.com/662f06da6c32223398edec43/662f3d0466f81a81af0fe57e_PilcrowRounded-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pilcrowrounded';
  src: url('https://cdn.prod.website-files.com/662f06da6c32223398edec43/662f3d050f64ded5e5e6f3c1_PilcrowRounded-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pilcrowrounded';
  src: url('https://cdn.prod.website-files.com/662f06da6c32223398edec43/662f3d042cbfe6d052a41fab_PilcrowRounded-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pilcrowrounded';
  src: url('https://cdn.prod.website-files.com/662f06da6c32223398edec43/662f3d05edcb56170e7a75db_PilcrowRounded-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}