
/*-----------------------------------------------------------------------------------

	Theme Name: Yellow Hats
	Theme URI: #
	Description: The Construction HTML5 Template
	Author: 7roof
	Author URI: http://themeforest.net/user/7roof
	Version: 1.0

-----------------------------------------------------------------------------------*/
/*!
// Contents
// ------------------------------------------------>

	1.  Global Styles
	2.  Typography
	3.  Color
	4.  Align
	5.  Background
	6.  Buttons
	7.  Forms
	8.  Icons
	9.  List
	10. Media
	11. Tabs
	12. Accordions
	13. Loading
	14. Header
	15. Heading
	16. Page Title
	17. Hero
	18. About
	19. Team
	20. Testimonial
	21. Services
	22. Projects
	23. Action
	24. Facts
	25. Pricing Tables
	26. Blog
	27. sidebar
	28. Shop
	29. Contact
	30. Footer
	31. 404
	32. Soon
/*------------------------------------*\
#GLOBAL STYLES
\*------------------------------------*/
html {
  font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* ใช้อันนี้แทน scroll-margin-top */
}


/* ทำให้แท็บ 5 อันกว้างเท่ากันพอดีจอ */
.services-tabs {
  display: flex;
  flex-wrap: nowrap;        /* ไม่ตกล่าง */
  width: 100%;
  gap: 0;                   /* ถ้าอยากมีช่องไฟระหว่างแท็บ ค่อยตั้งค่าเช่น gap: 8px; */
  border-bottom: 1px solid #ddd; /* คงสไตล์เดิมของ nav-tabs */
}
.services-tabs > li {
  flex: 1 1 0;              /* แบ่งพื้นที่เท่า ๆ กัน */
  float: none !important;   /* ล้าง float ของ Bootstrap 3 */
  text-align: center;
}
.services-tabs > li > a {
  display: block;
  padding: 14px 10px;       /* ปรับได้ตามดีไซน์ */
  white-space: normal;      /* ให้ขึ้นบรรทัดใหม่ได้กรณีชื่อยาว */
}

/* ไอคอนอยู่บน ข้อความอยู่ล่าง ดูเรียบร้อย */
.services-tabs .service-icon {
  display: block;
  line-height: 0;
  margin-bottom: 6px;
}
.services-tabs .service-icon img {
  max-height: 50px;         /* ปรับขนาดไอคอน */
  vertical-align: middle;
}

/* Mobile: ถ้าพื้นที่แคบ ให้เลื่อนได้ด้านข้าง */
@media (max-width: 767px) {
  .services-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .services-tabs > li {
    flex: 0 0 auto;         /* ให้กว้างตามเนื้อหา */
    min-width: 140px;       /* หรือ 160px ตามความเหมาะสม */
  }
}




/* ปรับตัวเลขตามความสูง navbar ของคุณ (เช่น 80–120px) */
#about-section {
  scroll-margin-top: 100px;
}

html, body {
  background-color: #fff;
  font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #292e31;
  line-height: 1.5;
  margin: 0;
}


:root{ --gt-accent:#fe6500; --gt-card:#151a2c; --gt-text:#e9e9ee; }


/* =========================
   FLOATING BUTTONS
   Back to top + Contact Menu
========================= */

/* ปุ่ม Back to Top อันเดิม */
.gt-backtop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;

  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);

  background: var(--gt-card);
  color: var(--gt-text);

  display: grid;
  place-items: center;

  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  cursor: pointer;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
}

.gt-backtop:hover {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)), var(--gt-card);
  color: #fff;
}

.gt-backtop.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* กล่องปุ่ม Contact อยู่เหนือปุ่ม Back to Top */
.gt-contact-float {
  position: fixed;
  right: 16px;
  bottom: 74px;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ปุ่มหลัก Contact และปุ่มย่อย */
.gt-contact-main,
.gt-contact-item {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);

  background: var(--gt-card);
  color: var(--gt-text);

  display: grid;
  place-items: center;

  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  text-decoration: none;
  cursor: pointer;

  transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
}

/* ปุ่มหลัก Contact */
.gt-contact-main {
  background: #f54500;
  color: #ffffff;
  border-color: rgba(255,255,255,.18);
  position: relative;
}

.gt-contact-main:hover {
  background: #ff651f;
  color: #ffffff;
}

/* ปุ่มย่อย ซ่อนก่อน */
.gt-contact-item {
  opacity: 0;
  transform: translateY(12px) scale(.85);
  pointer-events: none;
}

/* ตอนเปิดเมนู */
.gt-contact-float.open .gt-contact-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* สีปุ่มย่อย */
.gt-phone {
  color: #ffffff;
}

.gt-line {
  color: #06c755;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
}

.gt-facebook {
  color: #1877f2;
  font-size: 28px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
}

/* hover ปุ่มย่อย */
.gt-contact-item:hover {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)), var(--gt-card);
  transform: translateY(-3px) scale(1);
  text-decoration: none;
}

.gt-phone:hover {
  color: #ffffff;
}

.gt-line:hover {
  color: #06c755;
}

.gt-facebook:hover {
  color: #1877f2;
}

/* สลับ icon แชท / ปิด */
.gt-contact-main .icon-close {
  display: none;
}

.gt-contact-float.open .gt-contact-main .icon-chat {
  display: none;
}

.gt-contact-float.open .gt-contact-main .icon-close {
  display: block;
}

/* มือถือ */
@media (max-width: 768px) {
  .gt-backtop {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .gt-contact-float {
    right: 14px;
    bottom: 70px;
    gap: 8px;
  }

  .gt-contact-main,
  .gt-contact-item {
    width: 44px;
    height: 44px;
  }
}

/* ลด motion */
@media (prefers-reduced-motion: reduce) {
  .gt-backtop,
  .gt-contact-main,
  .gt-contact-item {
    transition: none;
  }
}










* {
	outline: none;
}

::-moz-selection {
text-shadow:none;
}

::selection {
	background-color: #d70000;
	color: #fff;
	text-shadow: none;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #d70000;
}

a:hover {
	color: #fe6500;
	text-decoration: none;
}

a:focus {
	color: #fe6500;
	outline: none;
	text-decoration: none;
}

a:active {
	color: #fe6500;
	outline: none;
	text-decoration: none;
}

textarea {
	resize: none
}

.form-control {
	background-color: transparent;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border-top: none;
	border-right: 0;
	border-left: 0;
	border-bottom: 2px solid #e5e5e5;
	font-size: 13px;
	color: #a9a9a9;
	height: 49px;
	margin-bottom: 50px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	padding-left: 0;
}

.form-control:focus {
	border-bottom-color: #d70000;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

button.btn {
	margin-bottom: 0
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
	outline: none
}

.modal-backdrop {
	z-index: 1020;
	background-color: rgba(34, 34, 34, 0.95);
}

/*------------------------------------*\
#TYPOGRAPHY
\*------------------------------------*/

/* Heading Text */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: #2f2f2f;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-weight: 700;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

h1,
.h1 {
	font-size: 32px;
}

h2,
.h2 {
	font-size: 28px;
}

h3,
.h3 {
	font-size: 25px;
}

h4,
.h4 {
	font-size: 22px;
}

h5,
.h5 {
	font-size: 18px;
}

h6,
.h6 {
	font-size: 14px;
}

p {
	color: #9e9e9e;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 23px;
}

.lead {
	font-size: 16px;
	line-height: 1.8;
}

/* Aligning Text */
.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-just {
	text-align: justify !important;
}

.align-top {
	vertical-align: top;
}

.align-bottom {
	vertical-align: bottom;
}

.align-middle {
	vertical-align: middle;
}

.align-baseline {
	vertical-align: baseline
}

/* Weight Text */
.bold {
	font-weight: bold;
}

.regular {
	font-weight: normal;
}

.italic {
	font-style: italic;
}

.break-word {
	word-wrap: break-word;
}

.no-wrap {
	white-space: nowrap;
}

/* Text Color */
.text-white {
	color: #fff !important;
}

.text-black {
	color: #2f2f2f;
}

.text-capitalize {
	text-transform: capitalize
}

.text-uppercase {
	text-transform: uppercase
}

.font-heading {
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
}

.font-body {
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
}

.font-18 {
	font-size: 18px;
}

.font-16 {
	font-size: 16px;
}

.font-40 {
	font-size: 40px;
}

.font-secondary {
	font-family: 'Droid Serif', serif
}

/* quotes style */
blockquot,
.blockquote {
	font-size: 20px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-style: italic;
	line-height: 28px;
	font-weight: 500;
	padding: 30px 0 30px 30px;
}

.quote-author {
	display: block;
	font-size: 13px;
	font-style: normal;
	margin-top: 20px;
	line-height: 28px;
}

.blockquote-1 {
	border-left: 6px solid #222222;
}

.blockquote-3,
.blockquote-4 {
	padding-right: 30px;
}

.blockquote-2,
.blockquote-3,
.blockquote-4 {
	border-left: none;
}

.blockquote-2:before {
	content: "\f10d";
	font-family: fontawesome;
	font-size: 16px;
	position: absolute;
	top: 0;
	left: 0;
	color: #222222;
	line-height: 1.8;
}

.blockquote-2:after {
	content: "\f10e";
	font-family: fontawesome;
	font-size: 16px;
	color: #222222;
	position: absolute;
	right: 0;
	bottom: 0;
	line-height: 1.8;
}

.blockquote-3 {
	color: #ffc527;
	background-color: #f9f9f9;
	border-radius: 5px;
}

.blockquote-3 .quote-author {
	color: #828282
}

.blockquote-4 {
	color: #fff;
	background-color: #222222;
	border-radius: 5px;
}

/* Lists */
ul.list {
	padding: 0;
	font-size: 13px;
	list-style-type: none;
}

ul.list li {
	font-size: 13px;
	font-weight: 500;
	line-height: 30px;
}

ul.icon-list li i {
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 10px;
	color: #2f2f2f;
}

ul.number-list li span {
	font-size: 13px;
	font-weight: 700;
	line-height: 30px;
	margin-right: 15px;
	color: #2f2f2f;
}

ul.dot-list li i {
	font-size: 7px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 19px;
	color: #2f2f2f;
}

/*------------------------------------*\
#COLORS
\*------------------------------------*/
.color-heading {
	color: #2f2f2f !important
}

.color-theme {
	color: #fe6500 !important
}

.color-white {
	color: #fff !important
}

.color-gray {
	color: #f9f9f9 !important
}

/*------------------------------------*\
#ALIGN
\*------------------------------------*/
p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
	margin-bottom: 20px;
}

section {
	padding-top: 30px;
	padding-bottom: 30px;
	;
	overflow: hidden;
}

footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

/* All margin */
.m-0 {
	margin: 0;
}

.m-xs {
	margin: 10px;
}

.m-sm {
	margin: 20px;
}

.m-md {
	margin: 40px;
}

.m-lg {
	margin: 80px;
}

/* top margin */
.mt-0 {
	margin-top: 0;
}

.mt-xs {
	margin-top: 10px;
}

.mt-sm {
	margin-top: 20px;
}

.mt-md {
	margin-top: 40px;
}

.mt-lg {
	margin-top: 80px;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-60 {
	margin-top: 60px;
}

.mt-150 {
	margin-top: 150px;
}

/* bottom margin */
.mb-0 {
	margin-bottom: 0 !important;
}

.mb-xs {
	margin-bottom: 10px;
}

.mb-sm {
	margin-bottom: 20px;
}

.mb-md {
	margin-bottom: 40px !important;
}

.mb-lg {
	margin-bottom: 80px;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-50 {
	margin-bottom: 50px!important;
}

.mb-60 {
	margin-bottom: 60px!important;
}

.mb-150 {
	margin-bottom: 150px!important;
}

/* right margin */
.mr-0 {
	margin-right: 0;
}

.mr-xs {
	margin-right: 10px;
}

.mr-sm {
	margin-right: 20px;
}

.mr-md {
	margin-right: 40px;
}

.mr-lg {
	margin-right: 80px;
}

.mr-30 {
	margin-right: 30px !important;
}

.mr-50 {
	margin-right: 50px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-150 {
	margin-right: 150px;
}

/* left margin */
.ml-0 {
	margin-left: 0;
}

.ml-xs {
	margin-left: 10px;
}

.ml-sm {
	margin-left: 20px;
}

.ml-md {
	margin-left: 40px;
}

.ml-lg {
	margin-left: 80px;
}

.ml-30 {
	margin-left: 30px !important;
}

.ml-50 {
	margin-left: 50px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-150 {
	margin-left: 150px;
}

/* All padding */
.p-0 {
	padding: 0;
}

.p-xs {
	padding: 10px;
}

.p-sm {
	padding: 20px;
}

.p-md {
	padding: 40px;
}

.p-lg {
	padding: 80px;
}

/* top padding */
.pt-0 {
	padding-top: 0;
}

.pt-xs {
	padding-top: 10px;
}

.pt-sm {
	padding-top: 20px;
}

.pt-md {
	padding-top: 40px;
}

.pt-lg {
	padding-top: 80px;
}

.pt-60 {
	padding-top: 60px;
}

/* bottom padding */
.pb-0 {
	padding-bottom: 0;
}

.pb-xs {
	padding-bottom: 10px;
}

.pb-sm {
	padding-bottom: 20px;
}

.pb-md {
	padding-bottom: 40px;
}

.pb-lg {
	padding-bottom: 80px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-100 {
	padding-bottom: 100px;
}

/* right padding */
.pr-0 {
	padding-right: 0;
}

.pr-xs {
	padding-right: 10px;
}

.pr-sm {
	padding-right: 20px;
}

.pr-md {
	padding-right: 40px;
}

.pr-lg {
	padding-right: 80px;
}

.pr-30 {
	padding-right: 30px !important;
}

.pr-50 {
	padding-right: 50px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-150 {
	padding-right: 150px;
}

/* left padding */
.pl-0 {
	padding-left: 0;
}

.pl-xs {
	padding-left: 10px;
}

.pl-sm {
	padding-left: 20px;
}

.pl-md {
	padding-left: 40px;
}

.pl-lg {
	padding-left: 80px;
}

/* Postions */
.fixed {
	position: fixed;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.static {
	position: static;
}

/* Zindex*/
.zindex-1 {
	z-index: 1;
}

.zindex-2 {
	z-index: 2;
}

.zindex-3 {
	z-index: 3;
}

/* Borders */
.border-all {
	border: 1px solid #fe6500;
}

.border-top {
	border-top: 1px solid #fe6500;
}

.border-bottom {
	border-bottom: 1px solid #fe6500;
}

.border-right {
	border-right: 1px solid #fe6500;
}

.border-left {
	border-left: 1px solid #fe6500;
}

/* Display */
.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.hide {
	display: none;
}

.flex {
	display: flex;
}

@media only screen and (max-width : 767px ) {

section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.text-center-xs {
	text-align: center !important
}

.pull-none-xs {
	float: none !important;
	text-align: center !important
}

.mb-15-xs {
	margin-bottom: 15px;
}

.mb-30-xs {
	margin-bottom: 30px !important;
}

.mb-50-xs {
	margin-bottom: 50px;
}

.mb-60-xs {
	margin-bottom: 60px!important;
}
}

@media only screen and (min-width : 768px) and (max-width : 991px) {

.text-center-sm {
	text-align: center !important
}

.mb-0-sm {
	margin-bottom: 0;
}

.mb-15-sm {
	margin-bottom: 15px;
}

.mb-30-sm {
	margin-bottom: 30px !important;
}

.mb-50-sm {
	margin-bottom: 50px;
}

.mb-60-sm {
	margin-bottom: 60px;
}

.pb-15-sm {
	padding-bottom: 15px;
}

.pb-30-sm {
	padding-bottom: 30px;
}

.pb-50-sm {
	padding-bottom: 50px;
}

.pb-60-sm {
	padding-bottom: 60px;
}
}

.border-b {
	border-bottom: 1px solid #e5e5e5;
}

/*------------------------------------*\
#BACKGROUNDS
\*------------------------------------*/
.bg-theme {
	background-color: #fe6500 !important
}

.bg-gray {
	background-color: #f9f9f9 !important
}

.bg-dark {
	background-color: #232323 !important
}

.bg-white {
	background-color: #fff !important
}

.bg-dark h6 { color:#f6f6f7} 
/* Background Image */
.bg-section {
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
}

.bg-overlay:before {
	content: "";
	display: inline-block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.bg-overlay-light:before {
	background-color: rgba(255,255,255, 0.6);
}

.bg-overlay-dark:before {
	background-color: rgba(47, 47, 47, 0.95);
}

.bg-overlay-theme:before {
	background-color: rgba(255, 197, 39, 0.9);
}

.bg-overlay-gradient:before {
	background: rgba(25, 23, 23, 0.8); /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, rgba(25, 23, 23, 0.8), rgba(34, 34, 34, 0.2)); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, rgba(25, 23, 23, 0.8), rgba(34, 34, 34, 0.2)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.col-img {
	height: 660px;
	padding: 60px;
	overflow: hidden
}

.col-content {
	padding: 100px 0 50px 100px;
}

.section-img {
	padding: 0
}

.col-bg {
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/*------------------------------------*\
#BUTTONS
\*------------------------------------*/
.btn {
	position: relative;
	z-index: 2;
}

.btn::before,
.btn::after {
	top: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.btn:before {
	right: 0;
}

.btn:after {
	left: 0;
}

.btn:hover:before,
.btn:hover:after {
	width: 0;
}

.btn-primary,
.btn-secondary {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 0;
	line-height: 49px;
	width: 170px;
	height: 51px;
	text-align: center;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif
}

.btn-primary {
	background-color: #fe6500;
	color: #fff;
	border: 2px solid #fe6500;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #2f2f2f;
	color: #fff;
	border: 2px solid #2f2f2f
}

.btn-primary:hover::before,
.btn-primary:hover::after {
	background-color: #fe6500;
}

.btn-secondary {
	background-color: transparent;
	color: #2f2f2f;
	border: 2px solid #2f2f2f
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
	background-color: #2f2f2f;
	color: #fff;
	border: 2px solid #2f2f2f
}

.btn-secondary:hover::before,
.btn-secondary:hover::after {
	background-color: #fe6500;
}

.btn-primary.btn-white {
	background-color: #fff;
	border-color: #fff;
	color: #2f2f2f;
}

.btn-primary.btn-white:hover::before,
.btn-primary.btn-white:hover::after {
	background-color: #fff;
}

.btn-primary.btn-white:hover,
.btn-primary.btn-white:focus,
.btn-primary.btn-white:active {
	background-color: #2f2f2f;
	color: #fff;
	border: 2px solid #2f2f2f
}

.btn-primary.btn-black {
	background-color: #2f2f2f;
	border-color: #2f2f2f;
	color: #fff;
}

.btn-primary.btn-black:hover::before,
.btn-primary.btn-black:hover::after {
	background-color: #2f2f2f;
}

.btn-primary.btn-black:hover {
	background-color: #fe6500;
}

.bg-overlay-theme .btn-primary.btn-black:hover {
	background-color: #fff;
	color: #2f2f2f;
	border-color: #fff
}

.btn-secondary.btn-filled {
	background-color: #2f2f2f;
	color: #fff;
}

.btn-secondary.btn-white {
	border-color: #fff;
	color: #fff;
}

.btn-secondary.btn-filled:hover,
.btn-secondary.btn-white:hover {
	background-color: #fe6500;
	color: #fff;
	border-color: #fe6500;
}

.bg-overlay-theme .btn-secondary.btn-filled:hover,
.bg-overlay-theme .btn-secondary.btn-white:hover {
	background-color: #fff;
	color: #2f2f2f;
	border-color: #fff;
}

.btn.btn-block {
	width: 100%;
}

.btn-auto {
	width: auto
}

.bg-theme .btn-primary.btn-black:hover::before,
.bg-theme .btn-primary.btn-black:hover::after {
	background-color: #fff;
}

.bg-theme .btn-primary.btn-black:hover {
	background-color: #fff;
	color: #2f2f2f;
	border-color: #fff;
}

/*------------------------------------*\
#ACCORDION
\*------------------------------------*/
.accordion .panel {
	border-color: rgba(49, 49, 49, 0.1);
	padding: 23px 23px 0 23px;
	margin-bottom: 20px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
}

.accordion .panel .panel-heading {
	background-color: transparent;
	padding: 0 0 23px 0;
}

.accordion .panel .panel-heading h4 {
	font-size: 16px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	color: #313131;
	line-height: 1;
	font-weight: 700;
}

.accordion .panel-heading {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.accordion .panel-heading a {
	line-height: 30px;
}

.accordion .panel-heading a:hover,
.accordion .panel-heading a:focus,
.accordion .panel-heading a:active {
	text-decoration: none
}

.accordion .panel-heading .accordion-toggle:after {
	content: "\f068";   		/* symbol for "opening" panels */
	float: right;
	font-family: fontawesome;
	font-size: 10px;
	color: #fff;
	background-color: #fe6500;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
}

.accordion .panel-heading .accordion-toggle.collapsed:after {
	content: "\f067";    /* symbol for "collapsed" panels */
	color: #fe6500;
	background-color: transparent;
}

.accordion .panel .panel-body {
	border-top-color: rgba(49, 49, 49, 0.1);
	padding: 20px 0;
	color: #9e9e9e;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
}

/*------------------------------------*\
#LOADING-SECTION
\*------------------------------------*/
.preloader {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	z-index: 99999;
	background-color: #fff;
	overflow: hidden;
}

.spinner {
	margin: -40px 0 0 -40px;
	width: 70px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: #fe6500;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
 @-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0)
}
40% {
-webkit-transform: scale(1.0)
}
}
 @keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}

/*------------------------------------*\
#HEADER
\*------------------------------------*/
.transparent-header {
	background-color: transparent;
	height: 94px;
}

.transparent-header + section {
	margin-top: -94px; /*padding-top:210px;*/
}

.transparent-header .navbar {
	background-color: transparent;
	height: 94px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
	margin-bottom: 0
}

.navbar.affix {
	background-color: rgba(0,0,0,0.7);
	padding-top: 0
}

.navbar .logo {
	height: 94px;
	line-height: 94px;
}

.navbar-nav {
	margin-right: 0
}

.navbar-nav >li {
	margin-right: 30px;
	height: 94px;
}

.navbar-nav li a {
	font-size: 13px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
}

.navbar-nav >li >a {
	color: #fff;
	line-height: 94px;
	padding: 0;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background-color: transparent;
	border: none;
}

.navbar-nav > li.active {
	border-bottom: 2px solid #fe6500;
}

.navbar-nav > li.active > ul {
	margin-top: 0;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
	background-color: transparent
}

/* ให้ li เป็นจุดอ้างอิงของ ::after */
.navbar-nav > li { position: relative; }

/* เส้นส้ม: ค่าเริ่มต้นซ่อนอยู่ */
.navbar-nav > li::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fe6500;
  content: '';
  opacity: 0;
  transform: translateY(-10px);
  transition: transform .3s ease, opacity .3s ease;
  /* margin-top: -2px;  // ถ้าจำเป็นค่อยใส่ ถ้าไม่ต้องก็ลบได้ */
}

/* แสดงเส้นทั้งตอน hover และตอน active (ไม่ต้องรอ hover) */
.navbar-nav > li:hover::after,
.navbar-nav > li.active::after {
  opacity: 1;
  transform: translateY(0);
}

/* ลบ/คอมเมนต์บรรทัดนี้ทิ้งไป */



.module {
	display: inline-block;
	position: relative
}

.module span.title {
	display: none
}

.module-search .search-icon {
	line-height: 94px;
	cursor: pointer;
}

.module-search .search-icon i {
	font-size: 14px;
	color: #fff;
	border-left: 1px solid #fff;
	padding-left: 30px;
	padding-right: 20px;
	line-height: 23px;
}

.module-search .search-icon:hover i {
	color: #fe6500;
}

.module-search .search-box .search-form {
	margin-bottom: 0
}

.module-search .search-box .search-form .input-group {
	height: 100%;
}

.module-search .search-box .search-form .btn {
	background-color: #fe6500;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	color: #fff
}

.module-search .search-box .search-form input {
	border: none;
	font-size: 13px;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #9e9e9e;
	height: 100%;
	padding-right: 0;
	padding-top: 11px;
	padding-bottom: 11px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.module-cart .cart-icon {
	line-height: 94px;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
}

.module-cart .cart-label {
	background-color: #fe6500;
	font-size: 11px;
	font-weight: bold;
	padding: 2px 3px
}

.cart-box .cart-overview li {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 20px;
	position: relative
}

.cart-box .cart-overview li:last-child {
	margin-bottom: 0
}

.cart-box .cart-overview li a {
	font-size: 0
}

.cart-box .cart-overview li a:after {
	font-family: fontawesome;
	content: "\f00d";
	font-size: 12px;
	position: absolute;
	text-align: center;
	right: 0;
	top: 0;
	width: 19px;
	height: 19px;
	line-height: 19px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: #000000;
	color: #fff
}

.cart-box .cart-overview img {
	width: 70px;
	height: 70px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-right: 15px;
	position: absolute
}

.cart-box .cart-overview .product-meta {
	padding-left: 90px;
}

.cart-box .cart-overview h5 {
	font-size: 13px;
	text-transform: uppercase;
	color: #313131;
	margin-bottom: 0;
	line-height: 23px;
}

.cart-box .cart-overview p {
	font-size: 12px;
	line-height: 22px;
	color: #a9a9a9;
	margin-bottom: 0;
}

.cart-total {
	margin-top: 30px;
	margin-bottom: 30px;
}

.cart-total .total-desc {
	float: left;
	text-align: left
}

.cart-total .total-desc h5,
.cart-total .total-price h5 {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #5e5e5e
}

.cart-total .total-price {
	float: right;
	text-align: right;
}

.cart-box .cart-control .btn {
	width: 150px;
}






/*------------------------------------*\
#HERO-SECTION
\*------------------------------------*/

.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh; /* ให้สูงเต็มจอ */
  min-height: 760px;
  overflow: hidden;
  background: #000;

  /* สำคัญ: เอาขอบโค้งออก */
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* เงาดำทับรูป */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.50) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* ข้อความชิดซ้าย */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  padding-left: 70px;
  padding-right: 30px;
  max-width: 1180px;
}

.hero-category {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
}

.hero-category::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  background: #f54500;
  margin-top: 12px;
}

.hero-content h1 {
  font-family: "Noto Sans Thai", "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 28px;
  max-width: 1100px;
  color: #fff;
}

.hero-content p {
  font-family: "Noto Sans Thai", "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 1vw, 30px);
  line-height: 1.45;
  margin: 0 0 34px;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.hero-link span {
  color: #f54500;
  font-size: 38px;
  line-height: 1;
}

/* จุดด้านล่าง */
.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-dots .dot {
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots .dot.active {
  width: 55px;
  border-radius: 99px;
  background: #f54500;
}

/* ปุ่มซ้ายขวา */
.slider-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 36px;
  line-height: 42px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #f54500;
  color: #111;
  border-color: #f54500;
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

/* =========================
   HERO VIDEO ADD-ON
========================= */

.hero-slide {
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ปรับ overlay ให้เข้มขึ้นสำหรับวิดีโอ */
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* Responsive มือถือ */
@media (max-width: 768px) {
  .hero-slider {
    height: 520px;
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-category {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-link {
    font-size: 18px;
  }

  .slider-btn {
    display: none;
  }

  .hero-dots {
    bottom: 28px;
  }
}





/*------------------------------------*\
#Services
\*------------------------------------*/
.service .service-img {
	margin-bottom: 30px;
}

.service .service-desc h4 {
	margin-bottom: 20px;
	color: #313131;
	font-size: 17px;
	font-weight: 700;
	line-height: 25px;
	text-transform: uppercase;
}

.service-3 h4,
.service-4 .service-content h4,
.service-5 h4,
.service-6 h4 {
	position: relative;
	padding-bottom: 10px;
}

.service .service-desc p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
}

.service .service-desc a.read-more {
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #2f2f2f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service .service-desc a.read-more i {
	margin-right: 8px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service .service-desc a.read-more:hover {
	color: #fe6500
}

/* service #1 */
.service-1 .service-content > img {
	position: absolute;
	left: 0;
	padding-top: 30px;
	padding-left: 20px;
}

.service-1 .service-desc {
	padding-left: 70px;
}

.service-block .service-desc a.read-more span {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service-block:hover .service-desc a.read-more span {
	opacity: 1;
	visibility: visible
}

/* service #2 */
.service-2 .nav-tabs {
	border-bottom: none;
	margin-bottom: 50px;
}

.service-2 .nav-tabs li {
	text-align: center;
	padding-right: 0;
	padding-left: 0
}

.service-2 .nav-tabs li a {
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 17px;
	font-weight: bold;
	text-transform: uppercase;
	color: #2f2f2f;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	padding: 0
}

.service-2 .nav-tabs li a:hover {
	border-color: transparent
}

.service-2 .nav-tabs li.active a,
.service-2 .nav-tabs li.active a:hover,
.service-2 .nav-tabs li.active a:focus,
.service-2 .nav-tabs li a:hover,
.service-2 .nav-tabs li a:focus {
	background-color: transparent;
	border: none;
	color: #fe6500 !important;
	background-color: transparent;
}

.service-2 .nav-tabs li .service-icon {
	margin-bottom: 20px;
	height: 50px;
	overflow: hidden
}

.service-2 .nav-tabs li .service-icon img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.service-2 .nav-tabs li .service-icon img:first-of-type {
	margin-top: -48px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service-2 .nav-tabs li .service-icon img:last-of-type {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service-2 .nav-tabs li.active img:first-of-type,
.service-2 .nav-tabs li a:hover img:first-of-type {
	margin-top: 0;
}

.service-2 .nav-tabs li.active img:last-of-type,
.service-2 .nav-tabs li a:hover img:last-of-type {
	margin-top: 48px;
}

.service-2 .col-img {
	height: 716px;
}

.service-2 .tab-pane h3 {
	font-size: 37px;
	font-weight: 700;
	line-height: 25px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 50px;
}

.service-2 .tab-pane p {
	font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 45px;
}

.service-2 .tab-pane .tab-count {
	position: absolute;
	right: 0;
	font-size: 67px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	color: #fe6500
}

.service-2 .col-content {
	padding: 100px;
}

/* service #3 */
.service-3 .service-block h4:before {
	content: "";
	height: 2px;
	width: 20px;
	position: absolute;
	bottom: 0;
	display: inline-block;
	background-color: #fe6500;
}

.service-3 .service-block:hover h4,
.service-4 .service-block:hover h4,
.service-5 .service-block:hover h4 {
	color: #fe6500
}

.service-3 .service-block .service-img {
	width: 48px;
	height: 48px;
	overflow: hidden
}

.service-3 .service-block .service-img img {
	display: block;
}

.service-3 .service-block .service-img img:first-of-type {
	margin-left: -48px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service-3 .service-block .service-img img:last-of-type {
	position: relative;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin-top: -48px;
}

.service-3 .service-block:hover .service-img img:first-of-type {
	margin-left: 0;
}

.service-3 .service-block:hover .service-img img:last-of-type {
	margin-left: 48px;
}

/* service #4 */

.service-4 .service-content {
	margin-bottom: 60px;
}

.service-4 .service-content2 {
	padding-left: 100px;
}

.service-4 .service-content2 h4 {
	padding-bottom: 0;
	margin-bottom: 10px;
}

.service-4 .service-content2 .service-desc {
	padding-left: 0
}

.service-4 .service-block:hover h4:before,
.service-5 .service-block:hover h4:before {
	background-color: #fe6500;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.service-4 .service-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	background-color: #313131;
	position: relative;
	margin-left: 30px;
	margin-top: -70px;
	margin-bottom: 20px;
	overflow: hidden;
	padding-top: 13px;
	padding-bottom: 13px;
}

.service-4 .service-block .service-icon img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.service-4 .service-block .service-icon img:first-of-type {
	margin-left: -70px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.service-4 .service-block .service-icon img:last-of-type {
	position: relative;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin-top: -48px;
}

.service-4 .service-block:hover .service-icon img:first-of-type {
	margin-left: 13px;
}

.service-4 .service-block:hover .service-icon img:last-of-type {
	margin-left: 70px;
}

.service-4 .service-block:hover .service-icon {
	background-color: #fe6500;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* service #5 */
.service-4 .service-content h4:before,
.service-5 h4:before,
.service-6 h4:before {
	content: "";
	height: 2px;
	width: 20px;
	position: absolute;
	bottom: 0;
	display: inline-block;
	background-color: #2f2f2f;
}

.service-4 .service-desc,
.service-5 .service-desc {
	padding-left: 30px;
}

/* service #6 */
.service-6 .col-img {
	height: 761px;
}

.service-6 .heading {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.service-6 .heading .heading-bg {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.service-6 .heading h2,
.service-6 .heading p {
	color: #fff
}

.service-6 .service-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	background-color: #313131;
	position: relative;
	margin-bottom: 20px;
}

.service-6 .col-content {
	padding: 0;
}

.service-6 .service-block {
	padding: 50px 20px 50px 40px;
	border-left: 1px solid #e5e5e5
}

.service-6 .service-block:nth-child(3),
.service-6 .service-block:nth-child(4) {
	border-top: 1px solid #e5e5e5
}

.service-6 p {
	margin-bottom: 10px;
}

.service-6 {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5
}

.service-6 .service-block:hover {
	background-color: #fe6500}

.service-6 .service-block:hover h4,
.service-6 .service-block:hover p {
	color: #fff
}

.service-6 .service-block:hover h4:before {
	background-color: #fff
}

.service-6 .service-block:hover .service-icon {
	background-color: #fe6500
}

.service-6 .service-desc a.read-more:hover {
	color: #fff;
}

/* service #7 */
.service-7 .service-block h4 {
	margin-bottom: 10px;
}

/* service #8 */

.service-8 .col-content {
	background-color: rgba(255,197,39,.9);
	margin-top: 100px;
	margin-bottom: 100px;
	padding: 100px;
}

.service-8 .tab-content > .tab-pane {
	height: 720px;
}

.service-8 .tab-pane h3 .service .service-img2 {
	position: relative
}

.service .service-img2 >img {
	position: absolute;
	left: 0;
	top: 0
}

.service2 .service-block {
	margin-bottom: 50px;
}

/* Single Services */
.single-service .service-img {
	margin-bottom: 70px;
}

.single-service .service-title h3 {
	position: relative;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase
}

.single-service .service-title h3:before {
	content: "";
	height: 3px;
	width: 20px;
	position: absolute;
	bottom: 0;
	display: inline-block;
	background-color: #fe6500;
}

.single-service .feature h4 {
	font-size: 16px;
	line-height: 1;
}

.single-service .feature p {
	margin-bottom: 50px;
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 479px) {

.service-1 .service-img img,
.service-4 .service-img img,
.service-5 .service-img img,
.single-service .service-img img {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}

.service-1 .service-block,
.service-3 .service-block,
.service-5 .service-block,
.service-7 .service-block {
	margin-bottom: 30px;
}

.service-1 .service-block:last-of-type,
.service-3 .service-block:last-of-type,
.service-5 .service-block:last-of-type,
.service-7 .service-block:last-of-type {
	margin-bottom: 0
}

.service-2 .nav-tabs li {
	float: none;
	margin-bottom: 10px;
}

.service-2 .tab-pane h3 {
	font-size: 30px;
}

.service-2 .col-content {
	padding-right: 15px;
	padding-top: 70px;
	padding-left: 15px;
	text-align: center;
}

.service .service-img2 > img {
	position: relative;
	display: block;
	left: 0;
	top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
}

.service-4 .service-content2 {
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.service-6 .service-block:nth-child(3),
.service-6 .service-block:nth-child(4) {
	border-top: none;
}

.service-6 .service-block {
	padding-bottom: 0
}

.service-6 .service-block:last-of-type {
	padding-bottom: 50px;
}

.service-6 .col-img,
.service-2 .col-img {
	height: 461px;
}

.service-8 .tab-content > .tab-pane {
	height: auto;
}

.single-service .sidebar-services {
	margin-bottom: 50px;
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px)and (max-width : 767px ) {

.single-service .service-img img {
	width: 100%;
}

.service-1 .service-block,
.service-3 .service-block,
.service-5 .service-block,
.service-7 .service-block {
	margin-bottom: 30px;
}

.service-2 .nav-tabs {
	padding-left: 30px;
}

.service-2 .nav-tabs li {
	margin-right: 15px;
	margin-bottom: 15px;
}

.service-6 .col-img,
.service-2 .col-img {
	height: 561px;
}

.service-2 .col-content {
	padding-right: 15px;
	padding-top: 70px;
	padding-left: 15px;
	text-align: center;
}

.service .service-img2 > img {
	left: auto
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.service-1 .service-img img,
.service-4 .service-img img,
.service-5 .service-img img {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}

.service-2 .nav-tabs li {
	margin-right: 15px;
	margin-bottom: 15px;
}

.service-2 .col-content {
	padding: 50px 15px 50px 50px;
}

.service .service-img2 > img {
	left: auto
}

.service-6 .col-img {
	height: 461px;
}

.service-7 .service-block {
	margin-bottom: 30px;
}

.service-7 .service-block:nth-child(3),
.service-7 .service-block:nth-child(4) {
	margin-bottom: 0;
}

.service-8 .tab-content > .tab-pane {
	height: auto;
}

.single-service .service-img img {
	width: 100%;
}

.service2 .service-block:nth-child(3),
.service2 .service-block:nth-child(4) {
	margin-bottom: 50px;
}

.service-2 .nav-tabs li a {
	font-size: 13px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width : 1200px) {

.service-1 .service-img img,
.service-4 .service-img img,
.service-5 .service-img img,
.service-7 .service-img img {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}

.service-2 .col-content {
	padding-right: 90px;
	padding-top: 70px;
}

.service .service-img2 > img {
	left: auto
}

.service-6 .service-block {
	padding-top: 30px;
	padding-bottom: 30px;
}

.service-6 .col-img {
	height: 772px;
}

.service-8 .tab-content > .tab-pane {
	height: auto;
}

.single-service .service-img img {
	width: 100%;
}

.sidebar-services .download {
	padding: 24px 12px;
}

.sidebar-services .download .download-icon i {
	padding-left: 12px;
}
}

/*------------------------------------*\
#PROJECTS-SECTION
\*------------------------------------*/
.projects-filter {
	margin-top: 50px;
	margin-bottom: 40px;
	text-align: center
}

.projects-filter ul {
	text-align: center;
	margin-bottom: 0
}

.projects-filter ul li {
	margin-right: 30px;
}

.projects-filter ul li:last-child {
	margin-right: 0
}

.projects-filter ul li a {
	font-size: 13px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	color: #2f2f2f;
	padding-bottom: 8px;
	border-bottom: 2px solid transparent;
	font-weight: bold
}

.projects-filter ul li a:hover,
.projects-filter ul li a.active-filter {
	color: #fe6500;
	border-bottom: 2px solid #fe6500
}

.project-item {
	margin-bottom: 30px;
}

.project-img {
	position: relative;
	overflow: hidden;
}

.project-img img {
	display: block;
	position: relative;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.project-img .project-hover {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 49px;
	opacity: 0;
	background-color: rgba(47,47,47, 0.95);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.project-hover .project-meta {
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px);
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.project-hover h6 {
	color: #a9a9a9;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1;
}

.project-hover h4 {
	color: #fff;
	font-size: 18px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-weight: bold;
	text-transform: uppercase
}

.project-hover .project-zoom {
	position: absolute;
	bottom: 49px;
	opacity: 0;
	transform: translateY(100px);
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-o-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.project-img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.project-img:hover .project-hover {
	opacity: 1
}

.project-img:hover .project-meta {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
}

.project-img:hover .project-meta h6 {
	transition-delay: 0.2s;
}

.project-img:hover .project-meta h2 {
	transition-delay: 0.2s;
}

.project-img:hover .project-zoom {
	transition-delay: 0.2s;
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
}

.project-meta a {
	color: #fff
}

.project-meta a:hover {
	color: #fe6500
}

/* Projects Full Width*/
.projects-fullwidth .project-item {
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0
}

/* Project Single */
.project-carousel {
	margin-bottom: 70px;
}

.project-carousel .owl-controls {
	position: absolute;
	left: 30px;
	bottom: 30px;
}

.project-carousel .owl-controls .owl-nav div {
	width: 27px;
	height: 71px;
	line-height: 71px;
	background-color: #2f2f2f !important;
	border-radius: 0 !important;
	opacity: 1;
	text-align: center;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.project-carousel .owl-controls .owl-nav div:hover {
	background-color: #fe6500 !important;
	width: 71px;
}

.project-carousel .owl-controls .owl-nav div i {
	color: #fff;
	font-family: FontAwesome;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.single-project .project-title {
	position: relative
}

.single-project .project-block {
	padding: 30px;
	background-color: #f9f9f9;
}

.single-project .project-block .project-title:before {
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: 0;
	display: inline-block;
	background-color: #efefef;
}

.single-project .project-title:after {
	content: "";
	height: 3px;
	width: 30px;
	position: absolute;
	bottom: 0;
	display: inline-block;
	background-color: #fe6500;
}

.single-project .project-title h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	text-transform: capitalize;
	margin-bottom: 28px;
	padding-bottom: 9px;
	text-transform: uppercase
}

.single-project .project-block .project-title h3 {
	font-family: Raleway;
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 15px;
}

.single-project .project-desc p {
	color: #9e9e9e;
	font-family: Raleway;
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
}

.single-project .project-block li {
	font-family: Raleway;
	font-size: 14px;
	line-height: 29px;
	color: #313131;
	font-weight: 700;
}

.single-project .project-block li span {
	color: #9e9e9e;
	font-weight: 500;
	margin-left: 10px;
}

.single-project .project-block ul {
	margin-bottom: 0
}

/* pager */
.pager {
	margin: 0
}

.pager div {
	display: inline-block;
	margin: 0 10px;
}

.pager div a {
	width: 51px;
	height: 51px;
	line-height: 51px;
	border: 2px solid #2f2f2f;
	color: #2f2f2f;
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.pager div:hover a {
	color: #fff;
	border-color: #fe6500;
	background-color: #fe6500;
}

.project-widget {
	margin-bottom: 70px;
}

.pager-2 div {
	display: inline-block;
}

.pager-2 .page-next {
	float: right;
}

.pager-2 div a {
	width: 51px;
	height: 51px;
	line-height: 49px;
	border: 2px solid #2f2f2f;
	color: #2f2f2f;
	font-size: 16px;
	font-weight: 400;
	display: block;
	text-align: center;
	padding-right: 20px;
	padding-left: 20px;
	overflow: hidden;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.pager-2 .page-prev a span {
	margin-left: 8px;
	opacity: 0;
	visibility: hidden;
	color: #fff;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 49px;
	text-transform: uppercase;
	transform: translateX(-60px);
	-webkit-transform: translateX(-60px);
	-moz-transform: translateX(-60px);
	-o-transform: translateX(-60px);
	-ms-transform: translateX(-60px);
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.pager-2 .page-prev:hover a span {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
}

.pager-2 .page-next a span {
	margin-right: 8px;
	opacity: 0;
	visibility: hidden;
	color: #fff;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 49px;
	text-transform: uppercase;
	transform: translateX(100px);
	-webkit-transform: translateX(100px);
	-moz-transform: translateX(100px);
	-o-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
	display: none
}

.pager-2 .page-next:hover a span {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	display: inline-block
}

.pager-2 div:hover a {
	color: #fff;
	border-color: #fe6500;
	background-color: #fe6500;
	width: auto;
	padding-right: 50px;
	padding-left: 50px;
}

.projects-more {
	width: auto;
	margin-top: 50px
}

.projects-more i {
	margin-left: 8px;
}

#infscr-loading {
	position: absolute;
	bottom: -60px;
	width: 100%;
	text-align: center;
}

/* projects #2 */
.projects2 .heading p:first-child {
	color: #a9a9a9
}

.projects2 .heading h2 {
	color: #fff
}

.projects2 .projects-filter ul li a {
	color: #807f7f;
}

.projects2 .projects-filter ul li a:hover,
.projects2 .projects-filter ul li a.active-filter {
	color: #fe6500
}

.projects2 .project-img .project-hover {
	background-color: rgba(255,197,39, 0.9)
}

.projects2 .project-hover h6 {
	color: #f9f9f9;
}

.projects2 .project-zoom a {
	color: #2f2f2f;
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 479px) {

.projects-filter ul li {
	margin-bottom: 15px;
	margin-right: 0
}

.project-img img {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}

.project-carousel .owl-controls {
	bottom: 10px;
	left: 10px;
}

.project-carousel .owl-controls .owl-nav div {
	height: 40px;
	line-height: 45px;
	padding: 0 !important;
}

.project-carousel .owl-controls .owl-nav div:hover {
	width: 51px
}

.pager-2 .page-prev:hover a span,
.pager-2 .page-next:hover a span {
	display: none;
	opacity: 0;
	visibility: hidden
}

.projects-fullwidth.home-3-custom .projects-filter ul {
	text-align: center !important
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px)and (max-width : 767px ) {

.projects-filter ul li {
	margin-bottom: 15px;
	margin-right: 0
}

.project-img img {
	margin-right: auto;
	margin-left: auto
}

.project-carousel .owl-controls {
	bottom: 10px;
	left: 10px;
}

.pager-2 .page-prev:hover a span,
.pager-2 .page-next:hover a span {
	display: none;
	opacity: 0;
	visibility: hidden
}

.projects-fullwidth.home-3-custom .projects-filter ul {
	text-align: center !important
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.projects-filter ul li {
	margin-bottom: 15px;
	margin-right: 0
}
}

.projects-fullwidth.home-3-custom .projects-filter ul {
	text-align: right
}

.projects-fullwidth.home-3-custom .projects-filter ul li {
	margin-right: 10px;
}

/*------------------------------------*\
#ACTION-SECTION
\*------------------------------------*/
.cta-desc p {
	margin-bottom: 0;
	font-size: 14px;
	color: #f9f9f9;
	font-weight: 500;
	text-transform: capitalize;
}

.cta-desc h5 {
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	line-height: 1
}

.cta-devider {
	margin-left: 55px;
}

.cta-devider:before {
	content: "";
	width: 2px;
	height: 23px;
	background-color: #ff8600;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* Call To action #1 */
.cta-1,
.cta-2 {
	padding: 40px 35px;
	position: relative
}

.cta-1 .cta-img {
	position: relative
}

.cta-1 .cta-img img {
	position: absolute;
	top: -60px;
}

.cta-1 .cta-desc {
	padding-left: 20px;
}

.cta-1 .cta-desc p,
.cta-2 .cta-desc p {
	margin-bottom: 5px;
}

.cta-1 .cta-action {
	float: right
}

/* Call To action #2 */
.cta-2 i,
.cta-3,
.cta-4 i {
	font-size: 40px;
	color: #fff;
	text-align: center;
	line-height: 1;
}

.cta-2 .cta-desc {
	padding-left: 80px;
}

.cta-2 .cta-icon {
	position: absolute
}

/* Call To action #3 */
.cta-3,
.cta-4 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.cta-3 h2,
.cta-4 h2 {
	font-size: 55px;
	font-weight: 700;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.cta-3 p,
.cta-4 p {
	color: #f9f9f9;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', serif;
	font-size: 17px;
	font-weight: 700;
	font-style: italic;
	line-height: 26px;
	margin-bottom: 26px;
}

.cta-3 p:first-child,
.cta-4 p:first-child {
	line-height: 1
}

/* Call To action #4 */
.cta-4 h2 {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 0
}

.cta-p {
	color: #2f2f2f !important;
	font-size: 17px;
	font-weight: 600;
	line-height: 45px;
	margin-bottom: 30px;
}

/* Call To action #5 */
.cta-5 {
	padding: 40px 0px;
}

.cta-5 .cta-2 {
	padding: 0
}

/* Call To action #6 */
.cta-6 {
	padding-top: 134px;
	padding-bottom: 134px;
	overflow: inherit
}

.cta-6 h2 {
	color: #fff;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 39px;
	font-weight: 700;
	line-height: 42px;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.cta-6 p {
	color: #f9f9f9;
	font-size: 17px;
	font-weight: 600;
	line-height: 45px;
}

.cta-6 .cta-img {
	position: absolute;
	right: 0;
	top: 70px;
}

/* Module POPUP */
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
	padding-right: 17px;
}

.modal-dialog {
	margin-top: 40px;
	width: 360px;
}

.modal-content {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	background-color: #f9f9f9;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	border: none
}

.modal-body {
	padding: 30px 50px 50px;
}

.modal-body form {
	margin-bottom: 0
}

.modal-body .form-control {
	margin-bottom: 20px;
}

.modal-body .btn {
	text-align: center;
	margin-right: auto;
	margin-left: auto
}

.modal-header .close {
	position: absolute;
	font-size: 24px;
	top: -24px;
	right: 0;
	color: #fff;
	text-shadow: 0 1px 0 #fff;
	opacity: 1
}

.modal-header {
	border-bottom: none;
	background-color: #fe6500;
	padding: 33px;
}

.modal-header .model-icon {
	position: absolute
}

.modal-header .model-title {
	text-align: left;
	padding-left: 80px;
	position: relative;
}

.modal-header .model-divider {
	position: relative;
}

.modal-header .model-divider:before {
	content: "";
	width: 2px;
	height: 23px;
	background-color: #ff8600;
	position: absolute;
	top: 50%;
	left: 55px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.modal-header .model-title p {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.modal-header .model-title h6 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1px;
	text-transform: uppercase;
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 767px ) {

.cta {
	text-align: center
}

.cta-devider {
	margin-left: 0
}

.cta-devider:before {
	display: none
}

.cta-1 .cta-desc,
.cta-2 .cta-desc {
	padding-left: 0
}

.cta-1 .cta-action {
	float: none !important
}

.cta-desc p {
	margin-bottom: 10px;
}

.cta-desc h5 {
	margin-bottom: 20px;
}

.cta-2 .cta-icon {
	position: relative;
}

.cta-2 .btn-primary {
	margin-right: 0;
	margin-bottom: 10px;
}

.cta-2 .btn-secondary {
	margin-bottom: 10px;
}

.cta-4 h2 {
	font-size: 50px;
}

.cta-6 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.cta-6 h2 {
	font-size: 30px;
}

.modal-dialog {
	margin-right: auto;
	margin-left: auto
}

.modal-dialog {
	width: 100%;
	margin-left: auto;
	margin-right: auto
}

.modal-header .model-title h6 {
	font-size: 17px;
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px)and (max-width : 767px ) {

.cta-2 .btn-primary {
	margin-right: 10px;
	margin-bottom: 0;
}

.cta-2 .btn-secondary {
	margin-bottom: 0;
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.cta-1 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.cta-1 .cta-devider {
	margin-left: 137px;
}

.cta-1 .cta-action {
	float: none;
	margin-left: 137px;
	margin-top: 10px;
}

.cta-1 .cta-img img {
	top: -50px;
}

.cta-2 {
	text-align: center
}

.cta-2 .cta-icon {
	position: relative;
	margin-right: auto;
	margin-left: auto
}

.cta-2 .cta-devider:before {
	display: none
}

.cta-2 .cta-desc {
	padding-left: 0;
	margin-bottom: 20px;
}

.cta-2 .cta-action {
	float: none !important;
	text-align: center !important;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width:1200px) {

.cta-desc h5 {
	font-size: 18px;
}

.cta-2 .btn {
	width: 150px;
}

.cta-6 .cta-img {
	top: 125px;
}
}





/*------------------------------------*\
#FOOTER-SECTION
\*------------------------------------*/
footer {
	background-color: #1f1f1f;
	padding-top: 0;
	padding-bottom: 0;
}

footer hr {
	border-top-color: rgba(47, 47, 47, 0.2);
	margin-top: 0;
	margin-bottom: 0
}

.widgets-contact {
	background-color: #161616;
	padding-top: 40px;
	padding-bottom: 40px;
}

.widgets-contact p {
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 0;
}

.widgets-contact .widget-contact-icon {
	margin-right: 20px;
	margin-left: 20px;
}

.widgets-contact .widget-contact-icon i {
	font-size: 40px;
	color: #f9f9f9
}

.widgets-contact .widget-contact-icon:after {
	content: "";
	width: 2px;
	height: 22px;
	margin-left: 20px;
	background-color: #fe6500;
	display: inline-block
}

.widgets-contact .widget-contact-info p:last-child {
	color: #828282;
	font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
}

.widgets-contact .widget {
	padding-left: 40px;
	border-left: 2px solid #1f1f1f
}

.widgets-contact .widget:first-child {
	border-left: none
}

.widgets-contact.bg-theme {
	background-color: #fe6500;
}

.widgets-contact.bg-theme .widget-contact-icon:after {
	background-color: #fff;
}

.widgets-contact.bg-theme .widget-contact-icon i {
	color: #fff
}

.widgets-contact.bg-theme .widget-contact-info p:last-child {
	color: #1f1f1f;
}

.widgets-links {
	padding-top: 80px;
	padding-bottom: 80px;
}

.widgets-links h5 {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 10px;
}

.widgets-links p {
	color: #9e9e9e;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
}

.widgets-links .widget-about {
	padding-left: 0
}

.widgets-links .widget-about .widget-about-logo {
	padding-top: 47px
}

.widgets-links .widget-about .widget-about-info {
	padding-left: 76px;
}

.widgets-links ul li {
	margin-bottom: 0;
}

.widgets-links ul li a {
	color: #7f7f7f !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 26px;
}

.widgets-links ul li a:hover {
	color: #fe6500 !important
}

.widget-social {
	background-color: #1c1c1c;
	padding-top: 34px;
	padding-bottom: 34px;
	padding-left: 0
}

.widget-social p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	color: #f9f9f9;
}

.copyrights {
	padding-top: 40px;
	padding-bottom: 40px;
}

.widget-social-icon a {
	margin-left: 8px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	background-color: #161616;
	font-size: 15px;
	font-weight: 400;
	color: #9e9e9e;
	display: block;
	float: left;
	text-align: center;
	margin-top: 2px;
	overflow: hidden
}

.widget-social-icon a i {
	display: block;
	position: relative;
	line-height: 42px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget-social-icon a:hover {
	background-color: #fe6500;
	color: #222222
}

.widget-social-icon a:hover i:first-child {
	margin-top: -42px;
}

.widget-social-icon a i:last-child {
	color: #222222
}

.widget-newsletter-form form {
	margin-bottom: 0;
	height: 42px;
	line-height: 42px;
}

.widget-newsletter-form form .input-group {
	width: 390px;
}

.widget-newsletter-form form .form-control {
	background-color: transparent;
	color: #9e9e9e;
	border: 2px solid #292929;
	border-radius: 0;
	font-size: 12px;
	font-style: italic;
	width: 320px;
	height: 42px;
	line-height: 42px;
	padding-left: 16px;
	font-weight: 400;
}

.widget-newsletter-form form .form-control:focus {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.widget-newsletter-form form .btn {
	background-color: #292929;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 0 20px;
	height: 42px;
	line-height: 42px;
	text-align: center
}

.widget-newsletter-form form .btn:hover,
.widget-newsletter-form form .btn:focus {
	border-color: transparent;
	color: #fe6500
}

.copyrights p {
	color: #9b9b9b;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0;
	font-size: 13px;
}

.copyrights a {
	color: #fe6500
}

.copyrights a:hover,
.copyrights a:focus,
.copyrights a:active {
	color: #fff !important
}

/* footer #5 */
.footer-5 .widget-social {
	background-color: transparent;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 767px) {

.widgets-links {
	padding-top: 30px;
	padding-bottom: 30px;
}

.widgets-contact .widget-contact-info p:last-child {
	font-size: 12px;
}

.widgets-contact .widget {
	margin-bottom: 24px;
}

.widgets-contact .widget:last-of-type {
	margin-bottom: 0
}

.widgets-links .widget-about .widget-about-logo {
	padding-right: 0;
	padding-top: 0;
	margin-bottom: 12px;
}

.widgets-links .widget-about .widget-about-info {
	padding: 0
}

.widget-social-icon a {
	margin-bottom: 15px;
	text-align: center
}

.widget-newsletter-form form .input-group {
	width: 100%;
}

.widget-newsletter-form form .form-control {
	width: 100%
}

.widgets-links ul li {
	margin-bottom: 10px;
}

.widget-social-icon {
	margin: auto;
	margin-left: auto;
}

.widget-social-icon a {
	display: inline-block;
	float: none
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.widgets-contact .widget,
.widget-about {
	margin-bottom: 24px;
}

.widgets-links {
	padding-top: 40px;
	padding-bottom: 40px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and ( max-width:1200px) {

.widget-social-icon,
.widget-social-info,
.widget-newsletter-info,
.widget-newsletter-form {
	float: none !important
}

.widget-social-info,
.widget-newsletter-info {
	width: 100%;
	margin-bottom: 10px;
}

.widget-social-icon a:first-of-type {
	margin-left: 0
}
}

/*------------------------------------*\
#404
\*------------------------------------*/
.error-page {
	padding-top: 150px;
	padding-bottom: 150px;
}

.error-page h1 {
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-size: 135px;
	font-weight: 700;
	line-height: 99px;
	text-transform: uppercase;
	color: #2f2f2f;
	position: relative;
	z-index: 99;
	padding-top: 50px;
	margin-bottom: 0
}

.error-page h1:after {
	content: ".";
	color: #fe6500;
	font-size: 135px;
	display: inline-block
}

.error-page .error-title:before {
	content: "404";
	color: rgba(47, 47, 47, 0.07);
	font-size: 200px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	font-weight: 700;
	display: inline-block;
	position: absolute;
	margin-top: -80px;
	margin-left: -220px;
}

.error-page p {
	color: #828282;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', serif;
	font-size: 14px;
	font-style: italic;
	line-height: 23px;
	margin-bottom: 50px;
}

.error-page .btn-primary {
	margin-right: 30px;
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 479px) {

.error-page .btn-primary {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	display: block;
	margin-bottom: 15px;
}
}

@media only screen and (min-width : 320px) and (max-width : 767px) {

.error-page h1 {
	font-size: 100px
}

.error-page .error-title:before {
	font-size: 150px;
	margin-top: 18px;
	margin-left: -155px;
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.error-page .error-title:before {
	margin-top: 0px;
	margin-left: -214px;
}
}

/*------------------------------------*\
#SOON
\*------------------------------------*/
.soon-page {
	padding-top: 184px;
	padding-bottom: 184px;
}

.soon-page h1 {
	font-size: 65px;
	font-weight: 700;
	text-transform: uppercase;
}

.soon-page h1:after {
	content: ".";
	color: #fe6500;
	font-size: 65px;
	display: inline-block
}

.soon-page p {
	color: #828282;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', serif;
	font-size: 14px;
	font-style: italic;
	line-height: 23px;
	margin-bottom: 70px;
}

/* jQuery Countdown styles 2.0.0. */
.is-countdown {
}

.countdown-rtl {
	direction: rtl;
}

.countdown-holding span {
	color: #e9e8e8;
}

.countdown-row {
	clear: both;
	width: 100%;
	padding: 0px 2px;
	text-align: center;
}

.countdown-show1 .countdown-section {
	width: 98%;
}

.countdown-show2 .countdown-section {
	width: 48%;
}

.countdown-show3 .countdown-section {
	width: 32.5%;
}

.countdown-show4 .countdown-section {
	width: 24.5%;
}

.countdown-show5 .countdown-section {
	width: 19.5%;
}

.countdown-show6 .countdown-section {
	width: 16.25%;
}

.countdown-show7 .countdown-section {
	width: 14%;
}

.countdown-section {
	display: block;
	float: right;
	text-align: center;
	position: relative
}

.countdown-section:after {
	content: "";
	width: 2px;
	height: 30px;
	background-color: #e5e5e5;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0
}

.countdown-row span:nth-of-type(1):after {
	width: 0;
	height: 0;
	opacity: 0
}

.countdown-amount {
	font-size: 30px;
	font-weight: bold;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	color: #2f2f2f;
	margin-bottom: 20px;
}

.countdown-period {
	display: block;
	color: #5a5a5a;
	font-size: 13px;
	font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
}

.countdown-descr {
	display: block;
	width: 100%;
}







/* ===== Quote Form Card ===== */

.quote-cta .cta-2{
  border-radius: 8px 8px 0 0;
}

.quote-cta .form{
  background:#fff;
  border:1px solid #eee;
  padding:16px;
  border-radius: 0 0 8px 8px;
}

/* ===== Spacing Control ===== */

.quote-cta .form-control{
  margin-bottom: 8px;
}


/* จอเล็ก: ไม่ให้ทับ */
@media (max-width: 991px){
  .quote-cta{ margin-top: 16px; z-index: auto; }
}


/* แสดงแถบฟิลเตอร์แน่นอน */
#projects .projects-filter{ display:block !important; }

/* ซ่อน/โชว์แบบธรรมดา */
#projects-all .project-item.hidden{ display:none !important; }

/* ปิดร่องรอยตำแหน่ง/ทรานส์ฟอร์มของ Isotope (ถ้าเคยใช้) */
#projects-all{ height:auto !important; }
#projects-all .project-item{
  position:static !important;
  left:auto !important; top:auto !important;
  transform:none !important; transition:none !important;
}


/* แนะนำ: เลื่อนลายพื้นหลังต่อเนื่อง */
.gt-wp .working-process-one__inner .shape1 {
  background-repeat: repeat-y;
  background-position: 0 0;
  /* ปรับความเร็วตามต้องการ (วินาที) */
  animation: gt-bg-scroll 14s linear infinite;
  will-change: background-position;
}

@keyframes gt-bg-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 1000px; } /* ยิ่งตัวเลขมาก → เลื่อนเร็วขึ้น */
}

/* ดันทั้งเซกชันให้เหนือ hero แน่นอน */
#shortcode-2.about-home{
  position: relative;
  z-index: 1001;
  overflow: visible;
  isolation: isolate;                  /* กันปัญหา stacking จากข้างนอก */
}

/* ลดชั้น hero และโอเวอร์เลย์ของมัน */
.gt-wp.working-process-one,
.section-hero{ position:relative; z-index:1; }
.gt-wp.working-process-one::before,
.gt-wp.working-process-one::after,
.section-hero::before,
.section-hero::after{ z-index:0 !important; }



  /* ========= SPIDER FEATURE SECTION ========= */
.spider-section {
  --bg:#f2f3f5;
  --card:#ffffff;
  --dark:#1f1f1f;
  --text:#222;
  --muted:#6b7280;
  --accent:#fe6500;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  background:var(--bg);
  font-family:"Noto Sans Thai", "Barlow Condensed", system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  padding:60px 20px;
}

.spider-section .wrap {
  max-width:1200px;
  margin:0 auto;
}

/* Layout */
.spider-section .row {
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.spider-section .row.three { justify-content:space-between; }
.spider-section .row.two { justify-content:center; }

/* Card */
.spider-section .feature-wrap {
  position:relative;
  width:350px;
  display:flex;
  flex-direction:column;
}
.spider-section .feature-wrap .bar {
  position:absolute;
  top:-10px;
  left:20px;
  right:20px;
  height:10px;
  background:#fe6500;
  z-index:5;
  pointer-events:none;
  transition:left .35s ease, right .35s ease;
}
.spider-section .feature-wrap:hover .bar {
  left:0;
  right:0;
}

.spider-section .feature-card {
  --bg-img:none;
  position:relative;
  background:var(--card);
  border-radius:0;
  padding:50px 30px; /* กล่องอ้วนขึ้น */
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:.35s ease;
  isolation:isolate;
  z-index:1;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.spider-section .feature-card::after {
  content:attr(data-index);
  position:absolute;
  top:18px;
  right:24px;
  font-size:148px;
  font-weight:800;
  line-height:.8;
  color:rgba(0,0,0,.06);
  transition:.35s ease;
  z-index:2;
  pointer-events:none;
}

.spider-section .feature-card .bg {
  position:absolute;
  inset:0;
  z-index:1;
  opacity:0;
  transform:scale(1.03);
  background-image:linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--bg-img);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:opacity .35s ease, transform .35s ease;
  filter:saturate(1.05);
}

.spider-section .icon {
  width:104px;
  height:104px;
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.10);
  margin:16px 0 22px;
  position:relative;
  z-index:3;
}
.spider-section .icon svg { width:52px; height:52px; }

.spider-section h3 {
  font-size:26px;
  margin:0 0 14px;
  position:relative;
  z-index:3;
}
.spider-section p {
  color:var(--muted);
  margin:0 0 22px;
  position:relative;
  z-index:3;
  line-height:1.7;
}
.spider-section .link {
  display:inline-flex;
  gap:8px;
  font-weight:600;
  text-decoration:none;
  color:inherit;
  position:relative;
  z-index:3;
  margin-top:auto;
}
.spider-section .link .arrow {
  transition:transform .25s ease;
}
.spider-section .link:hover .arrow {
  transform:translateX(4px);
}

/* Hover effects */
.spider-section .feature-wrap:hover .feature-card {
  background:var(--dark);
  transform:translateY(-6px);
}
.spider-section .feature-wrap:hover .feature-card .bg {
  opacity:1;
  transform:scale(1.05);
}
.spider-section .feature-wrap:hover .feature-card h3,
.spider-section .feature-wrap:hover .feature-card .link {
  color:#fff;
}
.spider-section .feature-wrap:hover .feature-card p {
  color:#e6e7ea;
}
.spider-section .feature-wrap:hover .feature-card::after {
  color:var(--accent);
  transform:translateY(-6px);
}

/* Responsive */
@media (max-width:768px) {
  .spider-section .feature-wrap { width:100%; }
  .spider-section .row.three,
  .spider-section .row.two { justify-content:center; }
}

.services-heading .row {
  display: flex;
  justify-content: center;   /* ✅ จัดกลางพอดี */
  flex-direction:column;
}

.services-heading .heading {
  text-align: center;
  max-width: 800px;
}


   /* ---------- SECTION หลัก ---------- */

/* ไม่ต้องยุ่งกับ body ถ้าใช้ในเว็บจริง */
.gt-testimonial-area {
  position: relative;
  padding: 120px 0 160px;

  /* กางเต็มหน้าจอ */
  width: 100%;
  margin: 0;                /* ไม่ต้อง auto แล้ว */

  background-color: #ffffff;
  background-image: url("../images/testimonial-bg1-1.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;   /* ใช้ cover จะช่วยให้เต็มหน้าจอสวยขึ้น */
  overflow: hidden;
  /* ถ้าอยากให้ไม่มีเงาเหมือนเป็นส่วนหนึ่งของหน้า ก็ลบ box-shadow ได้เลย */
  /* box-shadow: 0 25px 60px rgba(0,0,0,0.08); */
  z-index: 1;
}



    .gt-testimonial-inner {
      display: flex;
      gap: 60px;
      align-items: stretch;
    }

    /* ---------- ไม้บรรทัดด้านบน ---------- */

.gt-top-ruler {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-image: url("../images/global-line-shape2.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 50%;
  animation: gtMoveRuler 20s linear infinite;
  z-index: 3;  /* อยู่บนรูปแต่ยังอยู่ในกรอบกระดาษใบนี้ */
}

.gt-testimonial-inner {
  position: relative;
  z-index: 2;
}


    @keyframes gtMoveRuler {
      0% {
        background-position: 0 50%;
      }
      100% {
        background-position: 1000px 50%;
      }
    }

    /* ---------- การ์ดสีส้มด้านซ้าย ---------- */

    .gt-contact-card {
      position: relative;
      flex: 0 0 38%;
      background: #f26c21;
      color: #fff;
      padding: 60px 50px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      border-radius: 12px;
    }

    .gt-contact-card h3 {
	  color: #fff;
      font-size: 32px;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .gt-contact-card p {
	  color: #fff;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .gt-contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 26px;
      background: #fff;
      color: #f26c21;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.05em;
      text-decoration: none;
      text-transform: uppercase;
      border-radius: 999px;
      transition: all 0.25s ease;
      position: relative;
      z-index: 1;
    }

    .gt-contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .gt-btn-icon {
      font-size: 16px;
    }

    /* crane background ในการ์ด (ใช้ gradient แทนรูป) */

    .gt-card-crane {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          135deg,
          rgba(0, 0, 0, 0.15),
          rgba(0, 0, 0, 0) 60%
        ),
        radial-gradient(
          circle at 70% 40%,
          rgba(0, 0, 0, 0.28) 0 40%,
          transparent 40%
        );
      opacity: 0.4;
      pointer-events: none;
    }

    /* ---------- กล่องรีวิวด้านขวา ---------- */

    .gt-testimonial-box {
      position: relative;
      flex: 1;
      padding-top: 10px;
    }

    .gt-testimonial-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #999;
    }

    .gt-testimonial-title {
      font-size: 38px;
      margin: 10px 0 40px;
    }

        /* slider wrapper */
    /* กล่องรีวิว (ล็อกความสูงให้คงที่) */
    .gt-testimonial-slider {
    position: relative;
    height: 240px;      /* ถ้าเตี้ย/สูงไป ปรับเลขนี้ได้ 220 / 260 ตามที่ชอบ */
    overflow: hidden;   /* กันไม่ให้ดัน layout ด้านนอกเวลารีวิวยาว */
    }

    /* ทุก slide ซ้อนกันอยู่ในกรอบเดียว */
    .gt-testimonial-slide {
    position: absolute;
    inset: 0;              /* ยึดเต็มกรอบ .gt-testimonial-slider ทั้งหมด */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s linear;  /* เปลี่ยนแบบเฟดนิ่ม ๆ */

    display: flex;
    flex-direction: column;
    overflow-y: auto;      /* ถ้าข้อความยาวมาก → เลื่อนอ่านในกรอบนี้เอง */
    padding-right: 8px;    /* กัน scrollbar ไม่ทับตัวหนังสือด้านขวา */
    }

    /* slide ที่กำลังโชว์ */
    .gt-testimonial-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}


    .gt-testi-top {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 16px;
    }

    .gt-testi-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: #eee;
    }

    .gt-testi-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gt-testi-heading h3 {
      font-size: 22px;
      margin: 0;
    }

    .gt-testi-text {
      font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      max-width: 620px;
      color: #555;
      margin-bottom: 18px;
      line-height: 1.7;
    }

    .gt-testi-meta {
	  color: #555;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: baseline;
      font-size: 14px;
    }

    .gt-testi-name {
    font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 700;
    }

    .gt-testi-role {
      font-family: "Noto Sans Thai", "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: #999;
    }

    /* ปุ่มเลื่อน */

    .gt-testi-controls {
      display: flex;
      gap: 8px;
      margin-top: 35px;
    }

    .gt-testi-nav {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: none;
      background: #fe6500;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .gt-testi-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    }

    /* ส่วนล่าง avatars + counter */

    .gt-testi-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 40px;
    }

    .gt-testi-thumbs img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: -12px;
      border: 3px solid #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      background: #eee;
      display: inline-block;
    }

    .gt-testi-stat {
      text-align: right;
    }

    .gt-testi-number {
      display: block;
      font-size: 32px;
      font-weight: 700;
      color: #f26c21;
    }

    .gt-testi-label {
      font-size: 13px;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* ---------- Hook / Shape ด้านขวา ---------- */

.gt-hook-wrap {
  position: absolute;
  right: 120px;
  top: 40px;     /* ปรับค่านี้ให้สายเครนไปทับขอบรูปพอดี */
  pointer-events: none;
  z-index: 4;       /* ให้อยู่เหนือทุกอย่าง (พื้นหลัง + ไม้บรรทัด + กล่องข้อความ) */
}

/* ให้ “เฉพาะรูปเครน” เด้ง */
.gt-hook-wrap {
  position: absolute;
  right: 120px;
  top: -40px;       /* ตรงนี้คือทริก ให้สายเครนลอยออกมาจากขอบบน */
  pointer-events: none;
  z-index: 4;       /* ให้อยู่บนสุด */
}

/* ให้เฉพาะรูปเด้งขึ้นลง */
.gt-hook-img {
  display: block;
  height: 220px;    /* ปรับขนาดได้ตามต้องการ */
  width: auto;
  animation: gtHookBounce 3s ease-in-out infinite;
  transform-origin: 50% 0%;
}

@keyframes gtHookBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(18px); }
}


    /* ---------- Responsive ---------- */

    @media (max-width: 991px) {
      .gt-testimonial-inner {
        flex-direction: column;
      }

      .gt-contact-card {
        flex-basis: auto;
      }

      .gt-hook-wrap {
        right: 20px;
        top: 20px;
      }
    }

    @media (max-width: 575px) {
      .gt-contact-card {
        padding: 40px 24px;
      }

      .gt-testimonial-title {
        font-size: 30px;
      }
    }


	/* บีบระยะห่าง label */
.quote-cta label {
  margin-bottom: 4px;
  font-size: 14px;
}

/* บีบ textarea */
.quote-cta textarea.form-control {
  padding: 8px 12px;
  line-height: 1.4;
  min-height: 70px;   /* คุมความสูง */
}

/* บีบ input ปกติ */
.quote-cta input.form-control {
  padding: 8px 12px;
  height: auto;
}


.quote-cta .form .form-control{
  margin-bottom: 10px;
}




/* ACCEPT */

.accept-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin: 22px 0;
}

.accept-box input[type="checkbox"] {

  width: 18px;
  height: 18px;

  margin-top: 2px;

  accent-color: #0068ff;

  cursor: pointer;
}

.accept-box label {

  color: #4b5565;

  font-size: 14px;
  line-height: 1.6;

  cursor: pointer;
}

/* BUTTON */

#submitBtn {

  width: 100%;
  height: 64px;

  border: none;
  border-radius: 22px;

  font-size: 17px;
  font-weight: 700;

  transition: all .3s ease;

  cursor: not-allowed;

  background: #c8d0dd;
  color: #7b8798;

  box-shadow: none;
}

/* ACTIVE */

#submitBtn.active {

  cursor: pointer;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #FFD659,
      #fe6500
    );

}

#submitBtn.active:hover {

  transform: translateY(-3px);

}



.about-home-full {
  padding: 90px 0;
  background: #f7f9fb;
}

.about-home-full .container {
  max-width: 1180px;
  margin: 0 auto;
}

.about-content-center {
  max-width: 880px;
  margin: 0 auto 45px;
  text-align: center;
}

.about-content-center .heading p {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0b8b58;
  font-weight: 700;
}

.about-content-center .heading h2 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 800;
  color: #1f2933;
}

.mission-text {
  max-width: 850px;
  margin: 0 auto;
}

.mission-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.fullscreen-lead-section {
  width: 100%;
  min-height: 100vh;
  padding: 90px 0;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.fullscreen-lead-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 6vw;
}

.lead-heading {
  text-align: center;
  margin-bottom: 70px;
}

.lead-heading p {
  margin: 0 0 10px;
  color: #f3702a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lead-heading h2 {
  margin: 0;
  color: #222222;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
}

.lead-line-form {

  width: 100%;
  max-width: 820px;

  margin: 0 auto;

}

.lead-form-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 38px;

  row-gap: 42px;

}

.line-field {

  width: 100%;

  position: relative;

}

.line-field input,
.line-field select {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 2px solid #5a4f4c;
  outline: none;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 400;
  padding: 0 0 18px;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
}

.line-field input::placeholder,
.line-field select:invalid {
  color: #aaa4a4;
  opacity: 1;
}

.line-field input:focus,
.line-field select:focus {
  border-bottom-color: #f3702a;
}

.select-field {
  position: relative;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 15px;
  width: 18px;
  height: 18px;
  border-right: 4px solid #111111;
  border-bottom: 4px solid #111111;
  transform: rotate(45deg);
  pointer-events: none;
}

.select-field select {
  cursor: pointer;
  padding-right: 42px;
}



/* ===== FIX: ลดความกว้างฟอร์มให้ไม่เต็มจอ ===== */

#leadForm {
  width: min(100% - 32px, 980px) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* คุม grid ช่องกรอก */
#leadForm .lead-form-grid,
.lead-form-grid {
  width: 100% !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 48px !important;
  row-gap: 34px !important;
  box-sizing: border-box !important;
}

/* คุมช่องกรอกไม่ให้ล้น */
#leadForm .line-field,
.line-field {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* คุมปุ่มไม่ให้ยาวเต็มจอเกิน */
#submitBtn {
  width: 100% !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* คุม checkbox ให้อยู่กลาง */
#leadForm .accept-wrap,
.accept-wrap {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* กันหน้าเว็บล้นแนวนอน */
html,
body {
  overflow-x: hidden !important;
}

/* มือถือให้เหลือคอลัมน์เดียว */
@media (max-width: 768px) {
  #leadForm {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
  }

  #leadForm .lead-form-grid,
  .lead-form-grid {
    grid-template-columns: 1fr !important;
    row-gap: 26px !important;
  }

  #submitBtn {
    max-width: 100% !important;
  }
}




/* Phone */
.phone-field {
  border-bottom: 2px solid #5a4f4c;
}

.phone-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
}

.phone-wrap input {
  flex: 1;
  height: auto;
  border-bottom: none;
  padding: 0;
}

.flag {
  font-size: 31px;
  line-height: 1;
}

.country-code {
  color: #111111;
  font-size: 27px;
  font-weight: 400;
}

.arrow {
  color: #111111;
  font-size: 34px;
  line-height: 1;
  margin-left: 12px;
}

.divider {
  width: 2px;
  height: 37px;
  background: #b8b1ad;
  display: inline-block;
}

.otp-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.otp-btn {
  min-width: 380px;
  height: 80px;
  border: none;
  border-radius: 999px;
  background: #f3702a;
  color: #111111;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

.otp-btn:hover {
  background: #e76522;
  transform: translateY(-2px);
}

/* Accept */
.accept-line {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.accept-line input {
  width: 22px;
  height: 22px;
  accent-color: #f3702a;
}

.accept-line label {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
}

/* Submit */
.submit-area {
  margin-top: 34px;
  text-align: center;
}

.submit-line-btn {
  min-width: 280px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit-line-btn:not(:disabled):hover {
  background: #f3702a;
  color: #111111;
  transform: translateY(-2px);
}

.submit-line-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

#quote-result {
  margin-top: 18px;
  text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
  .fullscreen-lead-section {
    padding: 70px 0;
  }

  .fullscreen-lead-container {
    padding: 0 32px;
  }

  .lead-heading {
    margin-bottom: 50px;
  }

  .lead-heading h2 {
    font-size: 34px;
  }

  .lead-form-grid {
    column-gap: 44px;
    row-gap: 58px;
  }

  .line-field input,
  .line-field select {
    font-size: 23px;
  }

  .otp-btn {
    min-width: 300px;
    height: 68px;
    font-size: 23px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fullscreen-lead-section {
    min-height: auto;
    padding: 60px 0;
  }

  .fullscreen-lead-container {
    padding: 0 22px;
  }

  .lead-heading {
    margin-bottom: 40px;
  }

  .lead-heading h2 {
    font-size: 28px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .line-field input,
  .line-field select {
    height: 50px;
    font-size: 20px;
    padding-bottom: 14px;
  }

  .phone-wrap {
    height: 50px;
    gap: 12px;
    padding-bottom: 14px;
  }

  .flag {
    font-size: 25px;
  }

  .country-code {
    font-size: 21px;
  }

  .arrow {
    font-size: 27px;
    margin-left: 4px;
  }

  .divider {
    height: 30px;
  }

  .otp-area {
    justify-content: center;
  }

  .otp-btn {
    width: 100%;
    min-width: auto;
    height: 60px;
    font-size: 20px;
  }

  .accept-line {
    margin-top: 46px;
    align-items: flex-start;
  }

  .accept-line label {
    font-size: 15px;
    line-height: 1.5;
  }

  .submit-line-btn {
    width: 100%;
    min-width: auto;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .about-home-full {
    padding: 60px 0;
  }

  .about-content-center .heading h2 {
    font-size: 12px;
  }

  .mission-text p {
    font-size: 15px;
  }

  .quote-form-full .form {
    padding: 28px 22px 32px;
  }

  .form-grid,
  .checkbox-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }
}



