


select {
  box-sizing: border-box;
  appearance: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  border-top-width: unset;
  border-right-width: unset;
  border-bottom-width: 1px;
  border-left-width: unset;
  border-top-style: unset;
  border-right-style: unset;
  border-bottom-style: solid;
  border-left-style: unset;
  color: unset;
  background-color: canvas;
  align-items: unset;
  white-space-collapse: unset;
  text-wrap-mode: unset;
  -webkit-rtl-ordering: unset;
  cursor: pointer;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html, body {
  overflow-x: hidden;
  color: #2E2E2E;
  background-color: #EEEEEE;
  font-family: "Prompt", "Poppins", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3E3E3E;
  font-weight: 600;
}

.width-medium {
  width: 70%;
}

.width-small {
  width: 50%;
}

.line-clamp {
  display: -webkit-box;
  max-width: 100%;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 884px) {
  .width-medium {
    width: 100%;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



.btn-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 400;
}

.btn-white:hover {
  background: #fff;
  color: #000;
}

.btn-dark {
  background: transparent;
  color: #2E2E2E;
  border: 1px solid #2E2E2E;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 400;
}

.btn-dark:hover {
  background: #2E2E2E;
  color: #ffffff;
}

.btn-blue {
  background: #22324B;
  color: #fff;
  border: 1px solid #22324B;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 400;
}

.btn-blue:hover {
  border: 1px solid #22324B;
  background: #fff;
  color: #22324B;
}

.btn-dense-dark {
  background: #2E2E2E;
  color: #fff;
  border: 1px solid #2E2E2E;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 400;
}

.btn-dense-dark:hover {
  border: 1px solid #2E2E2E;
  background: #fff;
  color: #2E2E2E;
}

.hover-zoom {
  overflow: hidden;
  height: 100%;
}

.hover-zoom img{
  transition: transform .5s ease;
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.hover-zoom:hover img{
  transform: scale(1.2);
}

.more {
  margin-top: 3rem;
}

.more span {
  color: #2E2E2E;
  opacity: .35;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.more span svg{
 width: 14px;
 margin-left: 5px;
}

.more span:hover {
  opacity: 1;
}

ul.navigator {
  display: flex;
  list-style: none;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  justify-content: center;
  margin-bottom: 5rem;
}

ul.navigator li a, ul.navigator li{
  color: #ADADAD;
}

ul.navigator li{
  padding: 0 10px;
}

ul.navigator li.active a{
  color: #22324B;
  text-transform: uppercase;
}

.text-white {
  color: #fff;
}

.text-green {
  color: #038D49;
}

.bg-white {
  background: #fff !important;
  background-color: #fff !important;
}

.bg-grey {
  background: #909090 !important;
  background-color: #909090 !important;
}

.bg-grey2 {
  background: #ADADAD !important;
  background-color: #ADADAD !important;
}

.bg-mediumgrey {
  background: #5C5C5C !important;
  background-color: #5C5C5C !important;
}

.bg-darkgrey {
  background: #383838 !important;
  background-color: #383838 !important;
}

.bg-green {
  background: rgb(3 141 73 / 20%) !important;
  background-color: rgb(3 141 73 / 20%) !important;
}

.section-pb {
  padding-bottom: 84px;
}

@media (max-width: 1368px) {
  .btn-dark {
    padding: 10px 20px;
  }
}

@media (max-width: 414px) {
  ul.navigator {
    font-size: 10px;
    margin-bottom: 3rem;
    padding-left: 0;
  }

  .btn-dark, .btn-blue, .btn-white  {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #ffffff;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 47%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s;
  z-index: 997;
}

.header .nav-top {
  padding: 5px 40px;
  background: #fff;
  height: 100px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.header .logo {
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .logo img {
  max-height: 80px;
}

.header .logo h1 {
  font-size: calc(2rem - 2px);
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.products-menu {
  background-color: #fff;
}

@media (max-width: 1440px) { 
  .header .nav-top {
    height: 80px;
  }

  .header .logo img {
    max-height: 60px;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 0;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

@media (max-width: 992px) {
  .header .nav-top {
    padding: 20px 40px;
  }

}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 40px;
  }

  .header .nav-top{
    padding: 15px 0px;
    height: 65px;
  }
}

@media (max-width: 414px) {
  .header .logo img {
    width: 130px;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color:#22324B;
  background: #22324B;;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

  .mobile-nav-toggle {
    color: #3E3E3E;
    font-size: 45px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: 0px solid color-mix(in srgb, #000, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus,
  .navmenu span {
    color: var(--nav-dropdown-color);
    padding: 15px 0;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 300;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    cursor: pointer;
  }

  .navmenu a:hover, .navmenu span:hover {
    color: #3E3E3E;
  }

  .navmenu a.active, .navmenu span.active {
    color: #3E3E3E;
    font-weight: 500;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: #444444;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 0 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #fff;
  }

  .navmenu .social {
    display: flex;
  }

  .navmenu .social .icon-social, .navbar-responesive .social .icon-social {
    width: 25px;
    margin-right: 25px;
  }

  .navmenu .li-social {
    border-bottom: unset;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #3E3E3E;
    position: absolute;
    font-size: 60px;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    margin-top: 100px;
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: #707070;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    padding-left: 170px;
    padding-right: 50px;
    width: 450px;
    overflow: hidden;
    padding-top: 100px;
  }

.navmenu ul li {
  border-bottom: 1px #fff solid;
}

.navmenu .menu-icon, .navbar-responesive .menu-icon {
  width: 30px;
  position: absolute;
  right: 40px;
}

.navbar-responesive .menu-icon {
  margin-top: -5px;
  transform: rotate(90deg);
}

.navmenu .menu-icon .cls-1, .navbar-responesive .menu-icon .cls-1 {
  fill: #fff;
}

.navmenu .menu-icon .cls-2, .navbar-responesive .menu-icon .cls-2 {
  fill: transparent;
}

.navmenu span:hover .menu-icon .cls-1, .navbar-responesive a:hover .menu-icon .cls-1 {
  fill: #3E3E3E;
}

.navmenu .sub-menu {
  padding-left: 50px !important;
  padding-right: 50px;
  padding-top: 208px !important;
  left: 450px;
  background: #ADADAD;
  height: 100%;
  width: fit-content !important;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: none !important;
}

.navmenu .sub-menu.active {
  transform: translateX(0);
  display: block !important;
}

.navmenu ul.sub-menu li {
  border-bottom: unset !important;
}

.navmenu ul.sub-menu li a:hover {
  color: #707070;
}

.navmenu .sub-menu a:hover .menu-icon .cls-1{
  fill: #707070 !important;
}

.navmenu .sub-menu .menu-icon {
  right: 35px;
}

.navmenu .subofsubmenu {
  left: 690px;
  padding-left: 50px !important;
  padding-right: 50px !important;
  width: fit-content;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: none !important;
}

.navmenu .subofsubmenu.active {
  transform: translateX(0);
  display: block !important;
}

.navmenu ul.subofsubmenu li {
  border-bottom: unset;
}

.navbar-responesive {
  display: none;
}

.nav-lang {
  padding-right: 15px;
}

@media (max-width: 1440px) {
  .mobile-nav-active .navmenu {
      margin-top: 80px;
  }
}

@media (max-width: 1024px) {

  .nav-item .nav-lang {
    padding-left: 15px;
  }

  .nav-item .nav-lang a{
    color: #fff;
    font-family: "Prompt", "Poppins", sans-serif;;
    font-weight: 400;
    font-size: 12px;
  }

  .nav-item .nav-lang a.active{
    font-weight: 600;
    text-decoration: underline;
  }

  .navmenu {
    order: 2;
    padding-left: 15px;
  }

  .mobile-nav-active .navmenu>ul {
    padding-left: 70px;
    width: 340px;
  }

  .navmenu .sub-menu {
    left: 355px;
  }

  .navmenu .subofsubmenu {
    left: 598px;
  }

}

@media (max-width: 834px) {
  .mobile-nav-active .navmenu>ul {
    padding-right: 30px;
    width: 320px;
  }

  .navmenu .sub-menu {
    left: 335px;
    padding-left: 30px !important;
  }

  .navmenu .subofsubmenu {
    left: 538px;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

}


@media (max-width: 600px) {
.navmenu {
  display: none;
}

.header .nav-top {
  padding: 15px 0;
}

/* ── Navbar หลัก ── */
.navbar-responesive {
  color: #fff;
  margin-top: 65px;
  display: block;
}

.navbar-responesive .social {
  display: flex;
}

.navbar-responesive .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-wrap: wrap;
  flex-direction: column;

}

.navbar-responesive .menu.active {
    display: flex;
    position: static;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    background: #707070;
    padding-bottom: 550px;
  }

.navbar-responesive .menu > li {
  position: relative;
}
.navbar-responesive a {
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  display: block;
  transition: 0.3s;
}
.navbar-responesive a:hover {
  color: #3E3E3E;
}

/* ── เมนูย่อย ── */
.navbar-responesive .submenu {
  display: none;
  list-style: none;
  background: #707070;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 10;
  position: static;
}
.navbar-responesive .submenu li a {
  padding: 12px 45px;
}
.dropdown.active > .submenu {
  display: block;
  background: #ADADAD;
  padding: 20px 0;
}

.navbar-responesive .submenu {
    position: static;
}
}

@media (max-width: 480px) {
  .mobile-nav-toggle, .mobile-nav-active .mobile-nav-toggle {
    right: 30px;
  }

  .mobile-nav-active .navmenu {
    margin-top: 65px;
  }

  .navbar-responesive {
    margin-top: 50px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #EEEEEE;
  font-size: 14px;
  position: relative;
}

.footer .footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.footer .footer-top {
  padding: 30px 0;
}

.footer .footer-top h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer .footer-top .social {

}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about h3 {
  color: #fff;
  font-size: 20px;
}

.footer .footer-about p {
  font-size: 12px;
}

.footer h4 {
  font-size: 12px;
  padding-bottom: 12px;
}

.footer h4 a{
  color: #fff;
  text-transform: capitalize;
}

.footer h4 a:hover {
  font-weight: 600 ;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact p a{
  color: #fff;
}

.footer .copyright {
  padding: 20px .75rem;
  background: #3E3E3E;
}

.footer .copyright a {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 300;
}

.footer .copyright .pr {
  padding-right: 40px;
}

.footer .copyright p {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 300;
}

.footer .copyright h4 {
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer .copyright h4 a{
  color: #fff;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer .footer-links .pl-social{
  padding-left: 50px;
}

.pl-footer-desktop {
  padding-left: 100px !important;
}

.footer .logo {
  width: 180px;
}

.footer .footer-top .icon-social {
  height: 22px;
}

.footer .footer-top a {
    font-size: 1rem;
    margin: 0 10px;
    color: #000;
}

.footer .footer-top .contact .icon-social {
  margin-right: 10px;
}

@media (max-width: 2240px) {
  .footer .footer-links .pl-social{
    padding-left: 55px;
  }
}

@media (max-width: 1368px) {
  .footer .footer-links .pl-social{
    padding-left: 40px;
  }

  .pl-footer-desktop {
    padding-left: 85px !important;
  }
}

@media (max-width: 1280px) {
  .footer .footer-top h2 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer .footer-top .icon-social {
    height: 18px;
  }

  .footer .footer-top a {
    font-size: .8rem;
  }

  .footer .copyright a, .footer .copyright p {
    font-size: .8rem;
  }

  .footer .copyright {
    padding: 15px .75rem;
  }
}

@media (max-width: 1024px) {
  .footer .footer-top .contact {
    display: grid;
  }

  .footer .footer-top .contact a {
    margin-bottom: 5px;
  }
}

@media (max-width: 992px) {
  .footer .copyright h4 {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 375px) {
  .footer .footer-logo {
    margin-bottom: 2rem;
  }

  .footer .footer-top .icon-social {
    height: 15px;
  }
}

@media (max-width: 360px) {
  .footer .copyright a, .footer .copyright p {
    font-size: .7rem;
  }

  .footer .footer-top a {
    margin: 0 5px;
  }
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.blogs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.blogs-pagination .page-btn, .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blogs-pagination .page-btn.white {
    background: #fff;
    border: 1px solid #ddd;
    color: #3E3E3E;
}

.blogs-pagination .page-btn.black {
    background: #3E3E3E;
    color: #fff;
}

.blogs-pagination .page-number {
    color: #555;
}

.blogs-pagination .page-number.active {
    color: green;
    font-weight: 600;
}

.blogs-pagination .page-btn.disabled,
.blogs-pagination .page-number.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #2E2E2E;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  display: none !important;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #000;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, #000, transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  background-color: #EEEEEE;
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.pt-nobanner {
  padding-top: 150px !important;
}

.content {
  padding: 100px 0;
}

.section h1, .section h2 {
  font-size: calc(2rem - 2px);
  margin-bottom: 2rem;
}

.section p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.section .text-small p {
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .section p {
    font-size: 1rem;
  }

  .section h1, .section h2 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 1280px) {
  .section p {
    font-size: .9rem;
  }

  .section h1, .section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

@media (max-width: 884px) {

}

@media (max-width: 600px) {
  .pt-nobanner {
    padding-top: 100px !important;
  }
  section, .section, .content {
    padding: 50px 0;
  }
}

@media (max-width: 448px) {
  section, .section, .content {
    padding: 50px 0;
  }

  .section p {
    font-size: .8rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

}

.hero img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.hero h1 {
  margin: 0;
  font-size: calc(2rem - 2px);
  color: #fff;
  width: 70%;
  line-height: 2;
}

.hero p {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 1rem;
  font-family: "Prompt", "Poppins", sans-serif;
  font-weight: 200;
}

.hero .mt-btn {
  margin-top: 3rem;
}

/* Custom pagination */
.custom-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.custom-pagination .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.custom-pagination .progress-bar {
  width: 60px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.custom-pagination .progress-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.5s ease;
}

@media (max-width: 1536px) {
  .hero p {
    font-size: 14px;
  }
}

@media (max-width: 1368px) {
  .hero img {
    height: 100% !important;
  }
}

@media (max-width: 1280px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 1rem;
  }

}

@media (max-width: 600px) {
  .hero {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 1rem;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .hero p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

.content1-bg {
  background: #909090;
}

.content2-bg {
  background: #5C5C5C;
}

.content3-bg {
  background: #383838;
}

.content-detail {
  padding: 5rem !important;
  height: 350px;
}

.content-detail .text-menu {
  height: 180px;
  overflow-y: auto;
}

.next-button {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.next-button svg {
  width: 40px;
}

.next-button .cls-1 {
  fill: #3e3e3e;
  transition: .5 ease-in-out;
}

.next-button .cls-2 {
  fill: #fff;
}

.next-button:hover .cls-1 {
  fill: #038d49;
}

.next-button:hover svg {
  border-radius: 50%;
  box-shadow: 0px 0px 20px #495057;
}

.product-category p {
  font-size: 1rem;
  margin-bottom: 5rem;
}

.product-category .card {
  border: unset;
  border-radius: 0;
  --bs-card-inner-border-radius: 0;
  min-width: 0;
  color: #fff;
  word-wrap: break-word;
  background-color: #038D49;
  background-clip: unset;
}

.product-category .card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-category .card-body {
  background: #038D49;
  text-align: center;
  padding: 2rem;
}

.product-category .card-body h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.product-category .card .card-text {
  font-size: 1rem;
}


.product-category .left-content {
  flex: 1;
  padding: 0 5rem;
}

.product-category .pagination-info {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-category .nav-buttons {
  display: flex;
  gap: 15px;
}

.product-category .nav-buttons button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  
}

.product-category .nav-buttons button .cls-1 {
  fill: #3e3e3e;
  transition: all 0.3s;
}

.product-category .nav-buttons button .cls-2 {
  fill: #fff;
  transition: all 0.3s;
}

.product-category .nav-buttons button:hover .cls-1 {
  fill: #fff;
}

.product-category .nav-buttons button:hover .cls-2 {
  fill: #038D49;
}

/* Swiper */
.product-category .swiper {
  flex: 2;
  width: 100%;
}

.product-category .swiper-slide {
  background: #2d9249;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-category .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-category .card-info {
  background: #2d9249;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.product-category .card-info h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-category .card-info p {
  font-size: 1rem;
  line-height: 1.4;
  color: #e6e6e6;
  margin-bottom: 0;
}

@media (max-width: 1440px) {
  .next-button {
    bottom: 30px;
    right: 30px;
  }

  .product-category p {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .product-category .card-info p {
    font-size: 0.875rem;
  }
}

@media (max-width: 1280px) {

  .content-detail {
    height: 280px;
    padding: 3rem !important;
  }

  .content-detail .text-menu {
    margin-right: 3rem;
  }

  .product-category .swiper-slide img {
    height: 200px;
  }

  .product-category p, .product-category .card-info p {
    font-size: 0.75rem;
  }

  .product-category .card-info h3 {
    font-size: 1.4rem;
  }

  .product-category .left-content {
    padding: 0 5rem;
  }
}

@media (max-width: 1280px) {
  .product-category .card-info h3 {
    font-size: 1.25rem;
  }
  .product-category .left-content {
    padding: 0 3rem;
  }


}

@media (max-width: 1024px) {
  .content-detail {
    height: 250px;
  }

  .hover-zoom img {
    height: 280px;
  }

  .product-category .swiper-slide img {
    height: 180px;
  }
}

@media (max-width: 834px) {
  .next-button {
    bottom: 10px;
    right: 10px;
  }

  .next-button svg {
    width: 35px;
  }
}

@media (max-width: 600px) {
  .content-detail {
    padding: 0 3rem !important;
    height: 280px;
  }

  .product-category .left-content {
    padding: 0 3rem 3rem 3rem;
  }

  .product-category p {
    margin-bottom: 1.5rem;
  }

  .content-detail .text-menu {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
  }

  .product-category .swiper-slide img {
    height: 150px;
  }

  .product-category .card-info h3 {
    font-size: 1rem;
  }
}

@media (max-width: 540px) {
  .content-detail {
    padding: 0 15px !important;
  }
  .content-detail .text-menu {
    margin-right: 15px;
  }

  .product-category .left-content {
    padding: 0 15px 3rem 15px;
  }
}

@media (max-width: 448px) {
  /* .content-detail {
    height: 250px;
  } */
}

@media (max-width: 432px) {
  .hover-zoom img {
    height: 250px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.vision-content {
  padding: 60px;
}

.vision-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.vision-content .pr-content {
  padding-right: 40px;
  height: 250px;
  overflow-y: auto;
}

.mission-content h2 {
  padding-left: 40px;
}

.mission-content .pl-content {
  padding-left: 40px;
  height: 250px;
  overflow-y: auto;
}

.mission-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.name-awards {
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}

.title-award {
  color: #fff;
  margin-bottom: 60px !important;
  text-align: center;
}

.title-customer {
  margin-bottom: 60px !important;
  text-align: center;
}

@media (max-width: 1024px) {
  .vision-content img {
    height: 250px;
    padding-left: 1rem;
  }
  .mission-content img {
    height: 250px;
    padding-right: 1rem;
  }
}

@media (max-width: 600px) {
  .vision-content .pr-content {
      padding-right: 0;
  }

  .mission-content {
    padding: 40px;
  }

  .vision-content img {
    padding-left: 0;
    height: 200px;
  }

  .mission-content img {
    height: 200px;
  }

  .mission-content .pl-content {
    padding-left: 0;
  }

  .mission-content h2 {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .vision-content {
      padding: 40px;

  }
}

/*--------------------------------------------------------------
# Projects & News
--------------------------------------------------------------*/

.navigator {
  padding: 30px;
  text-align: center
}

.navigator a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.line-blog {
  -webkit-line-clamp: 3;
}

.pr-blog {
  padding-right: 25px;
}

.pl-blog {
  padding-left: 25px;
}

.list-blogs .card {
  margin-bottom: 50px;
  border-radius: 0;
  border: 0.5px #707070 solid;
}

.list-blogs .card:hover {
  background: #3E3E3E;
}

.list-blogs.news .card:hover {
  background: #fff;
}

.list-blogs .card:hover .card-title, .list-blogs .card:hover .card-text {
  color: #fff;
}

.list-blogs.news .card:hover .card-title {
  color: #000;
}

.list-blogs .card-body {
  padding: 35px 50px;
}

.list-blogs.news .card-body {
  padding: 35px 50px 55px 50px;
}

.list-blogs .card-title {
  font-size: 23px;
}

.list-blogs.news .card-title {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 25px;
}

.list-blogs.news .card-date {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 25px;
}

.list-blogs .card-text {
  font-size: 1rem;
}

.list-blogs.news .card-text {
  color: #038D49;
}

.list-blogs.news .card:hover .card-text {
  color: #038D49;
}

.list-blogs .card-img, .list-blogs .card-img-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.blogs-detail .gallery {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.blogs-detail .main-image img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.blogs-detail .main-image img:hover {
  transform: scale(1.02);
}

.blogs-detail .thumbnails-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 6px;
}

.blogs-detail .thumbnails {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 8px;
  max-width: 100%;
}

.blogs-detail .thumbnails img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.blogs-detail .thumbnails img.active,
.blogs-detail .thumbnails img:hover {
  opacity: 1;
}

/* Popup Lightbox */
.blogs-detail .lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.blogs-detail .lightbox img {
  max-width: 100%;
  max-height: 100%;
}

.blogs-detail .lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.blogs-detail .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  font-weight: 200;
  color: white;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
}

.blogs-detail .lightbox-nav.prev { left: 0; }
.blogs-detail .lightbox-nav.next { right: 0; }


.blogs-detail .text h1, .blogs-detail .text h2 {
  font-size: 23px;
  color: #3E3E3E;
  margin-bottom: 30px;
}

.blogs-detail .text p {
  font-size: 1rem;
  color: #3E3E3E;
}

.relate-blogs h2 {
  font-size: 27px;
}

.relate-blogs .card-img, 
.relate-blogs .card-img-bottom, 
.relate-blogs .card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.relate-blogs .list-blogs .card-title {
  font-size: 27px;
  font-weight: 400;
}

.relate-blogs .list-blogs.news .card-title {
  font-size: 1rem;
  font-weight: 400;
}

.relate-blogs .line-blog {
    -webkit-line-clamp: 3;
}

.relate-blogs .list-blogs .card-body {
    padding: 30px;
}

.select-type a {
  text-transform: uppercase;
  background: #038D49;
  color: #fff;
  padding: 10px 60px;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.5s;
}

.select-type {
  padding: 50px 0;
}

.select-type a:hover {
  background: #3E3E3E;
}

.select-type a.active {
  background: #3E3E3E;
}

.news .line-blog {
    -webkit-line-clamp: 2;
}

.news-button {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 23px;
  bottom: 27px;
}

.news-button svg {
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.news-button .cls-1 {
  fill: #3e3e3e;
  transition: ease 0.5s;
}

.news-button .cls-2 {
  fill: #fff;
  transition: ease 0.5s;
}

.news .card:hover .cls-1 {
  fill: #fff;
}

.news .card:hover .cls-2 {
  fill: #3e3e3e;
}

.relate-blogs .list-blogs.news .card-text {
    width: 85%;
}

.link-video {
  margin-top: 100px;
}

.link-video a {
  padding: 15px 25px;
  background: #038D49;
  font-size: 20px;
  font-weight: 400;
  transition: ease 0.5s;
  color: #fff;
}

.link-video a:hover {
  background: #3E3E3E;
}



@media (max-width: 1368px) {
  .list-blogs .card-img, .list-blogs .card-img-top {
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .link-video a {
    font-size: 15px;
  }

  .list-blogs .card-body {
    padding: 25px 35px;
  }

  .list-blogs.news .card-date {
    margin-bottom: 15px;
  }

  .list-blogs.news .card-body {
    padding: 25px 35px 55px 35px;
  }
}

@media (max-width: 884px) {
  .list-blogs .card-body {
    padding: 25px;
  }

  .pr-blog {
    padding-right: 15px;
  }

  .pl-blog {
    padding-left: 15px;
  }

  .list-blogs .card {
    margin-bottom: 30px;
  }

  .select-type {
    padding: 30px 0;
  }

  .select-type a {
    padding: 10px 30px;
    margin-right: 15px;
    font-size: 18px;
  }

  .list-blogs.news .card-body {
    padding: 30px 30px 80px 30px;
  }

  .content-detail .text-menu {
    margin-right: 0;
  }

  .list-blogs .card-img, .list-blogs .card-img-top {
    height: 190px;
  }
}

@media (max-width: 600px) {
  .link-video a {
      padding: 10px 25px;
      font-size: 14px;
  }

  .pr-blog {
    padding-right: 12px;
  }

  .pl-blog {
    padding-left: 12px;
  }

}

@media (max-width: 480px) {
  .select-type a {
    font-size: 14px;
  }
}

@media (max-width: 448px) {
  .blogs-detail .thumbnails img {
    height: 100px;
  }

  .select-type {
    padding: 20px 0;
  }
}

@media (max-width: 432px) {
  .list-blogs .card-title {
    font-size: 18px;
  }

  .list-blogs .card-text {
    font-size: .8rem;
  }
}

@media (max-width: 412px) {
  .select-type a {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .select-type a {
    padding: 10px 20px;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us .text h1 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}

.contact-us .text .navigator {
    padding: 0px;
    text-align: center;
    margin-bottom: 55px;
}

.contact-us .contact-info {
  color: #3E3E3E;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-right: 150px;
}

.contact-us .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.contact-us .info-item img {
  width: 30px;
  margin-right: 25px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-us .info-item p {
  margin: 0;
  font-size: 18px;
}

.contact-us .info-item a {
  color: #3E3E3E;
  text-decoration: none;
  font-size: 18px;
}

.contact-us h2 {
  margin-bottom: 20px;
}

.office-hours p {
  font-size: 18px;
  color: #3E3E3E;
  margin-bottom: 37px;
}

.link-map a {
  background: #038D49;
  padding: 15px 60px;
  font-size: 20px;
  color: #fff;
  transition: ease 0.5s;
}

.link-map a:hover {
  background: #3E3E3E;
}

.gg-map iframe {
  width: 100%;
}

@media (max-width: 1368px) {
  .contact-us .contact-info {
    padding-right: 100px;
  } 
}

@media (max-width: 1024px) {
  .contact-us .contact-info {
    padding-right: 40px;
  } 
}

@media (max-width: 884px) {
  .contact-us .info-item img {
    width: 25px;
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .contact-us .info-item p {
    font-size: 16px;
  }

  .contact-us .info-item a {
    font-size: 16px;
  }

  .office-hours p {
    font-size: 16px;
  }

  .link-map a {
    padding: 10px 30px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Consult & Service
--------------------------------------------------------------*/
.list-consult .card {
  background: linear-gradient(to bottom, #ffffff 23%, #707070 10%);
  border-radius: 0;
  border: 0;
  padding-top: 55px;
  margin: 25px 25px 0 25px;
  height: 100%;
  text-align: center;
}

.list-consult .card .card-img-top {
  width: 200px;
  margin: auto;
}

.list-consult .card .card-title {
  font-size: 23px;
  color: #fff;
  margin-bottom: 30px;
}

.list-consult .card .card-body {
  padding: 30px;
} 

.list-consult .card .card-text {
  font-size: 1rem;
  color: #fff;
} 

@media (max-width: 600px) {
  .list-consult .card .card-img-top {
    width: 160px;
  }
}

@media (max-width: 432px) {
  .list-consult .card .card-text {
    font-size: .8rem;
  }

  .list-consult .card .card-title {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Request PO
--------------------------------------------------------------*/
.input-form h2,.item-product h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.input-form,.item-product .item {
  margin-bottom: 20px;
}

.input-form input,.item-product .item input {
  height: 50px;
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ADADAD;
}

.input-form textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ADADAD;
}

.request-po .form {
  padding-right: 120px;
}

.request-po .contact .google-map iframe {
  width: 100%;
  height: 450px;
}

.request-po .contact .contact-detail {
  background: #3E3E3E;
  padding: 40px;
  margin-top: 50px;
}

.button-plus {
  margin-bottom: 20px;
}

.button-plus svg {
  width: 25px;
}

.button-plus svg path {
  fill: #038d49;
}

.button-plus button {
  width: 50px;
  height: 50px;
  border: unset;
  background: #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: ease .5s;
}

.button-plus:hover button {
  background: #3E3E3E;
}

.button-plus:hover svg path {
  fill: #fff;
}

.clear-form {
  margin-bottom: 30px;
}

.clear-form a {
  font-size: 1rem;
  font-weight: 500;
  color: #FF0000;
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  font-size: 20px;
  color: #fff;
  border: unset;
  padding: 15px 60px;
  background: #038D49;
  transition: ease .5s;
}

.form-submit:hover button {
  background: #3E3E3E;
}

.request-po .contact .contact-detail h2 {
  font-size: calc(1.75rem - 2px);
  font-weight: 500;
  color: #fff;
}

.request-po .contact .contact-detail p, .request-po .contact .contact-detail a {
  font-size: 1rem;
  color: #fff;
  margin: auto 0;
}

.request-po .contact .contact-detail .info-item {
  display: flex;
  margin-bottom: 15px;
}

.request-po .contact .contact-detail .info-item img {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

.request-po .contact .contact-detail .office-hours {
  margin-bottom: 55px;
}

.request-po .contact .contact-detail .link-map {
  margin-bottom: 15px;
}

.bg-request-po {
  background: url('../image/po/logo_element.jpg'), #fff;
  background-repeat: no-repeat;
  background-size: 450px, 100%;
  background-position: bottom -5% right -8%;
}

@media (max-width: 480px) {
  .input-form h2, .item-product h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.products {
  position: relative;
  min-height: 1000px;
}

.products .sidebar {
  width: 420px;
  background: #fff;
  position: absolute;
  top: 100px;
}

.products .menu-products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products .menu-products > li {
  border-bottom: 2px solid #fff;
}

.products .menu-products > li > a {
  display: flex;
  align-items: center;
  background: #177f44;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s;
}

.products .menu-products > li.active > a {
  background: #3E3E3E; /* เมนูที่ถูกเลือก */
}

.products .menu-products > li > a:hover {
  background: #3E3E3E;
}

.products .submenu {
  display: none;
  background: #fff;
}

.products .has-submenu.active .submenu {
  display: block;
  list-style: none;
  padding: 10px;
}

.products .submenu li a {
  display: block;
  padding: 5px 10px 5px 150px;
  font-size: 1rem;
  font-weight: 500;
  color: #3E3E3E;
  text-decoration: none;
  transition: 0.2s;
}

.products .submenu li a:hover {
  background: #f2f2f2;
}

.products .submenu li a.active {
  color: #038D49;
}
.products .menu-products .icon-menu-products {
  width: 40px;
  margin-left: 50px;
  margin-right: 30px;
}

.products .menu-products .arrow {
  margin-left: auto;
  margin-right: 30px;
}

.products .menu-products .icon-dropdown {
  width: 20px;
}

.products .products-item .card {
  border-radius: 0;
  margin-bottom: 24px;
}

.products .products-item .card .card-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #3E3E3E;
  padding: 10px 20px;
  margin-bottom: 0;
}

.products .products-item .card .card-img-top {
  padding: 20px 20px 0 20px;
}

.products .products-item .card .card-body {
  padding: 0;
  background: #fff;
  transition: ease .5s;
}

.products .products-item .card:hover .card-body {
  background: #038D49;
}

.products .products-item .card:hover .card-body .card-title {
  color: #fff;
}

.products .products-item .card .tag-new {
  background: #FF0000;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}

.products .products-item .card .tag-best {
  background: #038D49;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}

.products .filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  flex-wrap: wrap;
}

/* Filter menu */
.products .filter-bar .filter-options {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.products .filter-bar .filter-options a {
  text-decoration: none;
  color: #3E3E3E;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.products .filter-bar .filter-options a:hover,
.products .filter-bar .filter-options a.active {
  color: #038D49;
}

.products .filter-bar .arrow {
  margin-left: 3px;
}

/* Dropdown */
.products .filter-bar .dropdown {
  position: relative;
  display: inline-block;
}

.products .filter-bar .dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 5px 10px;
  min-width: max-content;
  z-index: 10;
}

.products .filter-bar .dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 20px;
  color: #3E3E3E;
  text-decoration: none;
  transition: background 0.2s;
}

.products .filter-bar .dropdown-menu li a:hover {
  color: #038D49;
}

/* แสดง dropdown เมื่อ hover หรือ active */
.products .filter-bar .dropdown:hover .dropdown-menu,
.products .filter-bar .dropdown.active .dropdown-menu {
  display: block;
}

/* Search bar */
.products .filter-bar .search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products .filter-bar .search-box {
  display: flex;
  align-items: center;
  border: 1px solid #aaa;
  border-radius: 999px;
  padding: 5px 20px;
  background: #fff;
  width: 220px;
  height: 40px;
  transition: all 0.2s;
}

.products .filter-bar .search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: #3E3E3E;
}

.products .filter-bar .search-box .icon {
  width: 20px;
  margin-top: -3px;
}

.products .filter-bar .search-btn {
  background: #3E3E3E;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.products .filter-bar .search-btn:hover {
  background: #000;
}

.products .filter-bar .new {
  padding: 5px 20px 5px 0;
  border-right: 1px solid #242628;
}

.products .filter-bar .best {
  padding: 5px 20px;
  border-right: 1px solid #242628;
}

.products .filter-bar .dropdown {
  padding: 10px 20px;
}

.products .filter-bar .dropdown .dropdown-toggle::after {
  display: none;
}

.products .filter-bar .dropdown .icon-dropdown {
  width: 25px;
}

.blogs-detail .text {
  margin-left: 30px;
}

.blogs-detail .detail ul {
  padding-left: 20px;
}

.blogs-detail .detail ul li {
  margin-bottom: 20px;
}

.blogs-detail .detail ul li::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #2e7d32;
    border-radius: 50%;
    position: relative;
    left: -20px;
    top: 0px;
}

.botton-link {
  display: flex;
}

.botton-link .link-video {
  margin-top: 20px;
  margin-right: 25px;
}

.relate-blogs .products-item .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relate-blogs .list-blogs .products-item .card-body {
  padding: 10px 20px;
  transition: ease .5s;
}

.relate-blogs .list-blogs .products-item .card:hover .card-body {
  background: #038D49;
  color: #fff;
}

.relate-blogs .list-blogs .products-item .card:hover .card-body .card-title {
  color: #fff;
}

.relate-blogs .list-blogs .products-item .card-body .card-title {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

.relate-blogs .products-item .card .tag-new {
  background: #FF0000;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}

.relate-blogs .products-item .card .tag-best {
  background: #038D49;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
}

.list-blogs .products-item .card {
  margin-bottom: 0;
}

.technology .thumbnails img {
  height: 250px;
  opacity: 1;
}

.products .sidebar-responsive {
  display: none;
}

@media (max-width: 1440px) {
  .products .filter-bar .filter-options a {
    font-size: 1rem;
  }
}

@media (max-width: 1368px) {
  .products .menu-products .icon-menu-products {
    width: 35px;
    margin-left: 20px;
  }

  .products .menu-products .icon-dropdown {
    width: 15px;
  }

  .products .menu-products > li > a {
    font-size: 18px;
  }

  .products .sidebar {
    width: 350px;
    top: 95px;
  }

  .products .submenu li a {
    padding: 10px 10px 10px 70px;
    font-size: 1rem;
  }

  .relate-blogs .list-blogs .products-item .card-body .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 1280px) {
  .products .sidebar {
    width: 320px;
  }

  .products .menu-products .icon-menu-products {
    margin-left: 0px;
    margin-right: 10px;
  }

  .products .menu-products > li > a {
    font-size: 16px;
  }

}

@media (max-width: 1024px) {
  .products .sidebar-responsive {
    width: 80px;
    display: block;
    background: #fff;
    position: absolute;
    top: 95px;
  }

  .products .sidebar-responsive.unactive {
    display: none;
  }

  .products .sidebar{
    display: none;
    transition: ease .5s;
  }

  .products .sidebar.active{
    display: block;
  }

  .pl-product-responsive {
    padding-left: 80px;
  }

  .request-po .form {
    padding-right: 12px;
  }
}

@media (max-width: 884px) {
  .pl-product-responsive {
    padding-left: 30px;
  }

  .blogs-detail .text {
      margin-left: 10px;
  }
}

@media (max-width: 820px) {
  .pl-product-responsive {
    padding-left: 50px;
  }
}

@media (max-width: 768px) {
  .pl-product-responsive {
    padding-left: 80px;
  }

}

@media (max-width: 600px) {
  .relate-blogs .list-blogs .products-item .card-body .card-title {
    font-size: 1.2rem;
  }

  .blogs-detail .text {
    margin-left: 0;
  }

  .products .products-item .card .card-title {
    font-size: 1rem;
  }
}

@media (max-width: 540px) {
    .products .menu-products .icon-menu-products {
        width: 35px;
        margin-left: 0;
        margin-right: 0;
    }

    .products .sidebar.active .menu-products .icon-menu-products {
        margin-right: 15px;
    }

    .products .sidebar-responsive {
      width: 65px;
    }

}

@media (max-width: 480px) {
  .navigator {
    padding: 20px;
  }

  .navigator a {
    font-size: .8rem;
  }

  .products .filter-bar .filter-options a {
    font-size: .8rem;
  }

  .products .filter-bar .search-box input {
    font-size: .8rem;
  }

  .products .filter-bar .dropdown-menu li a {
    font-size: .8rem;
  }

  .technology .thumbnails img {
    height: 150px;
  }

}

@media (max-width: 448px) {
  .botton-link {
      display: block;
  }
  .navigator {
    padding: 20px;
  }
}

@media (max-width: 400px) {
  .products .filter-bar .search-box {
    width: 200px;
  }
}

@media (max-width: 385px) {
  .products .filter-bar .search-box {
    width: 185px;
  }
}


/*--------------------------------------------------------------
# Important Parts
--------------------------------------------------------------*/

.important-parts .gallery-container {
  display: flex;
  gap: 25px;
  align-items: center;
}

.important-parts .swiper-thumbs {
  width: 130px;
  height: 670px;
}

.important-parts .swiper-thumbs .swiper-slide {
  cursor: pointer;
}

.important-parts .swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.important-parts .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #707070;
  border-radius: 0;
  height: 153px !important;
  margin-bottom: 15px !important;
}

.important-parts .swiper-thumbs .swiper-slide {
  opacity: 1;
  border: 1px solid #707070;
  border-radius: 0;
  height: 153px !important;
  margin-bottom: 15px !important;
}

.important-parts .swiper-main {
  width: 100%;
  height: 100%;
}

.important-parts .swiper-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

/* Popup Lightbox */
.important-parts #popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.important-parts #popup img {
  max-width: 90%;
  max-height: 90%;
}

.important-parts #popup.active {
  display: flex;
}

/* ปุ่มเลื่อน */
.important-parts .swiper-button-next,
.important-parts .swiper-button-prev {
  font-size: 35px;
  color: #3E3E3E;
  width: 10px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.important-parts .swiper-button-next:hover,
.important-parts .swiper-button-prev:hover {
  color: #000;
}

@media (max-width: 448px) {
  .important-parts .swiper-thumbs .swiper-slide img {
    height: 100px;
  }

  .important-parts .swiper-thumbs .swiper-slide {
    height: 103px !important;
  }

  .important-parts .gallery-container {
    gap: 10px;
  }

  .important-parts .swiper-thumbs {
    height: 580px;
  }

  .blogs-detail .text p, .blogs-detail .detail ul li {
    font-size: .8rem;
  }

  .blogs-detail .detail ul li {
    margin-bottom: 10px;
  }

  .link-video a {
    font-size: 12px;
  }
}

.tel-messenger {
	position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 9;
}

.tel-messenger img{
	width: 50px;
	filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.4));
}

.line-messenger {
	position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9;
}

.line-messenger img{
	width: 50px;
	filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.4));
}

.fb-messenger {
	position: fixed;
    bottom: 8.75rem;
    right: 1.25rem;
    z-index: 9;
}

.fb-messenger img{
	width: 50px;
	filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.4));
}

.email-messenger {
	position: fixed;
    bottom: 12.5rem;
    right: 1.25rem;
    z-index: 9;
}

.email-messenger img{
	width: 50px;
	filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.4));
}