@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Thai:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #efefef;
  border-radius: 60px;
  padding: 20px 40px;
  width: calc(100% - 80px);
  margin: 20px auto;
  position: relative;
  z-index: 999;
  transition: all 0.6s ease;
}

@media (max-width: 1024px) {
  .nav {
    width: calc(100% - 40px);
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 15px 30px;
  }
}
@media (max-width: 576px) {
  .nav {
    width: calc(100% - 40px);
    padding: 10px 20px;
  }
}
.nav.nav-home {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.nav.scroll {
  padding: 15px 30px;
}

@media (max-width: 576px) {
  .nav.scroll {
    padding: 10px 20px;
  }
}
.nav.scroll svg {
  width: 80px;
}

.nav.scroll .wrap-list-menu li {
  margin-left: 30px;
}

.nav svg {
  width: 100px;
  height: 30px;
  transition: all 0.6s ease;
}

@media (max-width: 768px) {
  .nav svg {
    width: 80px;
  }
}
.nav .list-menu {
  overflow-x: unset;
}

.nav .list-menu.mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav .list-menu.mobile {
    display: block;
  }
  .nav .list-menu.desk {
    display: none;
  }
}
.nav .list-menu .burger-menu {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav .list-menu .burger-menu span {
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}

.nav .list-menu .burger-menu span:nth-child(2) {
  margin: 6px 0;
}

.nav .list-menu .burger-menu.toggle span:first-child {
  transform: rotate(45deg);
}

.nav .list-menu .burger-menu.toggle span:nth-child(2) {
  display: none;
}

.nav .list-menu .burger-menu.toggle span:nth-child(3) {
  transform: rotate(-45deg) translateY(-1px);
}

.nav .list-menu ul li {
  margin-left: 40px;
  position: relative;
  transition: all 0.6s ease;
  overflow: hidden;
}

.nav .list-menu ul li .list-hover {
  overflow: hidden;
}

.nav .list-menu ul li .list-hover:after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  top: 100%;
  left: 0;
  pointer-events: none;
  content: attr(data-text);
  height: 100%;
  top: 0;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(150%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  /* font-weight: 600; */
  font-weight: 500;
  color: #000;
}

.nav .list-menu ul li .list-hover:lang(th):after {
  font-weight: unset !important;
}

.nav .list-menu ul li .list-hover:hover:after {
  transform: translateZ(0);
}

.nav .list-menu ul li .list-hover span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.nav .list-menu ul li .list-hover:hover span {
  transform: translate3d(-150%, 0, 0);
}

@media (max-width: 1024px) {
  .nav .list-menu ul li {
    margin-left: 25px;
  }
}
.wrap-list-menu {
  display: flex;
  align-items: center;
  overflow-x: unset;
}

.wrap-list-menu li a {
  font-family: "Plus Jakarta Sans", sans-serif;
  /* font-weight: 600; */
  font-weight: 500;
  transition: all 0.6s ease;
  color: #000;
}

.wrap-list-menu li a:lang(th) {
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: unset !important;
}

.wrap-list-menu li a.sign-up {
  color: #fff;
  border-radius: 60px;
  padding: 6px 12px;
  /* font-weight: 900; */
  font-weight: 400;
}

.wrap-list-menu li a.sign-up:lang(th) {
  padding: 6px 22px;
}

.wrap-list-menu li a.sign-up sup {
  text-transform: uppercase;
  padding: 0 5px;
  font-size: 8px;
}

.wrap-list-menu li a.sign-up sup:lang(th) {
  font-size: 16px;
}

.text-gradient-1 {
  background: linear-gradient(145deg, #57e28c, #44b3d6 16.5%, #e171de 32.5%, #ff8e63 60%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.text-gradient-1:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}

.bg-gradient-1 {
  background: linear-gradient(145deg, #57e28c, #44b3d6 16.5%, #e171de 32.5%, #ff8e63 60%);
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}

.bg-gradient-1:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}

.list-menu-mobile {
  width: 100%;
  background-color: #000;
  z-index: 998;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 100%;
  display: flex;
  padding: 140px 40px;
  transition: all 0.6s ease;
}

.list-menu-mobile.toggle {
  left: 0;
}

.list-menu-mobile ul {
  width: 100%;
  flex-direction: column;
}

.list-menu-mobile ul li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  will-change: transform, opacity, filter;
}

.list-menu-mobile ul li a {
  font-size: 24px;
  color: #fff;
}

.list-menu-mobile ul li a:lang(en) {
  font-size: 18px;
}

.navigation-bottom-component {
  width: 100%;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

.navigation-bottom-component.show {
  pointer-events: all;
  opacity: 1;
}

.navigation-bottom-component.is-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.navigation-bottom-component.is-menu a,
.navigation-bottom-component.is-menu p {
  overflow: hidden !important;
}

.navigation-bottom-component .menu_wrap {
  max-width: 100%;
  padding: 0.3em;
  border-radius: 100vw;
  background-color: #fff;
  box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.16);
}

.navigation-bottom-component .menu {
  position: relative;
  display: flex;
}

.navigation-bottom-component li {
  padding: 1.2em 1.7em;
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .navigation-bottom-component li {
    padding: 10px 15px;
  }
}
.navigation-bottom-component li a {
  /* font-family: Plus Jakarta Sans; */
  font-family: "Plus Jakarta Sans", sans-serif;
  /* font-weight: 600; */
  font-weight: 500;
}

.navigation-bottom-component li a span {
  font-size: 16px;
}

.navigation-bottom-component li a sup {
  padding: 0 5px;
  font-size: 12px;
}

.navigation-bottom-component .menu_link {
  position: relative;
  z-index: 2;
  color: #fff;
}

.navigation-bottom-component .menu_link span {
  color: #000;
}

.navigation-bottom-component .w-inline-block {
  max-width: 100%;
  display: flex;
}

.navigation-bottom-component .menu_link-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 100vw;
  background-color: #fff;
  opacity: 0;
}

.navigation-bottom-component .menu-register {
  opacity: 1;
  background-color: #ff5a37;
  border-radius: 100vw;
  margin-left: 18px;
  padding: 0;
}
.navigation-bottom-component .menu-register a {
  padding: 1.2em 1.7em;
}
@media (max-width: 576px) {
  .navigation-bottom-component .menu-register a {
    padding: 10px 15px;
  }
}

.navigation-bottom-component .btn-regis,
.navigation-bottom-component .menu-register span {
  color: #fff;
  font-weight: 700;
}

.navigation-bottom-component .menu_link-text {
  position: relative;
  z-index: 2;
}

.navigation-bottom-component .w--current {
  color: #0082f3;
  background-color: #c8c8c8;
}

.navigation-bottom-component .menu_shape {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: 0;
  z-index: 1;
  display: flex;
  width: 7em;
  justify-content: flex-start;
  opacity: 0;
  transform: translate(0);
}

.navigation-bottom-component .menu_shape-bg {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  border-radius: 100vw;
  background-color: #000;
}

.navigation-bottom-component .ic-home {
  width: 25px;
  height: 25px;
  display: flex;
}

.navigation-bottom-component span {
  font-size: 16px;
}

.navigation-bottom-component .link--leda:after {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}

.navigation-bottom-component .link:before {
  background-color: #000 !important;
}

.link--leda:before {
  content: "";
  height: 2px;
  width: 100%;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  background: #000 !important;
}

.link--leda:hover:before {
  transform-origin: 0 50%;
  transform: scaleX(1);
}

.link--leda:hover span {
  transform: translate3d(-150%, 0, 0);
}

.link--leda span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.link--leda:hover:after {
  transform: translateZ(0);
}

.link--leda:after {
  content: attr(data-text);
  height: 100% !important;
  top: 0 !important;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(150%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  font-weight: 500;
  color: #fff;
}

.link:after,
.link:before {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 100%;
  left: 0;
  pointer-events: none;
}

footer.footer-page {
  padding: 60px 20px 180px;
  background: #fff;
}

@media (max-width: 576px) {
  footer.footer-page {
    padding: 40px 20px 140px;
  }
}
footer.footer-page a {
  font-size: 16px;
}

@media (max-width: 576px) {
  footer.footer-page a {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  footer.footer-page a {
    font-size: 12px;
  }
}
footer.footer-page #logo-footer {
  width: 120px;
  margin: auto;
  padding-bottom: 40px;
}

footer.footer-page ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer.footer-page ul {
    max-width: 400px;
  }
}

footer.footer-page ul li {
  padding: 0 15px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  footer.footer-page ul li {
    margin-bottom: 20px;
  }
  footer.footer-page ul li:nth-child(2):after {
    display: none;
  }
}

footer.footer-page ul li a {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
}

footer.footer-page ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #000;
  right: 0;
}

.grid {
  gap: 25px;
  padding: 20px;
  -moz-column-count: 4;
  column-count: 4;
}
@media (max-width: 992px) {
  .grid {
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 650px) {
  .grid {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .grid {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.card {
  background: #ecedf4;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(3px 3px 2px rgba(204, 204, 204, 0.7));
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  margin-bottom: 25px;
}

.card:hover {
  transform: translateY(-8px);
}

.card-image {
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.views {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-content {
  padding: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.brand-name {
  color: #000;
  font-size: 12px;
  font-family: "Noto Sans Thai", sans-serif;
}

.title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  /* font-weight: 600; */
  font-weight: 500;
  margin-top: 10px;
}

.search-bar:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .search-bar {
    width: 100%;
    margin-bottom: 10px;
  }
  .header {
    flex-direction: column;
  }
}
.floating-action {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-action:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

section {
  width: 100%;
  padding: 140px 10px 10px;
}

section h1 {
  text-align: center;
  margin-bottom: 40px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  /* font-family: Plus Jakarta Sans, "Noto Sans Thai", sans-serif; */
  font-family: "Plus Jakarta Sans", "Noto Sans Thai", sans-serif;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */

article {
  padding: 140px 20px 20px;
}

article * {
  font-family: "Noto Sans Thai", sans-serif;
}
article h1 {
  text-align: center;
  margin-bottom: 20px;
  /* font-weight: 600; */
  font-weight: 500;
}

article .entry-meta {
  text-align: center;
  color: #000;
  font-size: 14px;
}

article .entry-meta * {
  color: #000;
  pointer-events: none;
}

nav.navigation.post-navigation {
  display: none;
}

header.entry-header {
  margin-bottom: 40px;
}

iframe {
  display: block;
  margin: auto;
}

header.page-header {
  display: none;
}

h2.entry-title, h2.entry-title a {
  color: #000;
  text-align: center;
}

.entry-content {
  text-align: center;
}

nav.navigation.posts-navigation {
  display: none;
}