div, section, html, body, header, head, main, footer, p, ul, li, span, strong, a, img, address, article, figcaption, aside {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

ul, ol, li {
  list-style: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Poppins", sans-serif;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.bai-jamjuree-extralight {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.bai-jamjuree-light {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.bai-jamjuree-regular {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bai-jamjuree-medium {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.bai-jamjuree-semibold {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.bai-jamjuree-bold {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bai-jamjuree-extralight-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.bai-jamjuree-light-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.bai-jamjuree-regular-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.bai-jamjuree-medium-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.bai-jamjuree-semibold-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.bai-jamjuree-bold-italic {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.header-menu {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 666;
}

@media screen and (max-width: 640px) {
  .header-menu {
    position: static;
    background: #000;
  }
}

.header-menu .navbar-toggler {
  background: #00AEEF;
}

.custom-navbar {
  justify-content: space-evenly;
  display: flex !important;
}

.custome-navigation {
  justify-content: space-evenly;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
}

.logo {
  width: 200px;
}

.process-sec {
  position: relative;
  top: -30px;
  z-index: 33;
}

.thumbnail-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.thumbnail {
  cursor: pointer;
  transition: 0.3s;
}

.thumbnail:hover {
  border-color: #000;
}

.thumbnail img {
  width: 100%;
  display: block;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.short-about {
  padding: 30px 0;
}

.company-profile {
  position: relative;
}

.company-profile:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: url(../images/bg-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
}

.company-profile h1 {
  font-size: 34px;
  color: #282B69;
  font-family: "Bai Jamjuree", sans-serif;
  margin-top: 25px;
}

.company-profile strong {
  color: #00AEEF;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.company-profile strong:after {
  content: "";
  width: 100px;
  height: 1px;
  background: #282B69;
  position: absolute;
  top: 13px;
  left: 105%;
}

.categories-sec {
  padding: 40px 0;
  background: #F4F4F4;
}

.accordion {
  width: 100%;
  max-width: 1680px;
  height: 800px;
  overflow: hidden;
  margin: 50px auto;
}

.accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}

.accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 16.666%;
  height: 800px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
}

.accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}

.accordion ul li div a {
  display: block;
  height: 500px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  font-family: Open Sans, sans-serif;
  transition: all 200ms ease;
}

.accordion ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.accordion ul li div a h2 {
  font-family: "Poppins", sans-serif;
  text-overflow: clip;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 2px;
  top: 80%;
  color: #00AEEF;
  font-weight: bold;
  text-align: left;
}

.accordion ul li div a p {
  top: 160px;
  font-size: 13.5px;
}

.accordion ul li:nth-child(1) {
  background-image: url("../images/category-1.png");
}

.accordion ul li:nth-child(2) {
  background-image: url("../images/category-2.png");
}

.accordion ul li:nth-child(3) {
  background-image: url("../images/category-3.png");
}

.accordion ul li:nth-child(4) {
  background-image: url("../images/category-4.png");
}

.accordion ul:hover li, .accordion ul:focus-within li {
  width: 8%;
}

.accordion ul li:focus {
  outline: none;
}

.accordion ul:hover li:hover,
.accordion ul li:focus, .accordion ul:focus-within li:focus {
  width: 60%;
}

.accordion ul:hover li:hover a *,
.accordion ul li:focus a *, .accordion ul:focus-within li:focus a * {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.accordion ul:hover li {
  width: 8% !important;
}

.accordion ul:hover li a * {
  opacity: 0 !important;
}

.accordion ul:hover li:hover {
  width: 60% !important;
}

.accordion ul:hover li:hover a * {
  opacity: 1 !important;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.heading-cat {
  color: #282B69;
  font-size: 24px;
  text-align: center;
}

.process-section .process-flow img {
  max-height: 550px;
}

.manufacturing-process {
  /* The image used */
  background-image: url("../images/manufaturing-prcess.jpg");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.brand-history {
  background: #282B69 url(../images/bg-logo.png) no-repeat center center;
  background-size: contain;
  border-radius: 15px;
  padding: 50px 0;
}

.timeline-contents {
  text-align: center;
  padding: 40px 0;
}

.timeline-contents strong {
  color: #fff;
  font-size: 18px;
  display: block;
  font-weight: 400;
}

.timeline-contents article {
  padding: 20px 0;
  width: 50%;
  margin: 10px auto;
}

@media screen and (max-width: 600px) {
  .timeline-contents article {
    width: 100%;
  }
}

.timeline-contents article h4 {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  font-family: "Bai Jamjuree", sans-serif;
  font-style: italic;
}

.timeline-contents article p {
  color: #fff;
  font-weight: 300;
  margin: 20px auto;
  font-size: 16px;
  width: 90%;
}

.timeline-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.scroll-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  opacity: 0.6;
  z-index: 5;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.scroll-btn:hover {
  opacity: 1;
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

.timeline-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 60px 20px 20px;
  position: relative;
}

.timeline-scroll::-webkit-scrollbar {
  display: none;
}

.timeline-line {
  position: absolute;
  top: 63px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #fff;
  z-index: 1;
}

.year-item {
  position: relative;
  flex-shrink: 0;
  text-align: center;
  width: 300px;
  margin: 0 20px;
  z-index: 2;
}

.dot {
  width: 16px;
  height: 16px;
  background: #007BFF;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #007BFF;
  transition: all 0.3s ease;
}

.year-item.active .dot {
  background: #fff;
  box-shadow: 0 0 0 2px #007BFF, 0 0 5px #007BFF;
}

.year-item span {
  font-weight: bold;
  display: block;
  color: #fff;
  top: -20px;
  margin-top: -44px;
  font-size: 26px;
}

.year-item.active span {
  color: #007BFF;
}

.year-content {
  margin-top: 10px;
  background: transparent;
  padding: 15px;
  border-radius: 8px;
  animation: fadeIn 0.4s ease;
  color: #fff;
  text-align: left;
}

.year-content h2 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Bai Jamjuree", sans-serif;
}

.year-content p {
  font-size: 15px;
  font-family: "Bai Jamjuree", sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .year-item {
    width: 200px;
    margin: 0 10px;
  }
  .year-content {
    font-size: 14px;
  }
}

.product-wraper .pro-info {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.product-wraper .pro-info h2 {
  font-family: "Bai Jamjuree", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  width: 65%;
}

.product-wraper .pro-info p {
  color: #00AEEF;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0px;
}

.brands-section h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Bai Jamjuree", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  color: #282B69;
}

.brands-section p {
  color: #686868;
  text-align: center;
}

.video-documentory {
  padding: 40px 0;
  background: url(../images/bg-slice.png) repeat-x;
}

.video-documentory h2 {
  text-transform: uppercase;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: bolder;
  text-align: center;
  font-size: 24px;
  font-style: italic;
}

.marquee-box {
  border-radius: 20px;
  padding: 40px 30px;
  background: var(--themeht-white-color);
  box-shadow: 0 12px 34px 0 rgba(14, 17, 44, 0.06);
  margin: 20px 30px 40px;
  text-align: center;
}

.marquee-swiper {
  position: relative;
  overflow: hidden;
}

.marquee-swiper h5 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-family: "Bai Jamjuree", sans-serif;
  margin: 30px 0;
  text-transform: uppercase;
}

footer {
  background: #282B69 url(../images/bg-logo.png) no-repeat center center;
  background-size: contain;
  padding: 30px 0 10px 0;
}

.footer-column .footer-logo {
  margin-bottom: 60px;
}

.footer-column .news-letter {
  margin-top: 30px;
  color: #fff;
}

.footer-column .news-letter h5 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: "Bai Jamjuree", sans-serif;
}

.footer-column .news-letter p {
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}

.footer-column .news-letter .news-field {
  border: 1px solid #d9d9d9;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.footer-column .news-letter .news-field .email {
  height: 40px;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  width: 80%;
  color: #fff;
}

.footer-column .news-letter .news-field .email:focus {
  box-shadow: none;
  outline: none;
}

.footer-column .news-letter .news-field .email::placeholder {
  color: #fff;
  padding: 0 4px;
}

.footer-column .news-letter .news-field .btn-subscribe {
  background: #00AEEF;
  color: #fff;
  font-size: 15px;
  height: 40px;
  padding: 0 20px;
  border: none;
  box-shadow: none;
}

.footer-column .news-letter .news-field .btn-subscribe:hover {
  background: #000;
}

.social-icons {
  margin-top: 20px;
}

.social-icons ul {
  list-style: none;
  list-style-type: none;
  display: flex;
  justify-content: start;
}

.social-icons ul li {
  margin-right: 10px;
  width: 40px;
  height: 40px;
}

.social-icons ul li a {
  color: #fff;
  background: #00AEEF;
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 24px;
}

.social-icons ul li a:hover {
  background: #000;
}

.footer-col {
  margin-top: 60px;
}

.footer-col h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  font-family: "Bai Jamjuree", sans-serif;
}

.footer-col li {
  list-style-type: disc;
  color: #fff;
  list-style-position: inside;
  line-height: 35px;
}

.footer-col li a {
  color: #fff;
}

.footer-col li a:hover {
  color: #00AEEF;
}

.copy-right {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding: 10px 0 0;
  text-align: center;
}

.copy-right p {
  color: #fff;
  font-size: 15px;
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00AEEF;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: white;
}

.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.simple-dropdown li a:hover {
  color: #00AEEF !important;
}

.customis-dropdown {
  width: 300px;
  background: #ddd;
}

.customis-dropdown li .nav-link {
  color: #000;
}

.inner-header .header-menu {
  position: relative !important;
  background: #F6F6F6;
}

.inner-header .header-menu .nav-link {
  color: #282B69;
  font-weight: bold;
}

.search-field {
  background: #fff;
}

.search-field .searchfield {
  border: none;
  box-shadow: none;
  background: transparent;
  height: 40px;
}

.search-field .searchfield:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.search-field .searchbtn {
  background: none;
  border: none;
}

.search-field .searchbtn img {
  width: 24px;
}

.inner-header {
  border-bottom: 1px solid #333333;
}

.page-title {
  background: #F6F6F6;
  padding: 15px 0;
}

.page-title h4 {
  font-size: 24px;
  font-weight: bolder;
  text-transform: uppercase;
  font-family: "Bai Jamjuree", sans-serif;
  color: #282B69;
}

.product-content-container {
  background: #F6F6F6;
  padding: 30px 15px;
}

.product-content-container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.page-link {
  color: #00AEEF;
}

.product-wraper {
  margin: 15px 0;
}

.product-wraper .cat-info {
  text-align: center;
  margin-top: 10px;
}

.product-wraper .cat-info h2 {
  font-size: 16px;
  color: #000;
}

.product-wraper .cat-info strong {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}

.product-wraper .cat-info strong span {
  color: #00AEEF;
}

.downdown-heading a {
  color: #00AEEF;
  font-size: 18px;
}

.cat-style {
  color: #000 !important;
  text-transform: uppercase;
  text-decoration: none;
  background: #ffffff;
  padding: 20px;
  border: 4px solid #00AEEF !important;
  display: block;
  transition: all 0.4s ease 0s;
}

.subcat-wraper a {
  text-decoration: none;
}

.subcat-wraper a:hover {
  text-decoration: none;
}

.cat-style:hover {
  color: #ffffff !important;
  background: #00AEEF;
  border-color: #00AEEF !important;
  transition: all 0.4s ease 0s;
}

.sticky-main-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sticky-sec {
  -webkit-position: sticky !important;
  position: sticky !important;
  top: 1rem;
  padding-top: 70px;
}

.color-views {
  margin: 15px 0;
}

.color-views ul {
  display: flex;
  justify-content: start;
}

.color-views ul li {
  margin: 5px;
  margin-left: 0px;
}

.detail-heading {
  font-size: 30px;
  font-family: "Bai Jamjuree", sans-serif;
  color: #282B69;
  text-transform: uppercase;
  font-weight: 900;
}

.detail-pro-description span {
  color: #282B69;
  font-size: 16px;
}

.description ul li {
  list-style-type: disc;
  font-size: 16px;
  color: #282B69;
  line-height: 35px;
  list-style-position: inside;
}

.technology-icons {
  margin-top: 15px;
}

.technology-icons ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.technology-icons ul li img {
  width: 60px;
}

.qty-btn {
  text-align: center;
  color: #000;
}

.qty-btn span {
  font-size: 14px;
  color: #2f2f2f;
}

.qty-btn .qty-field {
  width: 40%;
  height: 40px;
  border: 1px solid #000;
  text-align: center;
  color: #000;
}

.qty-btn .less, .qty-btn .more {
  height: 40px;
  width: 15%;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 200;
  font-size: 11px;
  cursor: pointer;
}

.qty-btn .less {
  border-right: none;
}

.qty-btn .more {
  border-left: none;
}

.qty-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-right: 10px;
}

.cart-btn {
  margin-top: 15px;
  padding: 10px 30px;
  background: #00AEEF;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: #282B69;
  width: 70%;
  text-align: center;
  border-radius: 0px;
  height: 40px;
  padding: 0px;
}

.cart-btn:hover {
  background: #000;
}

.cart-btn:hover {
  background: #00AEEF;
}

.other-views ul {
  display: flex;
  justify-content: start;
}

.other-views ul li {
  width: 80px;
  margin: 5px 5px 5px 0;
}

.large-feature-pro {
  padding: 30px 0;
}

.large-feature-pro h3 {
  color: #282B69;
  font-weight: 600;
  font-family: "Bai Jamjuree", sans-serif;
  margin: 10px 0;
  text-transform: uppercase;
  text-align: center;
}

.large-feature-pro p {
  text-align: center;
  color: #000;
}

.large-feature-pro p span {
  font-weight: 600;
}

.department-main-wrapper {
  padding: 30px 0;
}

.department-main-wrapper .department {
  padding: 25px 0;
  text-align: center;
}

.department-main-wrapper .department h3 {
  text-align: center;
  font-size: 40px;
  color: #00AEEF;
}

.department-main-wrapper .department p {
  color: #000;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

.process-main-wrapper .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 25px;
  outline: 1px solid #00AEEF;
  margin: 5px 15px;
  color: #00AEEF;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #00AEEF;
  color: #fff;
}

.nav-pills {
  margin-top: 50px;
  justify-content: center;
}

.pixelstrap li a {
  color: #fff;
}

.pixelstrap .link-section ul li a {
  color: #000;
}

.nav-link img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(32%) saturate(4943%) hue-rotate(160deg) brightness(98%) contrast(84%);
}

.feature-products {
  padding: 20px 0;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: bold;
  text-align: center;
}

.feature-products h3 {
  color: #00AEEF;
}
