/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 8, 8, 8;
  --color-default: 34, 34, 34;
  --color-gray-2: 132, 142, 145;
  --color-gray: 92, 97, 102;
  --color-blue: 39, 53, 120;
  --color-red: 229, 28, 37;
  --color-green: 141, 198, 64;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #ebebeb;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #ebebeb;
}

hr.dashed-blue {
  border-top: 1px dashed #495382;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  color: rgb(var(--color-blue));
  text-decoration: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ========== Typography ========== */

h1,
h2,
h3,
h4,
h5,
.poppins {
  font-family: "Poppins";
}

h1 {
  font-size: 68px;
  line-height: 88px;
}

h2 {
  font-size: 53px;
  line-height: 72px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 38px;
  line-height: 43px;
}

h5 {
  font-size: 24px;
  line-height: 32px;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 22px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 28px;
}

.text-xl {
  font-size: 24px;
  line-height: 33px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

.sdi {
  color: #222222;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-default {
  color: rgba(var(--color-default));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-gray {
  color: rgb(var(--color-gray));
}

.color-gray-2 {
  color: rgb(var(--color-gray-2));
}

.color-blue {
  color: rgb(var(--color-blue));
}

.color-red {
  color: rgb(var(--color-red));
}

.color-green {
  color: rgb(var(--color-green));
}

.bg-red {
  background-color: rgb(var(--color-red)) !important;
}

.bg-green {
  background-color: rgb(var(--color-green)) !important;
}

.bg-blue {
  background-color: rgb(var(--color-blue)) !important;
}

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

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #edeeed;
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #ffffff;
  border: 1px solid #e9e7ec;
}

.inquiry-form label {
  font-size: 14px;
  color: rgb(var(--color-gray));
}

.inquiry-form label.required::after {
  font-size: 14px;
  content: " *";
  color: rgb(var(--color-red));
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  line-height: 22px;
  padding: 10px 25px;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
  border: 0;
}

.btn-outline-light:hover {
  color: rgb(var(--color-default));
  background-color: rgb(var(--color-white));
}

.btn-outline-light:focus {
  color: rgb(var(--color-default));
  background-color: rgb(var(--color-white));
}

.btn-primary {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
  border-radius: 100px;
  border: 0;
}

.btn-primary:hover {
  background: linear-gradient(95.09deg, #425acb 4.32%, #212d65 100.42%);
  color: rgb(var(--color-white));
  box-shadow: 0px 7px 14px rgba(59, 80, 180, 0.4);
}

.btn-outline {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 100px;
  font-weight: 500;
  color: rgb(var(--color-blue));
}

.btn-outline:hover {
  color: rgb(var(--color-blue));
  border: 1px solid #212d65;
  box-shadow: 0px 4px 14px rgba(61, 83, 186, 0.2);
}

.prod-info {
  padding: 40px 0;
}

#pills-info.nav-pills .nav-link.active,
#pills-info.nav-pills .show>.nav-link {
  color: rgb(var(--color-blue));
  background-color: transparent;
  border-radius: 0;
  font-weight: 600;
  border-bottom: 2px solid rgb(var(--color-blue));
}

#pills-info.nav-pills .nav-link {
  border-radius: 0;
  color: rgb(var(--color-gray));
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.spec td {
  border: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  color: rgb(var(--color-gray));
}

.list-apps {
  padding-left: 17px;
}

.list-apps li {
  font-size: 14px;
  color: rgb(var(--color-gray-2));
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: top 0.3s ease, opacity 0.3s ease;
  padding: 5px 0 25px;
}

.nav-hide {
  top: -100px;
}

.more-up {
  top: 10px;
}

.header.bg-white {
  background-color: rgb(var(--color-white));
}

.header.bg-white.stickys {
  background-color: transparent !important;
}

.header-inner {
  display: flex;
  align-items: flex-end;
  transition: all 150ms ease-in-out;
  justify-content: space-between;
  background-color: rgb(var(--color-white));
  position: relative;
}

.header.stickys .header-inner {
  padding: 0 30px 5px;
  border-radius: 70px;
  transition: all 100ms ease-in-out;
  box-shadow: 0px 4px 24px rgba(17, 27, 44, 0.15);
}

.header-inner::befores {
  width: 40px;
  height: 100%;
  background-color: rgb(var(--color-white));
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  content: "";
  position: absolute;
  left: -39px;
  top: 0;
  bottom: 0;
}

.header-inner::afters {
  width: 40px;
  height: 100%;
  background-color: rgb(var(--color-white));
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  content: "";
  position: absolute;
  right: -39px;
  top: 0;
}

.logo {
  max-width: 225px;
  transition: all 100ms ease-in-out;
}

.stickys .logo img {
  transition: all 100ms ease-in-out;
  max-height: 50px;
}

.list-main-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
  padding: 0;
}

.sticky .list-main-menu {
  margin-bottom: 5px;
}

.list-main-menu a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(var(--color-gray));
}

.list-main-menu a.dropdown-item {
  color: rgb(var(--color-default));
}

.list-main-menu a:hover,
.list-main-menu .btn:hover {
  color: rgb(var(--color-blue));
}

.list-main-menu a.active {
  font-weight: 600;
  color: rgb(var(--color-blue));
}

.dropdown-menu {
  padding-top: 10px;
  background: transparent;
  border: 0;
}

.dropdown-menu.lang {
  left: -15px;
  min-width: 100px;
}

.drop-inner,
.dropdown-tab {
  background: #ffffff;
  border: 2px solid #ebeef1;
  border-radius: 12px;
  padding: 5px 0;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 5px;
}

.img-lang {
  display: inline-block;
  width: 16px;
}

.dropdown-item {
  color: rgb(var(--color-default));
}

/* ========== Menu Mobile ========== */
.mobile-nav,
.inner-nav {
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show,
.inner-nav.show {
  left: 0;
}

.overlay-mobile {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay-mobile.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.menu-mobile {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-footer {
  padding-bottom: 40px;
}

.link-mobile {
  text-align: center;
  display: block;
}

.link-mobile.active {
  color: rgb(var(--color-blue));
}

.services-content,
.about-content {
  display: none;
}

.services-content.show,
.about-content.show {
  display: block;
}

/* ========== Search ========== */
.search-wrapper {
  position: fixed;
  top: 100px;
  width: 100%;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.search-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.main-search {
  background: #ffffff;
  box-shadow: 0px 4px 24px rgba(17, 27, 44, 0.15);
  border-radius: 70px;
  padding: 10px;
}

.main-search input {
  border-radius: 70px;
}

.btn-search {
  width: 32px;
  height: 32px;
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
  border-radius: 100px;
  padding: 0;
  margin: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 5px;
}

/* ========== Content ========== */
.swiper-slide>.swiper-slide-cover,
.swiper-slide>.main-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50% / cover;
}

.swiper-slide {
  transform-origin: 50% 50%;
}

.swiper-scale-effect .swiper-slide-cover {
  transition-timing-function: linear;
  transition-duration: 20s;
  transform: scale(1);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.3);
}

.swiper-slide-cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  z-index: 1;
}

.slider-hero .swiper-slide {
  position: relative;
  height: 110vh;
}

.hero-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 20;
}

.hero-desc.main-banner {
  position: absolute;
  top: 33%;
  transform: translateY(-60%);
  width: 100%;
  z-index: 20;
}

.inquiry {
  padding: 40px 0;
}

.bg-inquiry {
  background: linear-gradient(180deg, #232e64 0%, #132063 100%);
  border-radius: 20px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.closed-inquiry {
  position: absolute;
  right: 20px;
  top: 20px;
}

.bokeh-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.big-rd-green,
.big-rd-orange,
.big-rd-blue {
  width: 34px;
  height: 34px;
  background: linear-gradient(95.09deg, #279743 4.32%, #42cb64 100.42%);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.big-rd-orange {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
}

.big-rd-blue {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

.big-rd-green::before,
.big-rd-orange::before,
.big-rd-blue::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: linear-gradient(95.09deg, #267429 4.32%, #3fc048 100.42%);
  filter: blur(22px);
  z-index: -1;
}

.big-rd-orange::before {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
  filter: blur(27px);
}

.big-rd-blue::before {
  background: linear-gradient(95.09deg, #263474 4.32%, #3f56c0 100.42%);
  filter: blur(22px);
}

.right-deco {
  position: absolute;
  right: -30px;
  top: 0;
}

.right-deco.inner {
  top: -40px;
}

.right-deco.about {
  top: -40px;
  right: -50px;
}

.right-deco.result {
  top: 60px;
  right: -20%;
}

.right-deco.popup {
  top: auto;
  right: -10px;
  bottom: 0;
}

.sm-rd-popup {
  position: absolute;
  bottom: 50px;
  right: 60px;
}

.left-deco {
  position: absolute;
  left: -30px;
  bottom: 40px;
}

.left-deco.error {
  top: 110px;
  left: -10px;
  bottom: auto;
}

.left-deco.result {
  top: 20px;
  left: -20%;
  bottom: auto;
}

.left-deco.about {
  top: -20px;
  left: -60px;
  bottom: auto;
}

.left-deco.popup {
  top: 40px;
  left: -60px;
  bottom: auto;
}

.sm-rd-green {
  position: absolute;
  top: 60px;
}

.sm-rd-orange {
  position: absolute;
  bottom: -60px;
  left: 60px;
}

.sm-rd-orange.popup {
  position: absolute;
  bottom: -90px;
  left: 20px;
}

.inquiry-wrap {
  border-radius: 20px;
  position: relative;
}

.inquiry-wrap::before {
  content: "";
  border-radius: 20px;
  width: 98%;
  height: 100%;
  position: absolute;
  background-color: #7fbe41;
  left: 1%;
  top: -15px;
  transform: rotate(-2deg);
  transform-origin: bottom right;
}

.featured-product {
  padding: 40px 0;
}

#nav-product.nav-tabs .nav-link {
  margin-bottom: 0;
  border: 1px solid #ebeef1;
  border-radius: 50px;
  color: rgb(var(--color-black));
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 5px;
}

.icon-prod {
  width: 32px;
  height: 32px;
  background: #f3f6fa;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-prod svg {
  fill: #cacccf;
}

#nav-product .nav-item.show .nav-link,
#nav-product .nav-link.active {
  color: #3c52b8;
  background-color: #f1f2f8;
  border-color: #3a4eb0;
}

#nav-product .nav-item.show .nav-link#fire-tab-tab,
#nav-product .nav-link#fire-tab-tab.active {
  color: #000;
  background-color: #fff0e9;
  border-color: #db350f;
}

#nav-product .nav-link.active .icon-prod {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

#nav-product .nav-link#fire-tab-tab.active .icon-prod {
  background: linear-gradient(95.08deg, #d21212 4.23%, #ffc400 102.24%);
}

#nav-product .nav-link.active .icon-prod svg {
  fill: rgb(var(--color-white));
}

.wrapper-prod-search {
  position: relative;
}

.wrapper-prod-search input {
  border: 2px solid #ebeef1;
  border-radius: 50px;
  padding-left: 22px;
  font-size: 14px;
}

.wrapper-prod-search .btn-search {
  right: 7px;
  top: 6px;
}

.product-items {
  aspect-ratio: 2/1.9;
  background: #f3f6f9;
  border-radius: 12px;
  position: relative;
  padding: 20px;
  display: block;
  overflow: hidden;
  z-index: 3;
}

.product-items .hovers,
.product-items .hovers {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 500ms ease-in-out;
}

.product-items:hover .hovers {
  width: 100%;
  height: 150%;
  bottom: 0;
}

.img-prod {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/0.75;
}

.img-prod figure {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/0.75;
  transition: 150ms ease-in-out;
}

.img-prod.list {
  aspect-ratio: 1/0.7;
}

.img-prod.list figure {
  aspect-ratio: 1/1;
  max-width: 55%;
}

.img-prod figure img {
  transform: scale(0.8);
  transition: 350ms ease-in-out;
}

.img-prod.list figure img {
  transform: scale(0.9);
  transition: 350ms ease-in-out;
}

.product-items:hover .img-prod figure img {
  transform: scale(1);
}

.product-items:hover .img-prod.list figure img {
  transform: scale(1.2);
}

.product-items:hover,
.product-items:hover span {
  color: rgb(var(--color-white)) !important;
}

.ribbon {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 0 10px;
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 5px;
  z-index: 2;
}

.partners .swiper-slide {
  width: max-content;
}

.partners .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}

.box-partner {
  height: auto;
  padding: 10px;
}

.partner-top,
.partner-bottom {
  margin-bottom: 45px;
}

.service-row {
  overflow: hidden;
  padding: 40px 0;
  z-index: 10;
  position: relative;
  transform: translateY(-40px);
}

.service-section {
  position: relative;
}

.service-section::before {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  background-color: #7fbe41;
  left: 0;
  top: -15px;
  right: 0px;
  transform: rotate(-1deg);
  transform-origin: bottom right;
}

.service-section-inner {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #232e64 0%, #132063 100%);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.service-items {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  height: 100%;
  display: block;
}

.service-items.oranges:hover {
  border: 1px solid #faa423;
}

.service-items.blues:hover {
  border: 1px solid #425acb;
}

.service-items.greens:hover {
  border: 1px solid #40c583;
}

.circle {
  width: 72px;
  height: 72px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle.orange {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
}

.circle.blue {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

.circle.green {
  background: linear-gradient(95.09deg, #216523 4.32%, #42cb89 100.42%);
}

.main-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgb(var(--color-blue));
  transition: all 550ms ease-in-out;
  cursor: pointer;
}

.main-link.sm {
  font-size: 14px;
}

.main-link.news {
  justify-content: start;
  font-size: 14px;
}

.main-link span {
  transition: all 550ms ease-in-out;
}

.main-link.white {
  color: rgb(var(--color-white));
}

.main-link svg {
  fill: rgb(var(--color-blue));
  transition: all 550ms ease-in-out;
}

.main-link.white svg {
  fill: rgb(var(--color-white));
  transition: all 550ms ease-in-out;
}

.main-link:hover svg {
  transform: translateX(85px);
}

.main-link:hover span {
  transform: translateX(-20px);
}

.instagram-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff 0%, #f1f6fc 100%);
}

.img-ig {
  aspect-ratio: 1/1.25;
  overflow: hidden;
  border-radius: 8px !important;
  display: block;
  position: relative;
  z-index: 2;
}

.hover-ig-state {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(95.09deg, #263474 4.32%, #3f56c0 100.42%);
}

.img-ig:hover .hover-ig-state {
  opacity: 0.5;
  visibility: visible;
}

.ig-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.img-ig:hover .ig-icon {
  opacity: 1;
  visibility: visible;
}

.ig-link {
  padding: 3px 15px 3px 3px;
  border: 1px solid #e7e7e7;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-link span {
  color: rgb(var(--color-gray));
  font-size: 11px;
}

.ig-link-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
  border-radius: 100px;
}

.section-news {
  padding: 50px 0;
}

.news-items {
  position: relative;
  height: 100%;
}

.img-news {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

.img-news.big {
  aspect-ratio: 16/8;
}

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

.news-title {
  color: rgb(var(--color-default));
  font-weight: 600;
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-excerpt {
  color: rgb(var(--color-gray));
  font-size: 14px;
  line-height: 22px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-nav {
  width: 80px;
  height: 40px;
  position: relative;
}

.suggest-wrapper {
  position: absolute;
  top: 60px;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  border: 2px solid #ebeef1;
  border-radius: 12px;
  padding: 10px 0;
  transition: all 100ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.suggest-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.suggest-items {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 180px;
  height: 100%;
}

.suggest-items ul {
  margin: 0;
  list-style: none;
  padding-left: 15px;
}

.suggest-items li {
  margin: 5px 0;
}

.suggest-items li a {
  font-size: 14px;
}

.inner-section {
  padding-top: 120px;
}

.center-deco {
  position: absolute;
  z-index: -1;
  bottom: -30px;
  left: 60%;
}

.center-decos {
  position: absolute;
  z-index: -1;
  top: 60px;
  left: 50%;
}

.blue-dot {
  top: 20%;
  right: 10%;
  position: absolute;
  z-index: 1;
}

.orange-dot {
  bottom: 0;
  left: 20%;
  position: absolute;
  z-index: 1;
}

.deco-intro {
  padding: 2px;
  border: 1px solid #e7e7e7;
  border-radius: 50px;
  display: inline-flex;
  font-size: 11px;
  line-height: 14px;
  align-items: center;
  gap: 5px;
  color: rgb(var(--color-gray));
  z-index: 4;
}

.deco-intro.white {
  border: 1px solid #fff;
}

.deco-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-green));
}

.brand-items {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  height: 100%;
  display: block;
}

.brand-items:hover {
  border-color: rgb(var(--color-blue));
}

.brand-img {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/0.7;
}

.img-logo img {
  max-width: 80%;
}

.breadcrumb a {
  color: rgb(var(--color-blue));
}

.breadcrumb a,
.breadcrumb li {
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-item.active {
  color: #a0a4a8;
  font-weight: 400;
}

.breadcrumb li.green a {
  color: rgb(var(--color-green));
}

.pagi {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 5px;
}

.pagi:hover {
  background-color: #e9e9e9;
}

.input-pagination {
  width: 40px;
  height: 40px;
  border-radius: 0;
  text-align: center;
}

.input-pagination input {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
}

.input-pagination input::-webkit-outer-spin-button,
.input-pagination input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-pagination input[type="number"] {
  -moz-appearance: textfield;
}

.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: block;
  width: 100%;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  color: rgb(var(--color-default));
  border-radius: 0;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 10px 15px;
}

.custom-select-trigger::after {
  position: relative;
  content: url(../img/chev-down.svg);
  width: 16px;
  height: 16px;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  max-width: 210px;
  border: 1px solid #e7e7e7;
  width: 100%;
  margin: 10px 0;
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-options2 {
  top: auto;
  left: 0;
  bottom: 100%;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  font-size: 14px;
  color: rgb(var(--color-dark));
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
  background: #f2f2f2;
  color: rgb(var(--color-blue));
}

.custom-option.selection::after {
  content: "";
  background-image: url(../img/check.svg);
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.custom-select.filt {
  width: 130px;
}

.filt .custom-select-trigger {
  max-width: 160px;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  border-radius: 40px;
}

.box-border {
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  transition: all 150ms ease-in-out;
}

.box-border.hover-blue:hover {
  border: 1px solid rgb(var(--color-blue));
  cursor: pointer;
}

.btn-searchcate {
  position: absolute;
  padding: 0;
  right: 5px;
  top: 5px;
}

.cate-search input {
  padding: 8px;
  line-height: 18px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}

.radio-items {
  position: relative;
}

.radio-items label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  position: relative;
  font-family: "Poppins";
  transition: all 150ms ease-in-out;
  width: 100%;
}

.radio-items label span {
  width: calc(100% - 27px);
}

.radio-items label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1.5px solid #e7e7e7;
  border-radius: 50%;
  transition: all 150ms ease-in-out;
}

.radio-items label::after {
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 4px;
  transition: all 150ms ease-in-out;
}

.radio-items input:checked+label::before {
  border-color: rgb(var(--color-blue));
}

.radio-items input:checked+label::after {
  background-color: rgb(var(--color-blue));
}

.collapse-items {
  border-bottom: 1px solid #e7e7e7;
}

.btn-collapse {
  border: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 12px 0;
  width: 100%;
  font-weight: 500;
  color: rgb(var(--color-default));
}

.btn-collapse:hover {
  color: rgb(var(--color-blue));
}

.btn-collapse.collapsed::after,
.btn-collapse::after {
  content: "";
  background-image: url(../img/chev-down.svg);
  width: 16px;
  height: 16px;
  background-size: 16px;
  transition: all 100ms ease-in-out;
  transform: rotate(0);
}

.btn-collapse::after {
  transform: rotate(-180deg);
}

.p-filter {
  padding: 15px;
}

.btn-filter {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  position: relative;
}

.btn-filter::after {
  content: "";
  background-image: url(../img/chev-down.svg);
  width: 16px;
  height: 16px;
  background-size: 16px;
  transition: all 100ms ease-in-out;
}

.btn-back-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 15px;
  border: 0;
  cursor: none;
}

.btn-back-filter:hover {
  color: rgb(var(--color-default));
  cursor: none;
}

.show-gallery,
.thumb-gallery {
  aspect-ratio: 2/1.66;
  overflow: hidden;
  border-radius: 12px;
}

.list-feature {
  padding-left: 17px;
}

.list-feature li {
  font-size: 14px;
  color: rgb(var(--color-gray-2));
}

.related-row {
  padding-bottom: 60px;
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.logo-distribution {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease-in-out;
}

.logo-distribution img {
  transition: all 100ms ease-in-out;
}

.logo-distribution:hover img {
  transform: scale(1.1);
}

.bg-gray {
  background-color: #f1f6fc;
  padding: 60px 0;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle.md {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.icon-circle.orange {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
}

.icon-circle.blue {
  background: linear-gradient(95.09deg, #263474 4.32%, #3f56c0 100.42%);
}

.icon-circle.green {
  background: linear-gradient(226.23deg, #8dc640 0%, #40c664 182.12%);
}

.icon-circle.pink {
  background: linear-gradient(225deg, #ff239c 0%, #ac1ce5 100%);
}

.epc-info {
  width: calc(100% - 50px);
}

.epc-infos {
  width: calc(100% - 60px);
}

.lists {
  padding-left: 15px;
}

.lists-career {
  padding-left: 15px;
}

.lists-career li {
  font-size: 14px;
  color: rgb(var(--color-gray));
  margin-bottom: 5px;
}

.hero-article {
  margin-top: 100px;
  background-size: cover;
  position: relative;
  aspect-ratio: 16/3;
  background-position: center center;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #000000 0%, #232e64 100%);
  opacity: 0.8;
  width: 100%;
  height: 100%;
}

.list-news {
  padding: 50px 0;
}

#tabs-cate.nav-tabs .nav-link {
  margin-bottom: 0;
  padding: 8px 15px;
  border: 1px solid #e8e8e8;
  border-radius: 80px;
  font-size: 12px;
  line-height: 18px;
}

#tabs-cate.nav-tabs .nav-item.show .nav-link,
#tabs-cate.nav-tabs .nav-link.active {
  color: rgb(var(--color-blue)) !important;
  box-sizing: border-box;
  background: #f1f2f8 !important;
  border: 1px solid #212d65 !important;
}

.share {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.form-section {
  padding: 30px 0;
}

.box-contact {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0px 14px 24px rgba(22, 54, 119, 0.05);
  border-radius: 12px;
  padding: 40px;
}

.office-section {
  padding: 40px 0;
}

.hero-career {
  aspect-ratio: 16/4;
  overflow: hidden;
}

.hero-career img {
  object-fit: cover;
  object-position: center;
}

.career-list {
  padding: 60px 0;
}

.career-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 15px;
}

.career-info li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 15px;
  font-size: 14px;
  color: rgb(var(--color-gray));
}

.career-info li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgb(var(--color-gray-2));
  display: inline-block;
}

.career-info li:first-child:before {
  display: none;
}

.custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.custom-file-upload {
  display: block;
  width: auto;
  font-size: 16px;
}

.custom-file-upload label {
  display: block;
  margin-bottom: 5px;
}

.file-upload-wrapper {
  position: relative;
  display: flex;
  gap: 10px;
}

.file-upload-input {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 4px;
  width: calc(100% - 70px);
  border: 1px solid #e7e7e7;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.file-upload-button {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 11px 20px;
  border: none;
  border-radius: 5px;
  background-color: rgb(var(--color-blue));
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.file-upload-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 10px;
  width: 100%;
}

.file-upload-container.gaps {
  gap: 0;
}

#fileDetails {
  display: flex;
  align-items: center;
}

.btn-upload {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  border: none;
  border-radius: 5px;
  background-color: rgb(var(--color-blue));
}

.btn-upload:active,
.btn-upload:hover {
  background-color: rgb(var(--color-blue));
}

.btn-closeed {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  background-color: transparent;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}

.wrapper-filename {
  width: calc(100% - 50px);
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  height: 42px;
  display: block;
  padding: 11px 60px 12px 15px;
}

#fileName {
  font-size: 14px;
  width: 100%;
  line-height: 16px;
  font-weight: 400;
  color: rgb(var(--color-default));
  text-wrap: nowrap;
}

.wrapper-filename.long {
  width: 100%;
}

.portfolio-row {
  padding: 40px 0;
}

.moved-up {
  position: relative;
  margin-top: -30px;
  z-index: 1;
}

#nav-product {
  z-index: 9;
  position: relative;
}

.video-row {
  padding-top: 50px;
  padding-bottom: 50px;
}

.video-items {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  aspect-ratio: 16/10;
}

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

.video-items::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(1, 1, 1, 0.55) 0.64%,
      rgba(12, 12, 12, 0.391778) 1.97%,
      rgba(255, 255, 255, 0) 30.49%,
      rgba(255, 255, 255, 0) 70.94%,
      rgba(0, 0, 0, 0.55) 100%);
  top: 0;
  left: 0;
}

.text-video {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: rgb(var(--color-white));
}

.title-video {
  position: absolute;
  top: 20px;
  left: 20px;
}

.icon-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(var(--color-white));
}

.icon-video img {
  width: auto;
  height: auto;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-yt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.play-yt::before {
  content: "";
  background-image: url(../img/yt-1.png);
  background-size: 50px;
  width: 50px;
  height: 50px;
}

.play-yt:hover::before {
  content: "";
  background-image: url(../img/yt-2.png);
  background-size: 50px;
  width: 50px;
  height: 50px;
}

.img-gallery {
  overflow: hidden;
  aspect-ratio: 16/10;
  border-radius: 12px;
  display: block;
}

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

#tabs-items.nav-tabs .nav-link {
  margin-bottom: 0;
  box-sizing: border-box;
  border: 1px solid #ebeef1;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(var(--color-black));
  padding: 5px 15px 5px 5px;
  font-size: 14px;
}

.icn-items {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f6fa;
}

.icn-items svg {
  fill: #cacccf;
}

#tabs-items.nav-tabs .nav-item.show .nav-link,
#tabs-items.nav-tabs .nav-link.active {
  color: #3c52b8;
  background-color: #f1f2f8;
  border-color: #3a4eb0;
}

#tabs-items.nav-tabs .nav-link.active .icn-items {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

#tabs-items.nav-tabs .nav-link.active .icn-items svg {
  fill: #fff;
}

.box-result {
  box-sizing: border-box;
  background: #f6f8fb;
  border: 1px solid #212d65;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #212d65;
  box-shadow: 0px 14px 24px rgba(22, 54, 119, 0.05);
}

.box-result.big {
  padding: 25px;
  justify-content: center;
  gap: 40px;
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
}

.box-result.md {
  padding: 25px;
  justify-content: center;
  gap: 40px;
  font-size: 22px;
  line-height: 22px;
}

.box-result.sm {
  padding: 15px;
  justify-content: space-between;
  gap: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.box-result.xs {
  padding: 10px 15px;
  width: auto;
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  line-height: 12px;
}

.box-result.alt {
  box-sizing: border-box;
  background: #f6f8fb;
  border: 1px solid #212d65;
  border-radius: 12px;
  width: 100%;
  padding: 15px 20px;
  color: #212d65;
  box-shadow: 0px 14px 24px rgba(22, 54, 119, 0.05);
}

.box-result.alt {
  box-sizing: border-box;
  background: #f6f8fb;
  border: 1px solid #212d65;
  border-radius: 12px;
  width: 100%;
  padding: 15px 20px;
  color: #212d65;
  font-size: 15px;
  line-height: 20px;
  box-shadow: 0px 14px 24px rgba(22, 54, 119, 0.05);
}

.box-result.alt span {
  font-weight: 600;
  font-size: 29px;
  line-height: 35px;
}

.btn-close-items {
  padding: 5px 0;
  border: 0;
}

.icn-gd-sm {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.icn-gd-sm.blue {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

.icn-gd-sm.orange {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
}

.icn-gd-sm.green {
  background: linear-gradient(95.09deg, #216523 4.32%, #42cb89 100.42%);
}

.form-info {
  position: absolute;
  right: 13px;
  top: 10px;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
}

.calc input {
  padding-right: 60px;
}

.tab-dropdown-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(160, 164, 168, 0.3);
  border-radius: 12px;
  background-color: rgb(var(--color-white));
  font-size: 14px;
  padding: 10px 15px;
}

.tab-dropdown-button::after {
  content: "";
  background-image: url(../img/chev-down.svg);
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.dropdown-tab {
  width: 100%;
  min-width: 100%;
}

.nav-droptab {
  padding: 0;
  margin: 0;
}

.nav-droptab li {
  display: block;
  padding: 5px 15px;
}

.nav-droptab li a {
  font-size: 14px;
}

.btn-closed-result {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  padding: 0;
}

.result-items {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}

.link-result {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

.img-result {
  aspect-ratio: 2/1.5;
  overflow: hidden;
  border-radius: 12px;
}

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

.circle-line {
  position: absolute;
  top: 0;
  z-index: -1;
}

.list-philosophy {
  list-style: none;
  margin: 0;
  padding-left: 65px;
}

.list-philosophy li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  position: relative;
}

.big-logo {
  margin-top: -55px;
}

.list-philosophy li.yellow::after {
  content: "";
  background-image: url(../img/yellow-line.svg);
  width: 330px;
  height: 81px;
  top: 25px;
  position: absolute;
  left: -329px;
  background-repeat: no-repeat;
}

.list-philosophy li.red::after {
  content: "";
  background-image: url(../img/red-line.svg);
  width: 360px;
  height: 81px;
  top: 25px;
  position: absolute;
  left: -359px;
  background-repeat: no-repeat;
}

.list-philosophy li.green::after {
  content: "";
  background-image: url(../img/green-line.svg);
  width: 300px;
  height: 81px;
  top: 25px;
  position: absolute;
  left: -300px;
  background-repeat: no-repeat;
}

.list-philosophy li.blue-one::after {
  content: "";
  background-image: url(../img/blue-one-line.svg);
  width: 94px;
  height: 41px;
  top: -15px;
  position: absolute;
  left: -95px;
  background-repeat: no-repeat;
}

.list-philosophy li.blue-two::after {
  content: "";
  background-image: url(../img/blue-two-line.svg);
  width: 340px;
  height: 61px;
  top: -35px;
  position: absolute;
  left: -340px;
  background-repeat: no-repeat;
}

.list-philosophy li.blue-three::after {
  content: "";
  background-image: url(../img/blue-three-line.svg);
  width: 290px;
  height: 141px;
  top: -110px;
  position: absolute;
  left: -290px;
  background-repeat: no-repeat;
}

.circle-dashed {
  width: 24px;
  height: 24px;
  border-radius: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed transparent;
}

.circle-dashed.yellow {
  border-color: #fec52e;
}

.circle-dashed.yellow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #fec52e;
}

.circle-dashed.red {
  border-color: #d13239;
}

.circle-dashed.red::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d13239;
}

.circle-dashed.green {
  border-color: #7fbe41;
}

.circle-dashed.green::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #7fbe41;
}

.circle-dashed.blue {
  border-color: #212d65;
}

.circle-dashed.blue::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #212d65;
}

.phil-desc {
  width: calc(100% - 40px);
}

.vimi {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.icn-vimi {
  width: 80px;
  height: 80px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.icn-vimi.blue {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

.icn-vimi.orange {
  background: linear-gradient(225deg, #ffc423 0%, #e51c25 100%);
}

.charts {
  padding-bottom: 140px;
}

.chart {
  position: absolute;
  max-width: 320px;
}

.inner-chart {
  position: relative;
}

.ts {
  top: 40px;
}

.team-spirit::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f5be20;
  right: -45px;
  position: absolute;
  bottom: 100px;
}

.team-spirit::before {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 50%;
  border-top: 1px dashed #f5be20;
  right: -45px;
  position: absolute;
  bottom: 103px;
}

.com {
  top: 40px;
  right: 0;
}

.commitment::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3c52b8;
  left: -45px;
  position: absolute;
  bottom: 20px;
}

.commitment::before {
  content: "";
  width: 35px;
  height: 2px;
  border-radius: 50%;
  border-top: 1px dashed #3c52b8;
  left: -45px;
  position: absolute;
  bottom: 22px;
}

.res {
  top: 300px;
}

.responsible::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c62e35;
  right: -45px;
  position: absolute;
  bottom: 55px;
}

.responsible::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 50%;
  border-top: 1px dashed #c62e35;
  right: -45px;
  position: absolute;
  bottom: 58px;
}

.hs {
  top: 300px;
  right: 0;
}

.high-standard::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f54b20;
  left: -50px;
  position: absolute;
  bottom: 70px;
}

.high-standard::before {
  content: "";
  width: 35px;
  height: 2px;
  border-radius: 50%;
  border-top: 1px dashed #f54b20;
  left: -45px;
  position: absolute;
  bottom: 72px;
}

.acv {
  bottom: -30px;
  left: 50%;
  padding-left: 15px;
}

.achievment::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5f8e31;
  left: -20px;
  position: absolute;
  top: -10px;
}

.achievment::before {
  content: "";
  width: 2px;
  height: 190px;
  border-radius: 50%;
  border-left: 1px dashed #5f8e31;
  left: -17px;
  position: absolute;
  top: -10px;
}

.gal-inside {
  margin-top: -230px;
  position: relative;
  z-index: 10;
}

.img-gal {
  border-radius: 12px;
  aspect-ratio: 16/7;
  overflow: hidden;
}

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

.with-bullet {
  position: relative;
}

.with-bullet::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgb(var(--color-default));
  left: -20px;
  top: 10px;
}

.img-doc {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
}

.img-doc:hover {
  transform: translateY(-4px);
  box-shadow: 3px 2px 12.2px 8px rgba(8, 17, 63, 0.3);
}

.img-doc img {
  width: 100%;
  height: 100%;
}

.swiper.cer,
.swiper.award {
  padding-top: 20px;
  padding-left: -10px;
  padding-right: -10px;
}

.image-wrapper {
  display: flex;
  align-items: center;
}

.image-wrapper img {
  height: auto;
  max-width: 100%;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}

.shine:hover::before,
.shine:focus::before {
  -webkit-animation: shine 0.85s;
  animation: shine 0.85s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.fac {
  padding-bottom: 180px;
}

.deco-logo {
  position: absolute;
  top: 0;
  z-index: -1;
}

.deco-vimi {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}

.deco-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.deco-fac {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.deco-served {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.deco-cerawar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.wa-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 111;
}

.arrowCta {
  display: block;
  height: 13px;
  width: 13px;
  border: 11px solid transparent;
  transform: rotate(-135deg);
  position: relative;
  margin: 0 auto;
}

.arrowCta:after,
.arrowCta:before {
  content: "";
  display: block;
  height: inherit;
  width: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.arrowCta:after {
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  top: 0;
  left: 0;
  opacity: 1;
  animation: bottom-arrow 1.65s infinite;
}

@keyframes bottom-arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  45% {
    opacity: 0;
    transform: translate(12px, 12px);
  }

  46% {
    opacity: 0;
    transform: translate(-16px, -16px);
  }

  90% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }

  100% {
    opacity: 1;
    transform: translate(-6px, -6px);
  }
}

.arrowCta:before {
  top: 0;
  left: 0;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  animation: top-arrow 1.65s infinite;
}

@keyframes top-arrow {
  0% {
    transform: translate(-6px, -6px);
  }

  35% {
    transform: translate(0, 0);
  }

  90% {
    opacity: 1;
    transform: translate(0, 0);
  }

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

.box-arrow {
  position: fixed;
  width: 48px;
  height: 48px;
  display: flex;
  bottom: 80px;
  padding-top: 20px;
  right: 20px;
  background: linear-gradient(95.09deg, #263474 4.32%, #3f56c0 100.42%);
  border-radius: 800px;
  z-index: 111;
}

.separator {
  width: 100%;
  height: 3px;
  background-color: #f1f1f1;
}

.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9*/
  position: relative;
  border-radius: 16px;
}

.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.box-dashed {
  background: #f6f8fb;
  border: 1px dashed #212d65;
  border-radius: 12px;
  height: 100%;
}

.btn-collap {
  border: 0;
  padding: 0;
  transition: all 150ms ease-in-out;
}

.btn-collap svg {
  transform: rotate(-90deg);
  transition: all 150ms ease-in-out;
}

.btn-collap.collapsed svg {
  transform: rotate(90deg);
  transition: all 150ms ease-in-out;
}

/* ========== Popup ========== */
.modal-overlay {
  content: "";
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-inner {
  position: relative;
  z-index: 2;
}

.popup-content {
  max-width: 837px;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #232e64 0%, #132063 100%);
  border-radius: 20px;
  padding: 30px 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.deco-popup {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.counter {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 116px;
  line-height: 174px;
  color: #ffffff;
}

.btn-close-popup {
  border: 0;
  background-color: transparent;
  padding: 0;
  position: absolute;
  right: 0;
  top: -30px;
}

/* ========== Footer ========== */
.footer {
  position: relative;
}

.link-footer {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.link-footer a {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: rgb(var(--color-gray));
}

.link-footer a:hover {
  color: rgb(var(--color-blue));
}

.social {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
  border-radius: 100px;
  width: 56px;
  height: 56px;
}

.social.sm a {
  width: 40px;
  height: 40px;
}

.social a svg {
  fill: #fff;
  transition: all 100ms ease-in-out;
}

.social a:hover svg {
  fill: #ffc400;
}

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

.copy {
  padding: 10px 0 40px;
}

/* ========== overide ========== */
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.hide-chev.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

.related-chev.swiper-button-next,
.related-chev.swiper-button-prev {
  position: absolute;
  background-color: #f3f6f9;
  top: 0;
  width: 32px;
  height: 32px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.hide-chev.swiper-button-next,
.hide-chev.swiper-button-prev {
  position: absolute;
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
  width: 32px;
  height: 32px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

#gal.related-chev.swiper-button-next,
#gal.related-chev.swiper-button-prev {
  top: 50%;
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}

.charts.related-chev.swiper-button-next,
.charts.related-chev.swiper-button-prev {
  top: 50%;
  margin-top: -32px;
}

.related-chev.swiper-button-next::after,
.related-chev.swiper-button-prev::after,
.hide-chev.swiper-button-next::after,
.hide-chev.swiper-button-prev::after {
  display: none;
}

.related-chev.swiper-button-next:hover,
.related-chev.swiper-button-prev:hover {
  background: linear-gradient(95.09deg, #212d65 4.32%, #425acb 100.42%);
}

.related-chev.swiper-button-next svg,
.related-chev.swiper-button-prev svg {
  fill: #848e91;
}

.hide-chev.swiper-button-next svg,
.hide-chev.swiper-button-prev svg {
  fill: #fff;
}

.related-chev.swiper-button-next:hover svg,
.related-chev.swiper-button-prev:hover svg,
.hide-chev.swiper-button-next:hover svg,
.hide-chev.swiper-button-prev:hover svg {
  fill: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.6);
}

.char.swiper-pagination {
  bottom: 0;
}

.char .swiper-pagination-bullet {
  background: rgba(61, 83, 186, 0.6);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.6);
}

.char .swiper-pagination-bullet-active {
  background-color: rgb(var(--color-green));
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #8dc640;
}

#tabs-cate .swiper-slide,
#tabs-items .swiper-slide {
  width: max-content;
}

#gal.swiper-button-next {
  right: 10px;
  left: auto;
}

/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 600px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  .video-nav {
    display: none;
  }
}

@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1180px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (min-width: 1400px) {}

@media (min-width: 1025px) {
  .list-main-menu li:nth-last-child(2) {
    display: none;
  }
}

@media (min-width: 992px) {

  .icn-back-filter,
  .info-filter {
    display: none;
  }

  .hide-desktop {
    display: none;
  }

  .hide-chev {
    display: none !important;
  }
}

@media (max-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-main-menu li {
    display: none;
  }

  .list-main-menu li:nth-last-child(2),
  .list-main-menu li:nth-last-child(3),
  .list-main-menu li:last-child {
    display: block;
  }

  .right-deco {
    right: -10px;
  }

  .left-deco {
    left: -10px;
  }

  .inner-filter {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .btn-back-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 15px;
    border: 0;
    cursor: pointer;
  }

  .btn-back-filter:hover {
    color: rgb(var(--color-default));
    cursor: pointer;
  }

  .hero-article {
    aspect-ratio: 16 / 6;
  }

  .list-philosophy {
    padding-left: 0;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-philosophy li::after {
    display: none;
  }

  .big-logo {
    margin-top: 0;
  }

  .chart {
    position: absolute;
    max-width: 215px;
  }

  .chart p {
    font-size: 14px;
    line-height: 19px;
  }

  .img-chart img {
    max-width: 60%;
  }

  .slider-hero .swiper-slide {
    position: relative;
    height: 100vh;
  }

  .box-result.alt span {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 41px;
    line-height: 60px;
  }

  .filter-side {
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-white));
    position: fixed;
    left: -450px;
    z-index: 1101;
    top: 0;
    padding: 20px;
    transition: all 100ms ease-in-out;
    box-shadow: 18px 5px 26.4px 5px rgba(0, 0, 0, 0.05);
  }

  .filter-side.show {
    left: 0;
  }

  .download {
    padding: 10px 15px;
  }

  .logo-distribution {
    padding: 10px;
  }

  .hero-career {
    aspect-ratio: 16 / 6;
    overflow: hidden;
  }

  .hero-career img {
    height: 100%;
  }

  .left-deco {
    left: -60px;
  }

  #hsp .border-end {
    border: 0 !important;
  }

  .chart {
    position: relative;
    max-width: 100%;
    top: 0;
    left: 0;
    padding: 0;
  }

  .charts {
    padding-bottom: 40px;
  }

  .inner-chart::before {
    display: none;
  }

  .left-deco.popup {
    top: 40px;
    left: -5px;
    bottom: auto;
  }

  .service-section-inner {
    padding: 50px 0 60px;
  }

  .box-result.alt span {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .header {
    top: 0;
    padding: 0 0 10px 0;
    background: #fff !important;
  }

  .header-inner.stickys {
    padding: 0 0;
    border-radius: 0;
    transition: all 100ms ease-in-out;
    box-shadow: none;
  }

  .stickys .logo img {
    transition: all 100ms ease-in-out;
    max-height: 60px;
  }

  .counter {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 116px;
    line-height: 124px;
    color: #ffffff;
  }

  .inner-section {
    padding-top: 100px;
  }

  .logo {
    max-width: 175px;
    transition: all 100ms ease-in-out;
  }

  .list-main-menu li:nth-last-child(3) {
    display: none;
  }

  h1 {
    font-size: 35px;
    line-height: 45px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3 {
    font-size: 25px;
    line-height: 30px;
  }

  h4 {
    font-size: 22px;
    line-height: 33px;
  }

  .first-content h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .hero-desc.main-banner {
    position: absolute;
    top: 35%;
  }

  .inquiry-wrap::before {
    width: 93%;
    height: 100%;
    left: 8%;
    top: -15px;
    transform: rotate(-5deg);
    transform-origin: bottom right;
  }

  .slider-hero .swiper-slide {
    position: relative;
    height: 100vh;
  }

  .featured-prod-water .swiper-wrapper {
    overflow: visible;
  }

  .product-items:hover .img-prod figure img {
    transform: scale(0.9);
  }

  .product-items {
    aspect-ratio: 0;
    height: 100%;
    border-radius: 10px;
    padding: 15px;
  }

  .service-section::before {
    content: "";
    width: 128%;
    height: 102%;
    position: absolute;
    background-color: #7fbe41;
    left: -54px;
    top: -7px;
    right: 0px;
    transform: rotate(-3deg);
    transform-origin: center center;
  }

  .service-row {
    overflow: hidden;
    padding: 40px 0;
  }

  .instagram-section {
    padding: 10px 0 40px;
    background: linear-gradient(180deg, #fff 0%, #f1f6fc 100%);
  }

  .inquiry {
    padding: 20px 0 40px;
  }

  .section-news {
    padding: 30px 0;
  }

  .download {
    padding: 10px 5px;
  }

  .distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .hero-career {
    aspect-ratio: 16 / 7;
    overflow: hidden;
  }

  .app-form {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    background-color: rgb(var(--color-white));
    z-index: 1100;
    transition: all 100ms ease-in-out;
  }

  .app-form.show {
    left: 0;
  }

  .btn-apply-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: rgb(var(--color-white));
    padding: 20px;
  }

  .btn-back-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 15px;
    border: 0;
  }

  .btn-back-form:hover {
    color: rgb(var(--color-default));
  }

  .left-deco {
    bottom: 12px;
    left: -11px;
  }

  .sm-rd-orange {
    position: absolute;
    bottom: -29px;
    left: 47px;
  }

  .right-deco {
    right: -10px;
    top: -33px;
  }

  .blue-dot {
    top: 0;
    right: 10%;
    position: absolute;
    z-index: 1;
  }

  .orange-dot {
    bottom: -20px;
    left: 20%;
    position: absolute;
    z-index: 1;
  }

  .left-deco.inner {
    bottom: 80px;
    left: -10px;
  }

  .left-deco.resource {
    bottom: 50px;
    left: -10px;
  }

  .left-deco.career {
    bottom: 80px;
    left: -10px;
  }

  .left-deco.contact {
    bottom: 120px;
    left: -5px;
  }

  .left-deco.error {
    top: 110px;
    left: -25px;
    bottom: auto;
  }

  .sm-rd-green.er {
    right: 0;
  }

  .sm-rd-orange.er {
    left: 10px;
    top: 70px;
  }

  .sm-rd-orange.resource {
    position: absolute;
    bottom: -64px;
    left: -5px;
  }

  .right-deco.result {
    display: none;
  }

  .left-deco.result {
    display: none;
  }

  .hero-article {
    aspect-ratio: 16 / 9;
  }

  .box-contact {
    padding: 30px;
  }

  .search-wrapper {
    top: 70px;
  }

  .img-chart img {
    max-width: 100%;
  }

  .list-philosophy {
    padding-left: 0;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .deco-served {
    width: 85%;
  }

  .right-deco.about {
    top: -31px;
    right: -13px;
  }

  .left-deco.about {
    top: -45px;
    left: -5px;
    bottom: auto;
  }

  .circle-line {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: -1;
  }

  .phil-desc .color-gray {
    font-size: 14px;
    line-height: 19px;
  }

  .inner-chart {
    position: relative;
    padding-left: 15px;
  }

  .team-spirit::after,
  .commitment::after,
  .responsible::after,
  .high-standard::after,
  .achievment::after {
    right: auto;
    bottom: auto;
    left: -5px;
    top: 5px;
  }

  .fac {
    padding-bottom: 110px;
  }

  .gal-inside {
    margin-top: -180px;
  }

  .img-gal {
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .related-nav.inner {
    width: 100%;
    height: 40px;
    position: relative;
    z-index: 11;
  }

  .inner .swiper-button-prev {
    left: 0;
    right: auto;
  }

  .award .swiper-slide,
  .cer .swiper-slide {
    width: 80%;
  }

  .image-wrapper {
    height: 100%;
  }

  .img-gal img {
    height: 100% !important;
  }

  .box-result {
    overflow: hidden;
  }

  .box-result.big {
    padding: 15px;
    font-size: 17px;
    line-height: 20px;
  }

  .box-result.sm {
    gap: 25px;
    font-size: 14px;
    line-height: 20px;
  }

  .elip-mobile {
    max-width: 90px;
  }

  .related-chev.swiper-button-next,
  .related-chev.swiper-button-prev,
  .hide-chev.swiper-button-next,
  .hide-chev.swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .related-nav {
    width: 110px;
  }
}

@media (min-width: 768px) {

  .btn-back-form,
  .btn-apply-wrap {
    display: none;
  }

  .app-form {
    position: sticky;
    top: 80px;
  }

  .hide-tablet {
    display: none;
  }

  .btn-collap {
    display: none;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {
  .nav-content {
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 700px) and (orientation: landscape) {}

/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Featured Products Styles
 * Add this to your theme's main.css or create a new CSS file
 */

/* Featured product badge */
.featured-product {
  position: relative;
}

/* .featured-product .product-items::before {
  content: "Featured";
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
} */

/* Alternative style - star icon */
/* .featured-product .product-items::after {
  content: "★";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd700;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
} */

/* Hover effect for featured products */
.featured-product .product-items {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product .product-items:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

/* Featured indicator in product counter */
.text-primary {
  color: #667eea;
  font-weight: 600;
}

/* Admin styles for featured products page */
.featured-product-admin-indicator {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background: #667eea;
  color: white;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

/* Loading state for featured products */
.featured-products-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.featured-products-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .featured-product .product-items::before {
    font-size: 9px;
    padding: 3px 8px;
  }

  .featured-product .product-items::after {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

/* Hero Slider Custom Styles */
.hero-title {
  margin: 0 0 20px 0;
  font-family: "Poppins";
}

.hero-subtitle {
  margin: 0 0 30px 0;
  font-family: "Inter";
}

.btn-hero-custom {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-custom:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Responsive adjustments for hero text */
@media (max-width: 767px) {
  .hero-title {
    font-size: 35px !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
  }

  .btn-hero-custom {
    font-size: 12px !important;
    padding: 8px 20px;
  }
}

/* Hero Responsive Enhancements */
@media (max-width: 767px) {
  .hero-desc {
    padding: 0 15px;
  }

  .hero-title {
    margin-bottom: 15px !important;
  }

  .hero-subtitle {
    margin-bottom: 20px !important;
  }

  /* Ensure text doesn't overflow on small screens */
  .hero-desc .col-xl-11 {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: calc(var(--hero-title-size, 68px) * 0.8) !important;
  }

  .hero-subtitle {
    font-size: calc(var(--hero-subtitle-size, 16px) * 0.9) !important;
  }
}

/* Smooth transitions for dynamic changes */
.hero-title,
.hero-subtitle,
.btn-hero-custom {
  transition: font-size 0.3s ease;
}

/* 
==========================================================================
PURE CSS INFINITE PARTNERS SLIDER - NO SWIPER APPROACH
Replace ALL existing partner slider styles dengan ini
========================================================================== 
*/

/* HAPUS SEMUA SWIPER PARTNER STYLES YANG LAMA */
/* Container wrapper */
.infinite-partners-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0 -15px;
  /* Full width effect */
}

/* Individual container untuk each row */
.infinite-partners-container {
  position: relative;
  width: calc(100% + 30px);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Main track yang akan di-animate */
.infinite-partners-track {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 50px;
  /* Animation akan di-apply via CSS custom properties */
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  will-change: transform;
  backface-visibility: hidden;
}

/* Top row animation - Left to Right */
.infinite-partners-top {
  animation-name: scrollLeftToRight;
  animation-duration: var(--animation-duration, 30s);
}

/* Bottom row animation - Right to Left (reverse) */
.infinite-partners-bottom {
  animation-name: scrollRightToLeft;
  animation-duration: var(--animation-duration, 30s);
}

.infinite-partners-top {
  animation-duration: 22s !important;
  /* Original ~20-30s, sekarang 15s */
}

.infinite-partners-bottom {
  animation-duration: 22s !important;
  /* Sedikit beda untuk variety */
}

/* Individual brand item */
.infinite-brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Box partner styling - sama dengan sebelumnya tapi enhanced */
.infinite-partners-wrapper .box-partner {
  height: 80px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  max-width: 200px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.infinite-partners-wrapper .box-partner:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.infinite-partners-wrapper .box-partner img {
  max-height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* 
KEYFRAME ANIMATIONS - TRUE INFINITE SCROLL
Karena kita duplicate 4x, kita animate dari 0% ke -25% (1/4 dari total width)
*/

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
    /* Move 1/4 of total width (karena 4x duplication) */
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(-25%);
    /* Start dari 1/4 position */
  }

  100% {
    transform: translateX(0);
    /* Move to start */
  }
}

/* Pause animation on hover (optional) */
.infinite-partners-container:hover .infinite-partners-track {
  animation-play-state: paused;
}

/* Gradient masks untuk smooth edges */
.infinite-partners-wrapper::before,
.infinite-partners-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.infinite-partners-wrapper::before {
  left: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 30%,
      rgba(255, 255, 255, 0) 100%);
}

.infinite-partners-wrapper::after {
  right: 0;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 30%,
      rgba(255, 255, 255, 0) 100%);
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .infinite-partners-track {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .infinite-partners-track {
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .infinite-partners-wrapper .box-partner {
    height: 65px;
    padding: 10px 20px;
    min-width: 100px;
    max-width: 160px;
  }

  .infinite-partners-wrapper .box-partner img {
    max-height: 45px;
    max-width: 150px;
  }

  .infinite-partners-track {
    gap: 30px;
  }

  .infinite-partners-wrapper::before,
  .infinite-partners-wrapper::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .infinite-partners-wrapper .box-partner {
    height: 55px;
    padding: 8px 15px;
    min-width: 90px;
    max-width: 140px;
  }

  .infinite-partners-wrapper .box-partner img {
    max-height: 40px;
    max-width: 120px;
  }

  .infinite-partners-track {
    gap: 25px;
  }

  .infinite-partners-wrapper::before,
  .infinite-partners-wrapper::after {
    width: 30px;
  }
}

/* Performance optimizations */
.infinite-partners-track,
.infinite-brand-item,
.box-partner {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Fallback untuk browsers yang tidak support CSS custom properties */
@supports not (--css: variables) {
  .infinite-partners-top {
    animation-duration: 30s;
  }

  .infinite-partners-bottom {
    animation-duration: 32s;
    /* Slightly different untuk variety */
  }
}

/* Debug styles (untuk development) */
@media screen and (max-width: 1px) {

  /* Hidden by default */
  .debug-infinite-partners {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    font-size: 12px;
    z-index: 9999;
    display: block;
  }

  .infinite-partners-track {
    border: 1px dashed rgba(255, 0, 0, 0.3);
  }
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
  .infinite-partners-track {
    animation-duration: 60s;
    /* Slower animation untuk users yang prefer reduced motion */
  }
}

@media (prefers-reduced-motion: no-preference) {
  .infinite-partners-track {
    /* Keep normal speed */
  }
}

/* ========================================
   EPC RESPONSIVE COLLAPSE STYLES
   Add this to your main.css or style.css
   ======================================== */

/* Mobile-specific styles for EPC section */
@media (max-width: 767px) {

  /* Ensure button is visible and functional on mobile */
  .epc-section .btn-collap {
    display: inline-flex !important;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  /* Rotate arrow when expanded */
  .epc-section .btn-collap:not(.collapsed) svg {
    transform: rotate(90deg);
  }

  /* Add hover effect on mobile */
  .epc-section .box-border {
    transition: background-color 0.2s ease;
  }

  .epc-section .box-border:active {
    background-color: #f8f9fa;
  }
}

/* Desktop-specific styles for EPC section */
@media (min-width: 768px) {

  /* Hide collapse button on desktop */
  .epc-section .btn-collap {
    opacity: 0;
    pointer-events: none;
    cursor: default;
  }

  /* Force content to be visible on desktop */
  .epc-section .collapse {
    display: block !important;
    height: auto !important;
  }

  /* Remove collapse transition on desktop */
  .epc-section .collapse.collapsing {
    transition: none !important;
  }
}

/* Smooth collapse animation for all screen sizes */
.epc-section .collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optional: Add visual feedback */
.epc-section .btn-collap svg path {
  transition: fill 0.2s ease;
}

.epc-section .btn-collap:hover svg path {
  fill: #212c65;
  /* Your primary color */
}