@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  color: #000;
  background: #fff;
  font-family: "Anantason Lite Regular";
  line-height: 1.4;
  font-size: var(--font18);
}

img {
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  height: auto;
}

a, a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
}

.pos {
  position: absolute;
}

.rel {
  position: relative;
}

.t_inline {
  display: inline-block;
}

.showpc {
  display: block;
}

.showmb {
  display: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: normal;
}

:root {
  --font95: 95px;
  --font76: 76px;
  --font68: 68px;
  --font60: 60px;
  --font50: 50px;
  --font40: 40px;
  --font32: 32px;
  --font30: 30px;
  --font28: 28px;
  --font26: 26px;
  --font24: 24px;
  --font22: 22px;
  --font20: 20px;
  --font18: 18px;
  --font16: 16px;
  --font15: 15px;
  --font14: 14px;
  --cGreen: #006536;
  --cOrange: #FD9800;
  --cBlue: #65CBCD;
  --cBrown: #7E532B;
  --cBlack: #000;
  --cWhite: #fff;
  --fontbold: "Anantason Lite Bold";
  --fontexpand: "Anantason Lite Bold Expanded";
  --fontbody: "Bai Jamjuree", sans-serif;
}

.t_center {
  text-align: center;
}

.txtblack {
  color: var(--cBlack);
}

.txtwhite {
  color: var(--cWhite);
}

.container1440 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.content {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_search_img {
  display: block;
}

.icon_hamburger_img {
  display: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /*border-bottom: 1px solid #ccc;*/
  z-index: 99;
  background: #fff;
  opacity: 1;
}

header nav {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
  /*background: #fff;*/
}

header nav .shortmenu {
  margin-left: 16px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  list-style-type: none;
}

header nav .shortmenu a {
  color: var(--cBlack);
  font-family: "Anantason Lite Bold";
  font-size: var(--font18);
  transition: all 0.2s ease-out;
}

header nav .shortmenu a:hover {
  color: var(--cGreen);
}

header nav .btn_search {
  cursor: pointer;
}

header nav .btn_search .open {
  display: block;
}

header nav .btn_search .close {
  display: none;
}

header nav .btn_lang {
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
  color: var(--cBlack);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

header nav .btn_join a {
  font-size: var(--font16);
  font-family: "Anantason Lite Bold Expanded";
  color: var(--cWhite);
  background: var(--cBlack);
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  transition: all 0.2s ease-out;
}

header nav .btn_join a:hover {
  background: var(--cGreen);
}

header nav .btn_noti {
  cursor: pointer;
  position: relative;
  border-radius: 100px;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: #C80000;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .btn_noti span {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 10px solid rgba(198, 0, 0, 0.45);
  top: -5px;
  left: -5px;
  z-index: -1;
  border-radius: 100px;
}

header nav .btn_noti.active {
  pointer-events: none;
}

header .notification {
  display: none;
  position: absolute;
  right: 12px;
  top: 110px;
  width: 380px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 32px;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 24px 16px 24px 32px;
}

header .notification:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 20px solid rgba(0, 0, 0, 0.62);
  top: -20px;
  right: 32px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

header .notification .noti_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .notification .noti_head .txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

header .notification .noti_head .txt h2 {
  color: var(--cWhite);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold Expanded";
  line-height: 1;
}

header .notification .noti_head .txt img {
  width: 16px;
  margin-top: -4px;
}

header .notification .noti_body {
  margin-top: 16px;
  height: 480px;
  display: block;
}

header .notification .noti_body .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

header .notification .noti_body .item .txt {
  flex: 0 0 calc(100% - 60px);
  padding-left: 24px;
  padding-right: 16px;
  position: relative;
}

header .notification .noti_body .item .txt p {
  font-size: var(--font14);
  color: var(--cWhite);
  font-family: "Anantason Lite Regular";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
}

header .notification .noti_body .item .txt:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #f00;
  left: 0;
  top: 4px;
  background: url(../../images/arr_get.svg) center no-repeat;
  background-size: cover;
}

header .notification .noti_body .item .img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
}

header .notification .noti_body .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .notification .noti_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

header .notification .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}

header .notification .mCSB_scrollTools .mCSB_draggerRail {
  background: transparent;
}

header .notification .btn_close_noti {
  cursor: pointer;
}

footer {
  background: var(--cBlack);
  padding: 85px 0 65px;
}

footer .footer_in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

footer .pagefb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

footer .pagefb h2 {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Bold Expanded";
  margin-right: 8px;
}

footer .pagefb img {
  width: 60px;
}

footer .footer_copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

footer .copyright p {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}

footer .copyright a {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}

footer .footer_info {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: flex-start;
  justify-content: center;
}

footer .footer_info .address {
  padding-bottom: 56px;
}

footer .footer_info .address h2 {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
  margin-top: 24px;
}

footer .footer_info .address p {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
  margin-top: 16px;
  margin-bottom: 16px;
}

footer .footer_info .address a {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}

footer .footer_info .address a img {
  margin-left: 4px;
}

footer .footer_info .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding-top: 8px;
  padding-left: 4%;
}

footer .footer_info .head {
  pointer-events: none;
  position: relative;
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

footer .footer_info .head img {
  position: absolute;
  top: calc(50% - 9px);
  right: 0;
  transition: all 0.1s ease;
  display: none;
}

footer .footer_info .list {
  list-style-type: none;
}

footer .footer_info .list li {
  margin-bottom: 5px;
}

footer .footer_info .list a {
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}

footer .footer_info .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-left: -5px;
  margin-top: 16px;
}

footer .footer_info .col.active .head img {
  transform: rotate(45deg);
}

footer .footer_info .col.active .head {
  border-bottom: 0;
}

footer .footer_info .col.active .list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 16px;
}

.header_expand {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 9;
  padding-top: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-out;
}

.header_expand.active {
  display: flex;
}

.header_expand .header_expand_in {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.header_expand .header_expand_in .searchbar {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.14);
}

.header_expand .header_expand_in .searchbar input {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff;
  font-size: var(--font20);
  font-family: "Anantason Lite Regular";
  padding: 22px 22px 22px 64px;
  position: relative;
  display: block;
}

.header_expand .header_expand_in .searchbar .icon_search {
  position: absolute;
  width: 20px;
  height: 100%;
  background: url(../../images/icon_search2.svg) center no-repeat;
  background-size: contain;
  top: 0;
  left: 32px;
  z-index: 1;
}

.header_expand .header_expand_in .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 80px;
  gap: 16px;
}

.header_expand .header_expand_in .menu h2 a {
  font-size: var(--font16);
  font-family: "Anantason Lite Bold";
  color: var(--cBlack);
}

.header_expand .header_expand_in .menu li a {
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
  color: var(--cBlack);
  line-height: 1.8;
}

.header_expand .header_expand_in .menu li a:hover {
  color: var(--cGreen);
}

.header_expand .header_expand_in .menu ul {
  margin-top: 16px;
  list-style-type: none;
}

.menu_s1 {
  top: 62%;
  left: -7%;
}

.menu_s2 {
  top: 75%;
  right: 1%;
}

.menu_s3 {
  top: 20%;
  right: -7%;
}

.join {
  background: var(--cBlack);
  padding: 35px 0 65px;
  color: var(--cWhite);
}

.join .txthead h2 {
  font-size: var(--font40);
  color: var(--cWhite);
  font-family: "Anantason Lite Bold Expanded";
  display: flex;
  align-items: center;
  justify-content: center;
}

.join .txthead h2 .txt_khun {
  margin-top: 4.5%;
}

.join .items {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
  margin-top: -56px;
}

.join .items .item {
  flex: 0 0 350px;
  height: 350px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 500px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.join .items .item.item01 {
  background: url(../../images/join_shape01.svg) center no-repeat;
  background-size: cover;
}

.join .items .item.item02 {
  background: url(../../images/join_shape02.svg) center no-repeat;
  background-size: cover;
}

.join .items .item.item03 {
  background: url(../../images/join_shape03.svg) center no-repeat;
  background-size: cover;
}

.join .items .item p {
  font-size: var(--font24);
  font-family: "Anantason Lite Bold Expanded";
  padding: 8px 0 16px;
}

.join .items .item .join_num {
  pointer-events: none;
}

.join .items .item .join_arr {
  margin-bottom: 16px;
  pointer-events: none;
}

.join .items .item:hover {
  transform: scale(1.08);
}

.btn_join_find {
  display: inline-block;
  color: var(--cWhite);
  font-size: var(--font16);
  font-family: "Anantason Lite Medium";
  background: var(--cBlack);
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 12px 32px;
  transition: all 0.2s ease-out;
}

.btn_join_find:hover {
  color: var(--cBlack);
  background: var(--cWhite);
}

.meetingroom {
  background: #FFE1B3;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.meetingroom .txt {
  padding: 85px 16px;
  max-width: calc(1280px / 2);
  margin: 0 auto;
  width: 100%;
  align-self: center;
  margin-right: 0;
}

.meetingroom .txt h2 {
  color: var(--cBlack);
  font-size: var(--font32);
  font-family: "Anantason Lite Bold Expanded";
}

.meetingroom .txt p {
  color: var(--cBlack);
  font-size: var(--font18);
  font-family: "Anantason Lite Regular";
  margin-top: 24px;
  line-height: 1.6;
}

.meetingroom .txt h6 {
  color: var(--cBlack);
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.meetingroom .txt h6 img {
  margin-right: 8px;
}

.meetingroom .txt .info {
  margin-top: 32px;
}

.meetingroom .img {
  flex: 0 0 50%;
  pointer-events: none;
}

.meetingroom .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

section.blog {
  padding: 150px 0 180px;
  background: var(--cBlack);
  color: var(--cWhite);
  overflow: hidden;
}

section.blog .txthead {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

section.blog .txthead h2 {
  width: 50%;
  color: var(--cWhite);
  font-size: var(--font40);
  font-family: "Anantason Lite Bold Expanded";
  position: relative;
}

section.blog .txthead h2 .txt_change {
  position: absolute;
  top: -90%;
  margin-left: 1%;
  width: auto;
}

.btn_filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn_filter_blog {
  color: var(--cWhite);
  font-size: var(--font16);
  font-family: "Anantason Lite Medium";
  background: var(--cBlack);
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 8px 24px;
  transition: all 0.2s ease-out;
}

.btn_filter_blog:hover {
  color: var(--cBlack);
  background: var(--cWhite);
}

.blog .blog_item {
  max-width: 1280px;
  width: 100%;
  margin: 50px auto 0;
  padding: 0 16px;
  position: relative;
}

.card_blog {
  max-width: 450px;
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

.card_blog[data-blog-type=type1] .txt {
  background: #A1E5C4;
}

.card_blog[data-blog-type=type2] .txt {
  background: #A6D7F3;
}

.card_blog[data-blog-type=type3] .txt {
  background: #FFD596;
}

.card_blog .txt {
  padding: 16px 24px;
}

.card_blog .txt h4 {
  color: var(--cBlack);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
  margin-bottom: 8px;
}

.card_blog .txt h2 {
  color: var(--cBlack);
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.blog .blog_item .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: url(../../images/arr_prev.svg) center no-repeat;
  background-size: cover;
  left: -5%;
  top: 46%;
}

.blog .blog_item .swiper-button-next {
  width: 44px;
  height: 44px;
  background: url(../../images/arr_next.svg) center no-repeat;
  background-size: cover;
  right: -5%;
  top: 46%;
}

.blog .blog_item .swiper-button-prev:after {
  display: none;
}

.blog .blog_item .swiper-button-next:after {
  display: none;
}

.blog .blog_item .swiper {
  overflow: visible;
}

.speakout {
  padding: 85px 0;
  background: #fff;
  min-height: 800px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.speakout .txthead {
  position: relative;
  top: 6.5vh;
}

.speakout .txthead h2 {
  text-align: center;
  color: var(--cBlack);
  font-size: var(--font50);
  font-family: "Anantason Lite Bold Expanded";
}

.speakout .stage {
  position: absolute;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  top: 0;
  left: calc(50% - (1280px / 2));
}

.speakout .card {
  position: absolute;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #006836;
  background: #E4FFF2;
  border-radius: 25px;
  left: 5%;
  /* transition: all 1s ease;*/
  opacity: 1;
}

.speakout .card .img {
  margin: -2px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #006836;
  /*flex: 0 0 104px;*/
}

.speakout .card .img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  position: relative;
}

.speakout .card .txt {
  padding: 0 40px 0 16px;
  white-space: nowrap;
  text-align: left;
}

.speakout .card .txt h2 {
  color: var(--cBlack);
  font-size: var(--font16);
  font-family: "Anantason Lite Bold";
  margin-bottom: 4px;
}

.speakout .card .txt p {
  color: var(--cBlack);
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
}

.speakout .card.card1 {
  top: 51%;
  left: 42%;
  transform: rotate(0deg);
  z-index: 5;
}

.speakout .card.card2 {
  top: 70%;
  left: 43%;
  transform: rotate(6deg);
  z-index: 4;
}

.speakout .card.card3 {
  top: 41%;
  left: 11%;
  transform: rotate(7deg);
}

.speakout .card.card4 {
  top: 56%;
  left: 3%;
  transform: rotate(-6deg);
}

.speakout .card.card5 {
  top: 72%;
  left: 11%;
  transform: rotate(-7deg);
}

.speakout .card.card6 {
  top: 37%;
  left: 71%;
  transform: rotate(-5deg);
}

.speakout .card.card7 {
  top: 54%;
  left: 75%;
  transform: rotate(-2deg);
}

.speakout .card.card8 {
  top: 81%;
  left: 77%;
  transform: rotate(7deg);
}

.speakout .card.card9 {
  top: 22%;
  left: -5%;
  transform: rotate(7deg);
}

.speakout .card.card10 {
  top: 43%;
  left: -21%;
  transform: rotate(-3deg);
}

.speakout .card.card11 {
  top: 75%;
  left: -23%;
  transform: rotate(-4deg);
}

.speakout .card.card12 {
  top: 19%;
  left: 81%;
  transform: rotate(-8deg);
}

.speakout .card.card13 {
  top: 69%;
  left: 92%;
  transform: rotate(5deg);
}

.speakout .card.card14 {
  top: 33%;
  left: 38%;
  transform: rotate(6deg);
}

.wewantyou {
  background: var(--cWhite);
  padding: 25px 0 120px;
}

.wewantyou .txthead {
  text-align: center;
}

.wewantyou .txthead h2 {
  padding-left: 8%;
  font-size: var(--font95);
  color: var(--cBlack);
  text-transform: uppercase;
  font-family: "Anantason Lite ExtraBold Expanded";
}

.wewantyou .txthead .txt_you {
  margin-left: -3.5%;
}

.wewantyou .filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -36px;
}

.wewantyou .filter .item a {
  transition: all 0.18s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 240, 240, 0.73);
  color: var(--cBlack);
  font-family: "Anantason Lite Bold";
  font-size: var(--font18);
  padding: 5px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wewantyou .filter .item a img {
  transition: all 0.18s ease-out;
}

.wewantyou .filter .item a span {
  padding: 0 16px;
}

.wewantyou .filter .item a:hover {
  background: var(--cGreen);
  color: var(--cWhite);
}

.wewantyou .filter .item a:hover img {
  filter: invert(1);
}

.wewantyou .projects {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: center;
  gap: 48px 24px;
}

.card_project {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #eee;
  max-width: 450px;
  min-height: 360px;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.card_project .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 36px 36px 100px;
  position: relative;
}

.card_project .info .calendar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  margin-top: -12px;
  margin-right: -12px;
}

.card_project .info .calendar .box {
  position: relative;
  display: block;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.25);
  width: 60px;
}

.card_project .info .calendar .box .month {
  padding: 5px 0;
  display: block;
  line-height: 1;
  background: #D20019;
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
  border-radius: 12px 12px 0 0;
}

.card_project .info .calendar .box .date {
  padding: 5px 0;
  display: block;
  line-height: 1;
  background: #fff;
  color: var(--cBlack);
  font-size: var(--font28);
  font-family: "Anantason Lite Bold";
  border-radius: 0 0 12px 12px;
}

.card_project .info .calendar .box:nth-child(2):before {
  content: "-";
  position: absolute;
  color: #000;
  font-size: var(--font40);
  font-family: "Anantason Lite Bold";
  left: -32px;
  top: 0%;
  height: 100%;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_project .info .desc {
  width: 65%;
}

.card_project .info .desc .txt h2 {
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
}

.card_project .info .desc .txt p {
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
  margin-top: 16px;
}

.card_project .info .desc .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.card_project .info .desc .icon img {
  width: 32px;
}

.card_project[data-theme-type=white] .info .desc .txt h2 {
  color: var(--cWhite);
}

.card_project[data-theme-type=white] .info .desc .txt p {
  color: var(--cWhite);
}

.card_project[data-theme-type=white] .info .desc .icon img {
  filter: invert(1);
}

.card_project[data-theme-type=white] .info .calendar .box:nth-child(2):before {
  color: var(--cWhite);
}

.card_project[data-theme-type=black] .info .desc .txt h2 {
  color: var(--cBlack);
}

.card_project[data-theme-type=black] .info .desc .txt p {
  color: var(--cBlack);
}

.card_project[data-theme-type=black] .info .desc .icon img {
  filter: invert(0);
}

.card_project[data-theme-type=black] .info .calendar .box:nth-child(2):before {
  color: var(--cBlack);
}

.card_project .progress {
  position: relative;
  width: 100%;
  height: 54px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  border-radius: 0 0 36px 36px;
}

.card_project .progress p {
  width: 100%;
  text-align: right;
}

.card_project .progress .txtnormal {
  color: var(--cBlack);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}

.card_project .progress .txtbig {
  color: var(--cBlack);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
  margin-left: 4px;
}

.card_project .progress .txtduedate {
  color: var(--cBlack);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
  margin-left: 4px;
}

.card_project .progress .bar {
  border: 2px solid #000;
  width: 100%;
  height: 12px;
  border-radius: 50px;
}

.card_project .progress .bar span {
  max-width: 100% !important;
  background: #000;
  width: 0;
  display: block;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
}

.card_project .img {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.card_project .img img {
  width: 55%;
}

.card_project[data-shape-type=full] .img {
  height: 100%;
  width: 100%;
}

.card_project[data-shape-type=full] .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.card_project[data-shape-type=heptagon] .img {
  -webkit-mask-image: url(../../images/shape_heptagon.svg);
  mask-image: url(../../images/shape_heptagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
}

.card_project[data-shape-type=circle] .img {
  -webkit-mask-image: url(../../images/shape_circle.svg);
  mask-image: url(../../images/shape_circle.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
}

.card_project[data-shape-type=hexagon] .img {
  -webkit-mask-image: url(../../images/shape_hexagon.svg);
  mask-image: url(../../images/shape_hexagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
}

.card_project[data-shape-type=pentagon] .img {
  -webkit-mask-image: url(../../images/shape_pentagon.svg);
  mask-image: url(../../images/shape_pentagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
}

.card_project[data-shape-type=square] .img {
  -webkit-mask-image: url(../../images/shape_square.svg);
  mask-image: url(../../images/shape_square.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
}

.btn_find_project {
  color: var(--cWhite);
  font-size: var(--font18);
  font-family: "Anantason Lite Bold Expanded";
  background: var(--cBlack);
  border-radius: 100px;
  padding: 16px 32px;
  transition: all 0.2s ease-out;
  display: inline-block;
  margin-top: 72px;
}

.btn_find_project:hover {
  color: var(--cBlack);
  background: var(--cOrange);
}

.btn_find_project {
  cursor: pointer;
}

.intro {
  background: #E4FFF2;
  overflow: hidden;
}

.home_herobanner {
  /*background: rgba(255 0 0 / 15%);*/
  /*border-bottom: 1px solid #f00;*/
  /*height: 100vh;*/
  /*min-height: -webkit-fill-available;*/
  /*height: calc(var(--vh, 1vh) * 100);*/
  /*transition: all 0.15s ease;*/
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_herobanner .area {
  width: 100%;
  max-width: 1280px;
  /*background: rgba(255 0 0 / 10%);*/
  min-height: 600px;
  position: relative;
}

.arr_scrolldown {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 2%;
  text-align: center;
  pointer-events: none;
}

.herobanner_txt1 {
  top: 1.5%;
  left: 44.2%;
}

.herobanner_txt2 {
  top: 34.2%;
  left: 34.7%;
}

.herobanner_txt3 {
  top: 59.7%;
  left: 24.3%;
}

.herobanner_txt4 {
  top: -13.3%;
  left: 84.3%;
  right: -64.2%;
}

.herobanner_txt5 {
  top: 34.2%;
  left: 22.6%;
}

.herobanner_txt6 {
  top: 35.7%;
  left: 64.6%;
}

.herobanner_hand_left {
  top: 9.7%;
  left: 4%;
  width: 297px;
  height: 297px;
}

.herobanner_hand_left_img {
  position: relative;
  z-index: 1;
}

.herobanner_hand_right {
  top: -17.3%;
  right: -0.4%;
  width: 380px;
  height: 380px;
}

/*.herobanner_hand_right {top: 35.7%;right: -14.4%;}*/
.herobanner_hand_right_img {
  position: relative;
  z-index: 1;
}

.herobanner_shape1 {
  top: 16.1%;
  left: 66.7%;
  width: 118px;
  height: 118px;
}

.herobanner_shape2 {
  top: 23.7%;
  left: 40.1%;
  width: 48px;
  height: 118px;
}

.herobanner_shape3 {
  top: 34.7%;
  right: 86.7%;
  left: -2%;
  width: 59px;
  height: 118px;
}

.herobanner_shape4 {
  top: 71%;
  left: 16.3%;
  width: 78px;
  height: 118px;
}

.home_about {
  /*background: rgba(0 255 0 / 15%);*/
  min-height: 70vh;
  padding: 180px 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  /*background: #fff;*/
}

.home_about .home_about_in {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.home_about .home_about_in .logo {
  width: 148px;
  height: 118px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home_about .home_about_in .txt_about {
  text-align: center;
}

.home_about .home_about_in .txt_about h1 {
  font-size: var(--font28);
  font-family: "Anantason Lite Bold";
  color: var(--cBlack);
}

.home_about .home_about_in .txt_about p {
  font-size: var(--font20);
  font-family: "Anantason Lite Regular";
  color: var(--cBlack);
  margin-top: 24px;
}

.home_about .home_about_in .state {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 60px;
  white-space: nowrap;
  margin-top: 40px;
}

.home_about .home_about_in .state .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.home_about .home_about_in .state .item .num {
  font-size: var(--font60);
  font-family: "Anantason Lite Bold Expanded";
}

.home_about .home_about_in .state .item .txt {
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
  color: var(--cBlack);
  padding-left: 16px;
  width: 134px;
  white-space: normal;
}

.about_logo_mock {
  opacity: 0.2;
  width: 148px;
  height: 118px;
  visibility: hidden;
}

.logo_about1 {
  bottom: 0%;
  left: 0%;
}

.logo_about2 {
  bottom: 0%;
  left: 80%;
}

.logo_about_brown {
  bottom: 0;
  left: 21%;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_green {
  bottom: 0;
  left: 34%;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_blue {
  bottom: 0;
  left: 49%;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_orange {
  bottom: 0;
  left: 64%;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt1 {
  top: 4px;
  left: 2px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt2 {
  top: 43px;
  left: 2px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt3 {
  top: 83px;
  left: 1px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt4 {
  top: 3px;
  right: 2px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt5 {
  top: 43px;
  right: 1px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_about_txt6 {
  top: 83px;
  right: 2px;
  visibility: hidden;
  opacity: 0.2;
}

.logo_herobanner_txt1 {
  top: -450px;
  left: -30vw;
  transform: scale(1.5);
}

.logo_herobanner_txt2 {
  top: -250px;
  left: -22vw;
  transform: scale(1.5);
}

.logo_herobanner_txt3 {
  top: -200px;
  left: -40vw;
  transform: scale(1.5);
}

.logo_herobanner_txt4 {
  top: -400px;
  right: -32vw;
  transform: scale(1.5);
}

.logo_herobanner_txt5 {
  top: -300px;
  right: -20vw;
  transform: scale(1.5);
}

.logo_herobanner_txt6 {
  top: -150px;
  right: -35vw;
  transform: scale(1.5);
}

.logo_herobanner_txt1 img {
  opacity: 0;
}

.logo_herobanner_txt2 img {
  opacity: 0;
}

.logo_herobanner_txt3 img {
  opacity: 0;
}

.logo_herobanner_txt4 img {
  opacity: 0;
}

.logo_herobanner_txt5 img {
  opacity: 0;
}

.logo_herobanner_txt6 img {
  opacity: 0;
}

.header-padding {
  margin-top: 100px;
}

.project-all h1 {
  font-size: var(--font40);
  font-family: "Anantason Lite Bold Expanded";
  margin-bottom: 60px;
  margin-top: 30px;
}

.btn-solid {
  font-size: var(--font16);
  font-family: "Anantason Lite Bold Expanded";
  color: var(--cWhite);
  background: var(--cBlack);
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  transition: all 0.2s ease-out;
}

.btn-line {
  display: inline-block;
  color: var(--cBlack);
  font-size: var(--font16);
  font-family: "Anantason Lite Medium";
  background: var(--cWhite);
  border: 2px solid #000;
  border-radius: 100px;
  padding: 12px 32px;
  transition: all 0.2s ease-out;
}

.project-single-masthead {
  height: 534px;
  position: relative;
}
.project-single-masthead .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.project-single-masthead .bg-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.project-single-masthead h1 {
  font-family: "Anantason Lite Bold Expanded";
  font-size: 44px;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 20px;
}
.project-single-masthead .calendar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  margin-top: 30px;
  margin-right: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.project-single-masthead .calendar .box {
  position: relative;
  display: block;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.25);
  width: 60px;
}
.project-single-masthead .calendar .box .date {
  padding: 5px 0;
  display: block;
  line-height: 1;
  background: #fff;
  color: var(--cBlack);
  font-size: var(--font28);
  font-family: "Anantason Lite Bold";
  border-radius: 0 0 12px 12px;
}
.project-single-masthead .calendar .box:nth-child(2):before {
  content: "-";
  position: absolute;
  color: #000;
  font-size: var(--font40);
  font-family: "Anantason Lite Bold";
  left: -32px;
  top: 0%;
  height: 100%;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-single-masthead .calendar .box .month {
  padding: 5px 0;
  display: block;
  line-height: 1;
  background: #D20019;
  color: var(--cWhite);
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
  border-radius: 12px 12px 0 0;
}
.project-single-masthead .detail-wrap {
  z-index: 3;
  padding-top: 40px;
}
.project-single-masthead .progress-wrap {
  position: absolute;
  width: 100%;
  height: 54px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  bottom: 0;
}
.project-single-masthead .progress-wrap .progress {
  display: flex;
  width: 100%;
  align-items: center;
  padding-left: 40px;
}
.project-single-masthead .progress-wrap .progress p {
  width: 100%;
  text-align: right;
}
.project-single-masthead .progress-wrap .bar {
  border: 2px solid #000;
  width: 100%;
  height: 12px;
  border-radius: 50px;
}
.project-single-masthead .progress-wrap .bar span {
  background: #000;
  width: 0;
  display: block;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
  max-width: 100% !important;
}
.project-single-masthead .progress-wrap .txtnormal {
  color: var(--cBlack);
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}
.project-single-masthead .progress-wrap .txtbig {
  color: var(--cBlack);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
  margin-left: 4px;
}
.project-single-masthead .progress-wrap .txtduedate {
  color: var(--cBlack);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
  margin-left: 4px;
}
.project-single-masthead .infobox {
  background: #FFFFFF;
  box-shadow: 0px 17px 40px -16px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: -30px;
  margin-top: 40px;
}
.project-single-masthead .container-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-single-masthead .btn-solid, .project-single-masthead .btn-line {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.project-single-masthead .info-list {
  margin-top: 20px;
}
.project-single-masthead .info-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--font14);
}
.project-single-masthead .info-list h3 {
  font-family: "Anantason Lite Bold";
  font-size: var(--font14);
}

.container-single {
  max-width: 736px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.share {
  display: flex;
  justify-content: space-between;
}
.share ul, .share li {
  list-style: none;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
.share h3 {
  font-family: "Anantason Lite Bold";
  font-size: var(--font14);
}
.share img {
  filter: invert(1);
}

.section-content-wrapper {
  width: 100%;
  max-width: 1300px;
  display: grid;
  margin: auto;
  grid-template-columns: 1fr 736px 1fr;
  padding-top: 100px;
  grid-gap: 40px;
}
.section-content-wrapper .float-poster {
  order: 3;
}
.section-content-wrapper .float-poster > div {
  position: sticky;
  top: 200px;
  background: #F3F3F3;
  border-radius: 24px;
  padding: 30px;
}
.section-content-wrapper .float-poster > div .btn-solid, .section-content-wrapper .float-poster > div .btn-line {
  font-size: 14px;
  padding: 10px;
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 5px;
}
.section-content-wrapper .float-poster > div .poster a img {
  filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.12));
  border-radius: 12px;
  margin-bottom: 15px;
  margin-top: -80px;
  cursor: zoom-in;
}
.section-content-wrapper .float-poster > div .share {
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}
.section-content-wrapper .float-poster > div .share h3 {
  margin-right: 10px;
}
.section-content-wrapper .content-list ul {
  position: sticky;
  top: 150px;
}
.section-content-wrapper .content-list ul li {
  list-style: auto;
  border-bottom: dotted 1px #777;
  padding: 5px 0;
  font-size: 14px;
}
.section-content-wrapper .content-list ul li a {
  color: #000;
  font-size: var(--font16);
  line-height: 1.5;
  display: block;
  font-size: 14px;
}
.section-content-wrapper .content-list ul li a:hover {
  font-family: "Anantason Lite Bold";
}
.section-content-wrapper .main-content h3 {
  font-family: "Anantason Lite Bold";
  margin-bottom: 20px;
}
.section-content-wrapper .main-content h2 {
  font-family: "Anantason Lite Bold";
  font-size: var(--font20);
  margin-bottom: 10px;
  margin-top: 20px;
}
.section-content-wrapper .main-content .readmore {
  border-bottom: solid 2px #00000036;
  padding-bottom: 20px;
}
.section-content-wrapper .main-content .readmore .more-link, .section-content-wrapper .main-content .readmore .less-link {
  color: #000;
  border-bottom: solid 2px #000;
  display: inline-block;
  font-family: "Anantason Lite Bold";
}
.section-content-wrapper .main-content p, .section-content-wrapper .main-content li, .section-content-wrapper .main-content span {
  font-family: "Bai Jamjuree", sans-serif !important;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 18px !important;
}
.section-content-wrapper .main-content p {
  margin-top: 20px;
}
.section-content-wrapper .main-content li {
  margin-bottom: 0;
}
.section-content-wrapper .main-content ul, .section-content-wrapper .main-content ol {
  padding-left: 30px;
  margin-bottom: 20px;
}
.section-content-wrapper .main-content * {
  text-align: left !important;
}
.section-content-wrapper .main-content .related > h2 {
  font-size: var(--font24);
  margin-top: 50px;
  margin-bottom: 20px;
}
.section-content-wrapper .main-content .related .related-wrap {
  grid-template-columns: 1fr 1fr;
  display: grid;
  grid-gap: 20px;
}
.section-content-wrapper .main-content .related .related-wrap h2 {
  margin-top: 0px;
  font-size: var(--font18);
}

.related-project {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 100px;
  font-size: var(--font32);
}
.related-project > h2 {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}
.related-project > h2 span {
  color: #000;
}
.related-project > h2 span img {
  width: 99px;
  margin-left: -80px;
  top: 8px;
  position: relative;
}
.related-project .related-project-wrap {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: center;
  gap: 48px 24px;
}

.project-single-masthead[data-shape-type=hexagon] .bg-img {
  -webkit-mask-image: url(../../images/shape_hexagon.svg);
  mask-image: url(../../images/shape_hexagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  right: 15vw;
}

.project-single-masthead[data-shape-type=square] .bg-img {
  -webkit-mask-image: url(../../images/shape_square.svg);
  mask-image: url(../../images/shape_square.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  right: 15vw;
}

.project-single-masthead[data-shape-type=pentagon] .bg-img {
  -webkit-mask-image: url(../../images/shape_pentagon.svg);
  mask-image: url(../../images/shape_pentagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  right: 15vw;
}

.project-single-masthead[data-shape-type=hexagon] .bg-img {
  -webkit-mask-image: url(../../images/shape_hexagon.svg);
  mask-image: url(../../images/shape_hexagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  right: 15vw;
}

.project-single-masthead[data-shape-type=heptagon] .bg-img {
  -webkit-mask-image: url(../../images/shape_heptagon.svg);
  mask-image: url(../../images/shape_heptagon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  right: 15vw;
}

.project-single-masthead[data-theme-type=white] h1 {
  color: #fff;
}
.project-single-masthead[data-theme-type=white] .topbox p {
  color: #fff;
}
.project-single-masthead[data-theme-type=white] .icon {
  filter: invert(1);
}
.project-single-masthead[data-theme-type=white] .calendar .box:nth-child(2):before {
  color: #fff;
}

.blog-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

.blog-all .txt_change {
  top: -30px;
  position: relative;
}
.blog-all h1 {
  margin-bottom: 30px;
}
.blog-all h1 span {
  opacity: 0;
  position: absolute;
}
.blog-all .filter {
  margin-bottom: 60px;
}
.blog-all .filter .item a {
  padding: 10px 20px;
  display: inline-block;
}

.blog-single .blog-banner {
  width: 100%;
  height: 500px;
}
.blog-single .blog-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single .banner-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog-single .banner-content .banner-content-container {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.blog-single .banner-content h1 {
  font-family: "Anantason Lite Bold";
  font-size: 34px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-single .banner-content .share {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.blog-single .banner-content .share h3 {
  font-size: 16px;
}
.blog-single .banner-content .share span {
  width: 40px;
  height: 2px;
  background-color: #000;
  margin-left: 10px;
}
.blog-single .category-a a {
  color: #000;
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
  margin-bottom: 8px;
}

.blog-content {
  max-width: 680px;
  margin: auto;
  padding-top: 60px;
}
.blog-content h2, .blog-content h3 {
  font-family: "Anantason Lite Bold";
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.blog-content ul, .blog-content ol {
  padding-left: 40px;
  margin-bottom: 20px;
}
.blog-content p, .blog-content li {
  font-family: "Bai Jamjuree", sans-serif;
  line-height: 1.6;
}
.blog-content p {
  margin-bottom: 20px;
}
.blog-content .posterbox {
  margin-top: 50px;
  margin-bottom: 50px;
}
.blog-content .posterbox .poster {
  margin: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
}
.blog-content .posterbox .box {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0px 17px 40px -16px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  grid-gap: 30px;
}
.blog-content .posterbox .box h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}
.blog-content .posterbox .box p {
  margin-bottom: 0;
  font-size: 14px;
}
.blog-content .posterbox .box span {
  text-align: center;
}
.blog-content .posterbox a {
  color: #000;
}

.blog-credit {
  text-align: center;
  margin-top: 60px;
}
.blog-credit p {
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-credit p span {
  font-family: "Anantason Lite Bold";
}
.blog-credit .tag ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.blog-credit .tag ul li a {
  list-style: none;
  border: 1px solid #006836;
  border-radius: 100px;
  font-family: "Bai Jamjuree";
  color: #006836;
  font-size: 14px;
  padding: 5px 10px;
  margin-right: 4px;
}
.blog-credit .tag ul li {
  margin-top: 15px;
}
.blog-credit .share {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.blog-credit .share h3 {
  font-size: 16px;
}
.blog-credit .share span {
  width: 40px;
  height: 2px;
  background-color: #000;
  margin-left: 10px;
}

.support-masthead {
  padding-top: 60px;
}
.support-masthead h1 {
  font-size: 50px;
  font-family: var(--fontbold);
  text-align: center;
  margin-bottom: 20px;
}
.support-masthead p {
  text-align: center;
}
.support-masthead .join {
  background-color: #fff;
  padding-top: 100px;
}

.support h2 {
  font-family: var(--fontexpand);
  margin-top: 50px;
  margin-bottom: 20px;
}
.support .num {
  width: 142px;
  margin-top: -70px;
}
.support .container1440 {
  max-width: 1200px;
  padding: 0;
}
.support h3, .support h4 {
  font-family: var(--fontbold);
  margin-bottom: 10px;
}
.support h4 {
  font-size: 14px;
  margin-bottom: 5px;
}
.support .accountnum {
  font-size: var(--font32);
  font-family: var(--fontbold);
  letter-spacing: 2px;
}

.support-1 {
  background-color: #65CBCD;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
}
.support-1 .container1440 {
  background-color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.support-1 .container1440 .column1 {
  border-right: solid 1px #ddd;
  padding: 40px;
}
.support-1 .container1440 .column1 p {
  line-height: 1.6;
}
.support-1 .container1440 .column2 > div {
  padding: 40px;
}
.support-1 .container1440 .column2 > div:first-child {
  border-bottom: solid 1px #ddd;
}
.support-1 .container1440 .bank {
  display: flex;
  grid-gap: 30px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.support-1 .container1440 .bank img {
  width: 96px;
  height: auto;
  object-fit: contain;
}
.support-1 .container1440 .accountwrap {
  display: flex;
  align-items: center;
}
.support-1 .container1440 .accountwrap button {
  border: none;
  background-color: transparent;
  border-bottom: solid 2px;
  height: auto;
  margin-left: 20px;
  cursor: pointer;
}
.support-1 .container1440 .accountwrap button:active {
  font-weight: 600;
}
.support-1 .container1440 .qr-section {
  display: flex;
  grid-gap: 40px;
}
.support-1 .container1440 .qr-section .button-line {
  border: solid 2px #000;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  font-family: var(--fontbold);
  margin-top: 15px;
}

.support-2 {
  background-color: #FD9800;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
}
.support-2 .container1440 {
  background-color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.support-2 .container1440 .column1 {
  border-right: solid 1px #ddd;
  padding: 40px;
}
.support-2 .container1440 .column1 p {
  line-height: 1.6;
}
.support-2 .container1440 .column2 {
  padding: 60px 40px;
}
.support-2 .container1440 .column2 ul {
  padding-left: 30px;
}
.support-2 .container1440 .column2 ul li {
  font-family: var(--fontbody);
  margin-bottom: 5px;
}
.support-2 .container1440 .column3 {
  border-top: solid 1px #ddd;
  grid-column: 1/4;
  padding: 40px 50px 60px 50px;
  margin: 0px 0px;
}
.support-2 .container1440 .column3 .row-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0px 40px;
  margin-bottom: 60px;
  column-gap: 90px;
}
.support-2 .container1440 .column3 .row-1 div {
  margin-top: 40px;
}
.support-2 .container1440 .column3 .row-1 h3 {
  font-size: var(--font30);
  font-family: "Anantason Lite Bold";
}
.support-2 .container1440 .column3 .row-1 .tel-but {
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  display: inline-block;
  padding: 10px 15px;
  border: 2px black solid;
  border-radius: 100px;
  color: #000;
}
.support-2 .container1440 .column3 .row-1 h3, .support-2 .container1440 .column3 .row-1 p {
  margin-bottom: 25px;
}
.support-2 .container1440 .column3 .row-1 p {
  font-size: var(--font18);
  font-family: "Anantason Lite Regular";
}
.support-2 .container1440 .column3 .row-1 h4 {
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  margin: 0px;
  margin-bottom: 10px;
}
.support-2 .container1440 .column3 .row-2 div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px 15px 25px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 0px 17px 30px -16px rgba(0, 0, 0, 0.2);
}
.support-2 .container1440 .column3 .row-2 div h4 {
  font-size: var(--font20);
  font-family: "Anantason Lite Bold";
  margin: 0px;
}
.support-2 .container1440 .column3 .row-2 div a {
  padding: 10px 25px;
  border: 2px black solid;
  border-radius: 100px;
  color: var(--cBlack);
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
}
.support-2 .container1440 .column3 .row-2 div:last-of-type {
  margin-bottom: 40px;
}

.black-but {
  font-size: var(--font16);
  font-family: "Anantason Lite Bold";
  color: var(--cWhite);
  background: black;
  padding: 10px 30px;
  border-radius: 100px;
  display: inline-block;
}

.support-3 {
  background-color: #006836;
  padding-top: 120px;
  padding-bottom: 150px;
  padding-left: 30px;
  padding-right: 30px;
}
.support-3 .container1440 {
  background-color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  padding: 0px 120px 0px 50px;
}
.support-3 .container1440 h2 {
  font-size: var(--font30);
  font-family: "Anantason Lite Bold";
}
.support-3 .container1440 p {
  font-size: var(--font18);
  font-family: "Anantason Lite Regular";
  line-height: 170%;
  margin-bottom: 40px;
}
.support-3 .container1440 .black-but {
  margin-bottom: 40px;
}
.support-3 .img-support-3 {
  padding: 60px 0px;
}

.contact-info {
  margin-top: 180px;
}
.contact-info .container1200 {
  border-bottom: 1px solid black;
}
.contact-info .container1200 h1 {
  font-size: var(--font50);
  font-family: "Anantason Lite Bold";
  text-align: center;
  margin-bottom: 120px;
}
.contact-info .contact-info-wrapper {
  display: flex;
  column-gap: 150px;
  margin-bottom: 100px;
}
.contact-info .contact-info-wrapper h3 {
  font-size: var(--font20);
  font-family: "Anantason Lite Bold";
  margin-bottom: 20px;
}
.contact-info .contact-info-wrapper p {
  font-size: var(--font18);
  font-family: "Anantason Lite Regular";
  line-height: 160%;
}
.contact-info .contact-info-wrapper a {
  color: var(--cBlack);
}
.contact-info .contact-info-wrapper .flex-row {
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
}
.contact-info .contact-info-wrapper .flex-row.contact-wrap {
  column-gap: 25px;
  margin-top: 20px;
}
.contact-info .contact-info-wrapper .flex-row.contact-wrap .flex-row {
  column-gap: 5px;
}
.contact-info .contact-info-wrapper .flex-row.contact-wrap .flex-row img {
  margin-top: -1.5px;
}
.contact-info .contact-info-icon {
  display: flex;
  column-gap: 20px;
  margin-top: 40px;
}

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

.div50-100 {
  width: 50%;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.contact-map {
  margin: 90px 0px;
}

.contact-map-wrapper {
  display: flex;
  column-gap: 150px;
}
.contact-map-wrapper h2 {
  font-size: var(--font30);
  font-family: "Anantason Lite Bold";
  margin-bottom: 50px;
}
.contact-map-wrapper h3 {
  font-size: var(--font20);
  font-family: "Anantason Lite Bold";
  margin-bottom: 15px;
}
.contact-map-wrapper p {
  font-size: var(--font16);
  font-family: var(--fontbody);
  line-height: 160%;
}
.contact-map-wrapper .contact-map-items:not(:last-child) {
  margin-bottom: 60px;
}
.contact-map-wrapper a {
  color: var(--cBlack);
}
.contact-map-wrapper .contact-map-items .flex-row {
  margin-top: 10px;
  align-items: center;
  column-gap: 5px;
}
.contact-map-wrapper .contact-map-items .flex-row a {
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
}
.contact-map-wrapper .contact-map-items .flex-row img {
  margin-top: -1.5px;
}
.contact-map-wrapper .contact-map-img {
  position: sticky;
  top: 150px;
}

.result-sub-banner {
  background-color: black;
  padding: 150px 0px 120px 0px;
}
.result-sub-banner span {
  display: none;
}
.result-sub-banner h2 {
  color: var(--cWhite);
  font-size: var(--font24);
  font-family: "Anantason Lite Bold";
}
.result-sub-banner .result-sub-banner-wrapper .txt-smile {
  margin-left: -45px;
  margin-top: -25px;
}
.result-sub-banner .result-sub-banner-wrapper h1 {
  margin-left: -30px;
  margin-bottom: -80px;
}
.result-sub-banner .result-sub-banner-wrapper h1, .result-sub-banner .result-sub-banner-wrapper h2 {
  text-align: center;
}
.result-sub-banner .result-sub-banner-wrapper .result-sub-banner-items-wrapper {
  display: flex;
  column-gap: 25px;
  justify-content: space-between;
  margin-top: 50px;
}
.result-sub-banner .result-sub-banner-wrapper .result-sub-banner-items-wrapper .result-sub-banner-item {
  padding: 15px 15px 20px 30px;
  background-color: red;
  width: 100%;
  height: 350px;
  border-radius: 35px;
}

.result-sub-join {
  padding: 100px 0px 40px 0px;
}
.result-sub-join h2 {
  font-size: var(--font30);
  font-family: "Anantason Lite Bold";
  text-align: center;
  margin-bottom: 60px;
}
.result-sub-join .result-sub-join-wrapper {
  display: flex;
  justify-content: space-around;
}
.result-sub-join .result-sub-join-wrapper .result-sub-join-item {
  padding: 10px 40px 40px 40px;
  width: 320px;
}
.result-sub-join .result-sub-join-wrapper .result-sub-join-item h3 {
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  margin-bottom: 20px;
}
.result-sub-join .result-sub-join-wrapper .result-sub-join-item img {
  height: 30px;
  margin-bottom: 15px;
}
.result-sub-join .result-sub-join-wrapper .result-sub-join-item:not(:first-child) {
  border-left: 1px solid black;
}
.result-sub-join .result-sub-join-wrapper .result-sub-join-item:first-child {
  padding-left: 0px;
}

.submit-banner {
  padding-top: 150px;
  text-align: center;
  color: var(--cWhite);
  font-size: var(--font32);
  font-family: "Anantason Lite Bold";
  background-color: black;
}
.submit-banner span {
  display: none;
}
.submit-banner img {
  margin-right: -5px;
}
.submit-banner br {
  display: none;
}

.submit-sec {
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: black;
  padding-left: 30px;
  padding-right: 30px;
}
.submit-sec .container900 {
  max-width: 900px;
  margin: 0 auto;
}
.submit-sec h2 {
  color: var(--cWhite);
  font-size: var(--font22);
  font-family: "Anantason Lite Bold";
}
.submit-sec p {
  color: var(--cWhite);
  font-size: var(--font14);
}
.submit-sec .submit-line {
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.submit-sec .submit-wrap-1 {
  display: flex;
  justify-content: space-between;
  column-gap: 25px;
}
.submit-sec .submit-wrap-1 .submit-item-1 {
  border-radius: 16px;
  background-color: var(--cWhite);
  text-align: center;
  padding: 40px;
  width: 278px;
  transform: scale(1);
  transition: all 400ms;
}
.submit-sec .submit-wrap-1 .submit-item-1 h3 {
  color: var(--cBlack);
  font-size: var(--font20);
  font-family: "Anantason Lite Bold";
  margin-bottom: 15px;
}
.submit-sec .submit-wrap-1 .submit-item-1:hover {
  background-color: #FBF0E1;
  transform: scale(1.05);
  transition: all 400ms;
}
.submit-sec .submit-wrap-2 .submit-item-2 {
  width: 100%;
  background-color: var(--cWhite);
  border-radius: 14px;
  padding: 20px 0px 20px 40px;
  transform: scale(1);
  transition: all 400ms;
}
.submit-sec .submit-wrap-2 .submit-item-2 h3 {
  color: var(--cBlack);
  font-size: var(--font20);
  font-family: "Anantason Lite Bold";
}
.submit-sec .submit-wrap-2 .submit-item-2:not(:last-child) {
  margin-bottom: 10px;
}
.submit-sec .submit-wrap-2 .submit-item-2:hover {
  background-color: #FBF0E1;
  transform: scale(1.05);
  transition: all 400ms;
}
.submit-sec.first {
  margin-bottom: 80px;
}

.flex-hor-cen-be {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.about-banner {
  padding-top: 200px;
  padding-bottom: 200px;
  background-image: url("../../images/about-banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  overflow: hidden;
}
.about-banner .about-banner-wrap {
  margin-bottom: 180px;
}
.about-banner .about-banner-wrap h1 {
  font-size: var(--font50);
  font-family: "Anantason Lite Bold";
  text-align: center;
  margin-bottom: 40px;
}
.about-banner .about-banner-wrap span {
  display: none;
}
.about-banner .about-banner-wrap img {
  margin-top: -40px;
  margin-left: 10px;
}
.about-banner .about-banner-wrap p {
  text-align: center;
}
.about-banner .about-banner-info-wrap h2 {
  font-size: var(--font24);
  color: var(--cGreen);
  font-family: "Anantason Lite Bold";
}
.about-banner .about-banner-info-wrap p {
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
}
.about-banner .about-banner-info-wrap .about-banner-info-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-line {
  width: 40px;
  height: 3px;
  background-color: var(--cGreen);
  margin-top: 5px;
  margin-bottom: 20px;
}
.about-banner .about-banner-info-wrap .about-banner-info-item span {
  font-family: "Anantason Lite Bold";
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-info-item-wrap {
  display: flex;
  flex-direction: row;
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-info-item-wrap .desktop-hide {
  display: none;
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-info-item-wrap .div50-100.mobile-hide {
  position: relative;
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-info-item-wrap .line-about01 {
  position: absolute;
  top: 390px;
  right: 69px;
}
.about-banner .about-banner-info-wrap .about-banner-info-item .about-banner-info-item-wrap .line-about02 {
  position: absolute;
  top: 553px;
  right: 325px;
}
.about-banner .about-banner-info-wrap .about-banner-info-item:first-child img {
  margin-left: 135px;
}
.about-banner .about-banner-info-wrap .about-banner-info-item:nth-child(2) img {
  margin-left: 70px;
  margin-top: -50px;
  filter: drop-shadow(0px 42px 100px rgba(0, 0, 0, 0.25));
}
.about-banner .about-banner-info-wrap .about-banner-info-item:last-child img {
  position: absolute;
  margin-top: -50px;
  margin-left: 70px;
}
.about-banner .about-banner-info-wrap .about-banner-info-item:not(:last-child) {
  margin-bottom: 250px;
}
.about-banner .about-banner-info-wrap .div50-100.mobile-hide .about-banner-image-wrap {
  position: relative;
}
.about-banner .about-banner-info-wrap .div50-100.mobile-hide .about-banner-image-wrap .img31 {
  z-index: 2;
  left: 150px;
}
.about-banner .about-banner-info-wrap .div50-100.mobile-hide .about-banner-image-wrap .img32 {
  z-index: 1;
  left: -100px;
}
.about-banner .about-banner-info-wrap .div50-100.mobile-hide .about-banner-image-wrap .img33 {
  z-index: 0;
  top: -100px;
  left: 100px;
}

.about-join {
  margin-bottom: 110px;
}
.about-join .about-banner-last {
  position: relative;
  text-align: center;
  font-size: var(--font26);
  font-family: "Anantason Lite bold";
  margin-bottom: 0px;
}
.about-join .about-banner-last h2 {
  border-radius: 50px;
  border: 5px solid #FD9800;
  display: inline-block;
  padding: 15px 30px;
}
.about-join .txt-center {
  text-align: center;
}
.about-join span {
  font-family: "Anantason Lite Bold";
}
.about-join p {
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
}
.about-join p:first-child {
  margin-bottom: 50px;
}
.about-join h2 p {
  font-size: var(--font32);
  color: var(--cGreen);
  font-family: "Anantason Lite Bold";
  margin-top: 80px;
  margin-bottom: 60px;
}
.about-join .about-join-item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  margin-bottom: 60px;
}
.about-join .about-join-item-wrap h2 {
  margin: 0;
}

.about-purpose, .about-team {
  padding-left: 40px;
  padding-right: 40px;
}
.about-purpose h2, .about-team h2 {
  font-size: var(--font26);
  font-family: "Anantason Lite Bold";
  white-space: nowrap;
  margin: 0px 30px;
}
.about-purpose .about-headline, .about-team .about-headline {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.about-purpose .about-headline .about-headline-line, .about-team .about-headline .about-headline-line {
  width: 100%;
  height: 1px;
  background-color: var(--cBlack);
}

.about-purpose {
  margin-bottom: 100px;
}
.about-purpose p {
  font-size: var(--font16);
  font-family: "Anantason Lite Regular";
}
.about-purpose .about-purpose-wrapper {
  display: flex;
  justify-content: space-between;
}
.about-purpose .about-purpose-wrapper img {
  margin-bottom: 20px;
}
.about-purpose .about-purpose-wrapper .about-purpose-item {
  width: 250px;
}

.about-team .about-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-around;
  column-gap: 80px;
}
.about-team .about-head-item img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 15px;
}
.about-team .about-head-item h3 {
  font-size: var(--font18);
  font-family: "Anantason Lite Bold";
  padding-bottom: 5px;
}
.about-team .about-head-item p {
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}
.about-team .about-grid-wrapper.sub {
  margin-top: 40px;
  row-gap: 20px;
}
.about-team .about-sub-item {
  display: flex;
  flex-direction: row;
}
.about-team .about-sub-item img {
  margin-right: 15px;
  border-radius: 15px;
}
.about-team .about-sub-item h3 {
  font-size: var(--font14);
  font-family: "Anantason Lite Bold";
  padding-bottom: 0px;
}
.about-team .about-sub-item p {
  font-size: var(--font14);
  font-family: "Anantason Lite Regular";
}
.about-team .about-sub-item div {
  padding-top: 15px;
}

.about-banner p:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt p), .about-banner h2:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt h2), .about-banner h3, .about-join p:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt p), .about-join h2:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt h2), .about-join h3, .about-purpose p:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt p), .about-purpose h2:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt h2), .about-purpose h3, .about-team p:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt p), .about-team h2:not(.about-join .about-join-wrap .about-join-item-wrap .card_project .info .desc .txt h2), .about-team h3 {
  line-height: 1.6;
}

a {
  font-size: 30p;
}

.admin-bar header {
  top: 32px;
}

.header_expand .header_expand_in .menu li a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

header .notification .noti_body .item {
  width: 100%;
}

.project-single-masthead.nocontent {
  height: auto;
  min-height: 240px;
  display: flex;
  align-items: center;
}
.project-single-masthead.nocontent img {
  height: auto !important;
}
.project-single-masthead.nocontent .container-single {
  grid-template-columns: 1fr;
}
.project-single-masthead.nocontent .detail-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}
.project-single-masthead.nocontent .bg-img {
  overflow: hidden;
}

.section-content-wrapper .main-content {
  font-family: var(--fontbody);
  padding-bottom: 80px;
}
.section-content-wrapper img {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100% !important;
}
.section-content-wrapper .main-content a {
  color: #000;
  text-decoration: none;
  border-bottom: solid 1px #000;
}
.section-content-wrapper iframe {
  height: 400px;
  width: 100%;
}

.section-content-wrapper.nocontent {
  padding-top: 40px !important;
}
.section-content-wrapper.nocontent h2 img,
.section-content-wrapper.nocontent h3 img,
.section-content-wrapper.nocontent h4 img {
  width: auto !important;
}

.card_project {
  background-image: url(../../../assets/images/gradient.jpg);
  color: #000;
  background-size: cover;
}

.section-content-wrapper .main-content .readmore .more-link, .section-content-wrapper .main-content .readmore .less-link {
  border: solid 2px #000;
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 15px;
  line-height: 1.2;
}

.card_blog {
  border-bottom: none !important;
}
.card_blog img {
  margin-top: 0;
  margin-bottom: 0;
}

.card_project .progress p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.wewantyou .filter .item a {
  height: 50px;
}

.blog-all .filter .item a {
  height: auto !important;
}

.card_blog img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card_blog .txt {
  min-height: 130px;
}

.card_blog[data-blog-type=type3] .txt {
  background: #A1E5C4;
}

.post-categories li {
  list-style: none;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-content .wp-block-image {
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-content figcaption {
  font-family: "Bai Jamjuree", sans-serif !important;
  font-size: 15px;
  margin-top: 10px;
}
.blog-content img {
  width: 100%;
  height: auto;
}
.blog-content p, .blog-content li, .blog-content span, .blog-content pre {
  font-family: "Bai Jamjuree", sans-serif !important;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 18px !important;
  display: block;
  white-space: normal;
}
.blog-content a {
  color: #000;
  text-decoration: underline;
  font-family: "Bai Jamjuree", sans-serif !important;
}
.blog-content p, .blog-content li {
  color: #494949;
}
.blog-content li {
  margin-bottom: 0;
}
.blog-content strong {
  color: #000;
}

ul.post-categories {
  display: flex;
  grid-gap: 10px;
  justify-content: center;
}

ul.blocks-gallery-grid {
  padding: 0;
}

.about-join {
  padding-top: 100px;
  padding-bottom: 0;
}
.about-join div.txt-center {
  max-width: 850px;
  margin: auto;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
}
.about-join .about-banner-last h2 {
  font-size: 26px;
}
.about-join .about-join-wrap > p.txt-center {
  max-width: 782px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 30px;
}
.about-join h2 p {
  line-height: 1.4 !important;
}

.contact-form {
  background-color: #E4FFF2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact-form .contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 150px;
}
.contact-form .nf-form-fields-required {
  display: none;
}
.contact-form h2 {
  font-family: "Anantason Lite Bold";
}

.nf-form-content .list-select-wrap .nf-field-element > div, .nf-form-content input:not([type=button]), .nf-form-content textarea {
  background-color: #fff !important;
  border-radius: 5px !important;
}

.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
  background: #000 !important;
  border-radius: 35px !important;
  width: 100% !important;
  font-family: "Anantason Lite Bold";
  line-height: 1.2;
}

.blog-content.simple {
  padding-bottom: 100px;
}

.page-id-20110 {
  background-color: #000;
}
.page-id-20110 h1 {
  font-size: 36px;
}
.page-id-20110 header {
  background-color: #000;
}
.page-id-20110 header nav .shortmenu a {
  color: #fff;
}
.page-id-20110 header nav .btn_lang {
  color: #fff;
}
.page-id-20110 header nav .btn_join a {
  background-color: #353535;
}
.page-id-20110 header .icon_search_img {
  filter: invert(100%);
}
.page-id-20110 header .btn_lang img {
  filter: invert(100%);
}
.page-id-20110 header .icon_hamburger_img,
.page-id-20110 header nav .btn_search .close img {
  filter: invert(100%);
}
.page-id-20110 .nf-field-container .listradio-wrap,
.page-id-20110 .nf-field-container .listimage-wrap {
  padding: 30px;
  background-color: #000;
  border-radius: 25px;
}
.page-id-20110 .nf-field-container .listimage-wrap li {
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 25px;
  cursor: pointer;
}
.page-id-20110 .nf-field-container .listimage-wrap li img {
  margin: auto;
}
.page-id-20110 .nf-field-container .listimage-wrap li label {
  color: #000;
  font-family: "Anantason Lite Bold";
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  padding: 20px;
  cursor: pointer;
}
.page-id-20110 .nf-field-container .listimage-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 18px !important;
}
.page-id-20110 .nf-field-container .listradio-wrap li {
  background-color: #fff;
  border-radius: 25px;
  padding: 32px !important;
}
.page-id-20110 .nf-field-container .listradio-wrap li label {
  color: #000;
  cursor: pointer;
}
.page-id-20110 .submit-container {
  background-color: #000;
}
.page-id-20110 .nf-form-content input[type=button] {
  background-color: #fd9800 !important;
  color: #000;
  font-size: 22px;
  height: 65px;
}
.page-id-20110 .label-above .nf-field-label {
  margin-bottom: 22px !important;
}
.page-id-20110 .nf-form-fields-required {
  display: none;
}
.page-id-20110 .nf-form-content label {
  color: #fff;
  font-family: "Anantason Lite Bold";
  font-size: 24px;
}
.page-id-20110 .listimage-wrap li label.nf-checked-label {
  border-color: transparent;
  background-color: #f3efdd;
  border-radius: 25px;
  width: 100%;
  transition: none;
}
.page-id-20110 .listradio-wrap .nf-field-element label:after {
  top: 0.09em;
}
.page-id-20110 .nf-form-content button:hover, .page-id-20110 .nf-form-content input[type=button]:hover, .page-id-20110 .nf-form-content input[type=submit]:hover {
  color: #000;
}
.page-id-20110 .nf-response-msg {
  text-align: center;
  color: #fff;
  padding: 90px 0;
  max-width: 400px;
  margin: auto;
}

.project-single-masthead .progress-wrap .progress p {
  flex-basis: fit-content;
  margin-left: 10px;
}

.project-single-masthead .progress-wrap .bar {
  flex: 1;
}

.card_project[data-theme-type=white] .closedsubmit {
  font-size: 14px;
  border: solid 1px #fff;
  border-radius: 25px;
  padding: 4px 12px;
  margin-top: 9px;
  display: inline-block;
  color: #fff;
}

.card_project[data-theme-type=black] .closedsubmit {
  font-size: 14px;
  border: solid 1px #000;
  border-radius: 25px;
  padding: 4px 12px;
  margin-top: 9px;
  display: inline-block;
  color: #000;
}