@import "../fonts/font.css";
/* Handle */
:root {
  --bg: #0b0a23;
  --primary: #1E88E5;
  --secondary: #ED9104;
  --text: #f0eefad6;
  --border: #fff;
  --desc: #f0eefabf;
  --font-size: 14px;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
}
body,
html {
  font-family: 'Inter', Arial;
  font-size: 1rem;
  overflow: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  line-height: 1.5;
  background-color: var(--bg);
}
.container {
  width: 100%;
  max-width: 1300px;
}
.overlay-common {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay-common.show {
  display: block;
}
.btn {
  border-radius: 6rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.glowing-button-outstroke {
  background-color: #6fa1e033;
  border-radius: 62.5rem;
  padding: 2px;
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.btn-glowing {
  box-shadow: inset 0 -7px 24px #ffffff80, 0 3px 12px #0057f280;
  border-radius: 10rem;
  display: inline-flex;
  position: relative;
  transition: all 0.4s;
}
.btn-glowing::before {
  content: "";
  width: 160%;
  left: -50px;
  top: -100px;
  min-height: 16rem;
  position: absolute;
  z-index: 1;
  animation: spin 3s linear infinite;
  background: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, 0.5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, 0.5) 360deg);
}
.btn-glowing .btn {
  position: relative;
  z-index: 2;
}
.btn-main {
  color: #f0eefa;
  background-image: linear-gradient(260deg, #0057f2, #1e88e5);
  box-shadow: 0 3px 12px #0057f280, inset 0 -7px 24px #ffffff80;
}
.btn-main:hover {
  background-image: linear-gradient(0deg, #0057f2, #1e88e5);
  color: #fff;
}
.btn-second {
  border: 1px solid #1e88e5;
  color: #1e88e5;
}
.btn-second:hover {
  color: #fff;
  background-color: #1e88e5;
}
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  padding: 1rem 0px;
}
.header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header .menu-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0px;
}
.header .menus {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0px;
  justify-content: center;
}
.header .menus a {
  display: flex;
  padding: 7px 20px;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 20px;
  outline: 0px;
  box-shadow: none;
}
.header .menus a:hover {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}
.header .menus a.active {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
.header .lang-box .lang {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  padding: 5px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header .lang-box .lang img {
  width: 100%;
  height: 100%;
}
.header.fixed {
  backdrop-filter: blur(20px);
  background-color: #0000;
}
.hero-light {
  background-color: var(--primary);
  opacity: 0.5;
  filter: blur(200px);
  border-radius: 50%;
  width: 50%;
  height: 70%;
  position: absolute;
  inset: 0% auto auto -10%;
}
.dropdown-menu {
  padding: 10px;
  border: 0px;
  border-radius: 1rem;
}
.dropdown-menu .dropdown-item {
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.dropdown-menu .dropdown-item .icon {
  display: flex;
  flex-shrink: 0;
}
.hero-banner {
  position: relative;
  padding: 6rem 0px;
  padding-bottom: 3rem;
}
.hero-banner .hero-light {
  background-color: var(--primary);
  opacity: 0.5;
  filter: blur(200px);
  border-radius: 50%;
  width: 50%;
  height: 70%;
  position: absolute;
  inset: 0% auto auto -10%;
}
.hero-banner .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: 1fr 40%;
}
.hero-banner .container img {
  width: 100%;
}
.hero-banner .hero-image {
  position: relative;
  z-index: 2;
}
.hero-banner .hero-image img {
  width: 100%;
}
.hero-banner .hero-image:before {
  content: "";
  background-color: var(--primary);
  opacity: 0.3;
  filter: blur(50px);
  border-radius: 50%;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  margin: auto;
}
.hero-banner .hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0px;
}
.hero-banner .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}
.hero-banner .hero-title .text-animate {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-banner .hero-desc {
  color: var(--desc);
}
.product-tab-content {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}
.product-prev,
.product-next {
  background-color: #1e1e2d;
  color: #fff;
  border-radius: 50%;
}
.product-prev .swiper-navigation-icon,
.product-next .swiper-navigation-icon {
  display: none;
}
.product-prev {
  left: 0px !important;
}
.product-next {
  right: 0px !important;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-light {
  background-color: var(--primary);
  opacity: 0.6;
  filter: blur(15rem);
  border-radius: 50%;
  width: 30rem;
  height: 30rem;
  position: absolute;
  top: 0px;
  z-index: -1;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
}
.section-customers .title {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-customers .list-customers {
  width: 100%;
}
.section-customers .list-customers .swiper-wrapper {
  transition-timing-function: linear !important;
}
.section-customers .list-customers .item {
  height: 40px;
  display: flex;
  width: 110px;
  align-items: center;
  justify-content: center;
}
.section-customers .list-customers img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.text-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.stroke-gradient {
  background: rgba(226, 232, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 20rem;
  padding: 0.25rem 0.5rem;
  display: inline-flex;
}
.stroke-gradient:before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 8%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.6) 92%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}
.stroke-gradient:after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 32px;
  background: #078FFF;
  filter: blur(12px);
  z-index: -1;
}
.highlight {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.section {
  padding: 4rem 0px;
  position: relative;
  z-index: 2;
}
.section-status {
  padding: 2rem 0px;
}
.hero-statis {
  display: flex;
  width: 100%;
  text-align: center;
  border-radius: 1rem;
}
.hero-statis .item {
  flex: 1;
  min-width: 0px;
  border-radius: 1rem;
  color: #e2e8ffbf;
  position: relative;
  padding: 0px 0.75rem;
}
.hero-statis .item:before {
  width: 2px;
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  background-image: linear-gradient(to bottom, #ffffff00, #ffffff1c, #ffffff00);
}
.hero-statis .item:last-child:before {
  display: none;
}
.hero-statis .number {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hero-statis .desc {
  font-size: 0.875rem;
}
.main-title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.main-head {
  margin-bottom: 2rem;
}
.main-head .main-title {
  margin-bottom: 0.5rem;
}
.section-desc {
  color: var(--text);
}
.section-about .container {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 30px;
}
.section-about .list-content {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.section-about .list-content .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section-about .list-content .icon {
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(to bottom, #ffffff05, #ffffff00);
}
.section-about .list-content .desc {
  font-size: 0.875rem;
  color: var(--text);
}
.section-about .list-content .content {
  font-size: 0.875rem;
  flex: 1;
  min-width: 0px;
}
.section-services .section-light {
  width: 20rem;
  height: 20rem;
}
.list-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.list-services .service-item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(to bottom, #ffffff00, #ffffff07);
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.list-services .service-item:hover {
  transition: all 0.4s ease;
  transform: translateY(-10px);
  border-color: #2784e9;
  box-shadow: 0px 0px 10px #2785e97a;
}
.list-services .icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.list-services .icon:before {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.list-services .title {
  font-weight: 600;
  font-size: 1.125rem;
}
.list-services .desc {
  font-size: 0.875rem;
  color: var(--text);
}
.list-services .list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text);
}
.list-services .item {
  display: flex;
  gap: 0.5rem;
}
.list-services .item:before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-top: 6px;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
}
.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.product-content .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.product-content .desc {
  font-size: 0.875rem;
  color: var(--text);
}
.product-content .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-content .subtitle {
  font-weight: 600;
}
.product-content .list {
  background-color: #e2e8ff0d;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text);
  font-size: 0.875rem;
}
.product-content .list strong {
  color: #fff;
}
.product-content .list .li {
  align-items: center;
  position: relative;
  padding-left: 16px;
}
.product-content .list .li:before {
  position: absolute;
  left: 0px;
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  top: 0.5rem;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
}
.product-result-statis {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.product-result-statis .li {
  flex: 1;
  text-align: center;
  min-width: 0px;
  background-color: #e2e8ff0d;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.product-result-statis .number {
  font-weight: bold;
  font-size: 1.25rem;
  background-image: linear-gradient(0deg, #1e88e5, #74baf6);
}
.product-result-statis .unit {
  color: var(--text);
  font-size: 14px;
}
.product-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  border-bottom: 0px;
  gap: 10px;
  flex-wrap: wrap;
}
.product-tabs .nav-link {
  border-radius: 0.5rem;
  color: #e2e8ffbf;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #e2e8ff1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.875rem;
}
.product-tabs .nav-link .icon {
  font-size: 1.25rem;
}
.product-tabs .nav-link:after {
  z-index: -1;
  content: "";
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
  background-color: #078fff;
  border-radius: 6249.94rem;
  width: 80%;
  height: 3rem;
  position: absolute;
  inset: 1.25rem 0% 0% 10%;
}
.product-tabs .nav-link:hover {
  transition: all 0.4s ease;
  border-color: var(--primary);
  color: #fff;
}
.product-tabs .nav-link.active {
  border-color: var(--primary);
  background-color: transparent;
  color: #fff;
}
.product-tabs .nav-link.active:after {
  opacity: 1;
}
.group-buttons {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.box-processing {
  position: relative;
}
.process-tab {
  display: flex;
  flex-wrap: wrap;
}
.process-tab .item {
  flex: 1;
  min-width: 0px;
  text-align: center;
  padding: 0px 0.625rem;
}
.process-tab .number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
  background-color: #293157;
  border: 1px solid #e2e8ff1a;
  align-items: center;
  margin: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 1s ease;
}
.process-tab .number:after {
  z-index: -1;
  content: "";
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
  background-color: #078fff;
  border-radius: 6249.94rem;
  width: 80%;
  transition: all 1s ease;
  height: 3rem;
  position: absolute;
  inset: 1.25rem 0% 0% 10%;
}
.process-tab .title {
  font-weight: 600;
}
.process-tab .desc {
  font-size: 0.875rem;
  color: var(--text);
}
.process-tab .list {
  border-radius: 0.75rem;
  padding: 1rem;
  background-color: #e2e8ff0d;
  margin-top: 1rem;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 1s ease;
  border: 1px solid transparent;
  text-align: left;
}
.process-tab .list .li {
  display: flex;
  gap: 0.5rem;
}
.process-tab .list .li:before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  position: relative;
  top: 0.5rem;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
}
.process-tab .active .number {
  border-color: var(--primary);
  transition: all 1s ease;
}
.process-tab .active .number:after {
  opacity: 1;
  transition: all 1s ease;
}
.process-tab .active .list {
  border: 1px solid #2784e9;
  box-shadow: 0px 0px 10px #2785e97a;
}
.progress-tab-running {
  height: 0.25rem;
  background-color: #e2e8ff0d;
  border-radius: 0.25rem;
  top: 1.5rem;
  position: absolute;
  left: calc((100%/5)/2);
  right: calc((100%/5)/2);
}
.progress-tab-running .inner {
  position: absolute;
  border-radius: 0.25rem;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background-image: linear-gradient(260deg, #1e88e5, #99d6fa);
}
.progress-tab-running .progress-ring {
  background-color: #1e88e5;
  border: 2px solid #1e88e566;
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: -4px;
  left: auto;
  right: 0%;
  box-shadow: 1px 1px 8px #1e88e5;
}
.box-contact {
  display: flex;
  border-radius: 2rem;
  padding: 1rem 3rem;
  background-size: cover;
  background-color: var(--bg);
  background-position: center center;
  gap: 2rem;
  align-items: center;
}
.box-contact .box-content {
  flex: 1;
  min-width: 0px;
}
.box-contact .group-buttons {
  justify-content: flex-start;
}
.box-contact .logo-3 {
  max-width: 320px;
}
.divider-gray {
  margin: 20px 0px;
  height: 1px;
  background-color: #e2e8ff1a;
}
.footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.footer-box {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-box .logo {
  margin-bottom: 0.5rem;
}
.footer-box .text-m {
  font-weight: 600;
  font-size: 1.125rem;
}
.footer-box .title {
  font-weight: 600;
  font-size: 1.125rem;
}
.footer-box .info {
  font-size: 0.875rem;
  color: var(--text);
}
.footer-box .contact-us {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-box .info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-box .info .icon {
  font-size: 1rem;
}
.footer-box .info a {
  color: var(--text);
}
.footer-box .info a:hover {
  color: var(--primary);
}
.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text);
}
.contact-fixed {
  position: fixed;
  z-index: 100;
  display: flex;
  flex-direction: column;
  bottom: 2rem;
  right: 1rem;
  gap: 1rem;
}
.contact-fixed .cta {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6));
  padding: 1px;
  border-radius: 1rem;
  transition: all 0.5s ease;
}
.contact-fixed .cta:hover {
  transition: all 0.5s ease;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6));
}
.contact-fixed a {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #211f34;
}
.contact-fixed a .icon {
  font-size: 2rem;
  color: #fff;
  animation: phone-ring 1.5s infinite ease-in-out;
}
.contact-fixed a svg {
  width: 2rem;
}
@keyframes phone-ring {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-25deg);
  }
  20% {
    transform: rotate(25deg);
  }
  30% {
    transform: rotate(-25deg);
  }
  40% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
.nav-toggle {
  display: none;
}
@media (max-width: 991px) {
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .nav-toggle .bar {
    display: block;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .nav-toggle.active .bar {
    position: absolute;
    left: 5px;
    right: 5px;
    margin: auto;
    transition: all 0.3s ease;
  }
  .nav-toggle.active .bar:last-child {
    display: none;
  }
  .nav-toggle.active .bar:first-child {
    transform: rotate(45deg) translate(0%, 0%);
  }
  .nav-toggle.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(0%, 0%);
  }
  .header {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .header .menu-box {
    position: fixed;
    top: 0px;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    width: 260px;
    padding: 1rem;
    bottom: 0px;
    z-index: 1000;
    flex-direction: column;
    backdrop-filter: blur(20px);
    background-color: #0000;
    transition: all 0.4s ease;
  }
  .header .menu-box.show {
    left: 0%;
    visibility: visible;
    opacity: 1;
  }
  .header .menus {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header .menus a {
    width: 100%;
  }
  .header.fixed {
    backdrop-filter: inherit;
    background-color: #0c0e29db;
  }
  .box-processing {
    height: 100%;
    overflow: visible;
  }
  .hero-banner .container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .progress-tab-running {
    width: 0.25rem;
    height: 100%;
    left: 30px;
  }
  .progress-tab-running .progress-ring {
    margin: 0px auto;
    top: auto;
    left: -4px;
    right: 0px;
    bottom: 0px;
  }
  .process-tab {
    flex-direction: column;
  }
  .process-tab .number {
    margin-bottom: 0px;
    margin: 0px;
  }
  .process-tab .item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
  }
  .process-tab .text-content {
    flex: 1;
    min-width: 0px;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .process-tab .top {
    text-align: left;
    width: 200px;
  }
  .process-tab .list {
    flex: 1;
    min-width: 0px;
  }
}
@media (max-width: 768px) {
  .hero-statis {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-statis .item {
    flex: auto;
    background-color: #e2e8ff0d;
    padding: 0.5rem 1rem;
  }
  .hero-statis .item::before {
    display: none;
  }
  .hero-banner .hero-title {
    font-size: 24px;
    min-height: 90px;
  }
  .section-about .container {
    display: flex;
    flex-direction: column;
  }
  .list-services {
    grid-template-columns: 1fr 1fr;
  }
  .product-content {
    grid-template-columns: 1fr;
  }
  .product-tab-content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .product-prev,
  .product-next {
    display: none;
  }
  .product-result-statis {
    flex-wrap: wrap;
  }
  .product-result-statis .li {
    flex: auto;
  }
  .box-contact {
    padding: 1rem 2rem;
  }
  .box-contact .logo-3 {
    display: none;
  }
}
@media (max-width: 600px) {
  .process-tab .top {
    width: 100%;
  }
  .process-tab .item {
    margin-bottom: 20px;
  }
  .process-tab .item:last-child {
    margin-bottom: 0px;
  }
  .process-tab .text-content {
    flex-direction: column;
    gap: 3px;
    display: block;
  }
  .process-tab .list {
    flex: auto;
    margin-top: 5px;
  }
  .list-services {
    grid-template-columns: 1fr;
  }
}
.section-pricing {
  padding-top: 8rem;
}
.section-pricing .list-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 991px;
  margin: auto;
}
.section-pricing .list-info .item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.section-pricing .list-info .item .text-m {
  flex: 1;
  min-width: 0px;
  color: var(--text);
}
.section-pricing .list-info .item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #ffffff0d;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.027));
  border: 1px solid #ffffff0d;
}
.section-pricing .list-info .item .icon:before {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.box-pricing {
  display: flex;
  gap: 10px;
  margin-top: 100px;
}
.box-pricing .pricing-item {
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  min-width: 0px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(to bottom, #ffffff00, #ffffff07);
}
.box-pricing .pricing-item.featured {
  margin-top: -30px;
  padding: 0px 5px;
  padding-bottom: 5px;
  background-image: linear-gradient(260deg, #0057f2, #1e88e5);
  border: 0px;
}
.box-pricing .pricing-item.featured .head {
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
}
.box-pricing .pricing-item.featured .head .icon {
  color: #ffea1d;
  font-size: 16px;
}
.box-pricing .pricing-item.featured .inner {
  border-radius: 16px;
  padding: 15px;
  background-color: #1d1c35;
}
.box-pricing .pricing-item .pricing-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.box-pricing .pricing-item .pricing-desc {
  font-size: 14px;
  color: var(--text);
  height: 90px;
}
.box-pricing .pricing-item .pricing-price .top {
  font-size: 14px;
  opacity: 0.8;
}
.box-pricing .pricing-item .pricing-price .price {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  gap: 3px;
  align-items: flex-start;
}
.box-pricing .pricing-item .pricing-price .unit {
  font-size: 18px;
  font-weight: normal;
  padding-top: 5px;
  color: var(--text);
}
.box-pricing .group-buttons {
  margin-top: 20px;
}
.box-pricing .pricing-feature {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.box-pricing .pricing-feature .item {
  display: flex;
  gap: 10px;
}
.box-pricing .pricing-feature .item .icon {
  font-size: 20px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(260deg, #1e88e5, #74baf6);
  -webkit-background-clip: text;
  background-clip: text;
}
.box-pricing-hour {
  border-radius: 20px;
  padding: 20px;
  margin-top: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(to bottom, #ffffff00, #ffffff07);
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.box-pricing-hour:before {
  z-index: -1;
  content: "";
  opacity: 1;
  filter: blur(100px);
  pointer-events: none;
  background-color: #078fff;
  border-radius: 6249.94rem;
  width: 200px;
  bottom: -200px;
  left: 0px;
  margin: 0px auto;
  height: 200px;
  position: absolute;
}
.box-pricing-hour .box-content {
  flex: 1;
  min-width: 0px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.box-pricing-hour .text-content {
  flex: 1;
  min-width: 0px;
}
.box-pricing-hour img {
  width: 120px;
}
.box-pricing-hour .main-head {
  margin-bottom: 10px;
}
.box-pricing-hour .main-head .subtitle {
  font-size: 18px;
  font-weight: 600;
}
.box-pricing-hour .desc {
  color: var(--text);
  font-size: 14px;
}
@media (max-width: 991px) {
  .box-pricing {
    flex-direction: column;
    margin-top: 40px;
  }
  .box-pricing .pricing-item.featured {
    margin-top: 0px;
  }
  .box-pricing-hour .box-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section-pricing .list-info {
    display: flex;
    flex-direction: column;
  }
  .box-pricing-hour > .icon {
    display: none;
  }
}
.section-contact .form-box {
  max-width: 768px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(to bottom, #ffffff00, #ffffff07);
}
.text-danger {
  color: #ff4848 !important;
}
.label-text {
  margin-bottom: 5px;
  font-size: 14px;
}
.form-control {
  color: #fff;
  background: rgba(226, 232, 255, 0.1) !important;
  border: 1px solid rgba(226, 232, 255, 0.1) !important;
  border: 0px;
  height: 48px;
  font-size: 1rem;
  border-radius: 8px;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-control:focus {
  color: #fff;
  border-color: var(--primary) !important;
}
.check-action {
  position: relative;
  display: inline-flex;
  margin: 0px;
}
.check-action input {
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0;
  left: 0px;
  top: 0px;
  position: absolute;
  margin: 0px;
  cursor: pointer;
}
.check-action .name {
  position: relative;
  min-height: 22px;
  padding-left: 30px;
  gap: 5px;
}
.check-action .name:before {
  width: 20px;
  height: 20px;
  line-height: 16px;
  border-radius: 0px;
  text-align: center;
  flex-shrink: 0;
  font-family: "ap8";
  border: 1.5px solid var(--text);
  content: "";
  background: #fff;
  font-size: 12px;
  border-radius: 4px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.check-action input:checked + .name:before {
  color: #fff;
  border-color: var(--primary);
  content: "\e206";
  font-size: 14px;
  background-color: var(--primary);
}
.check-action input[type="checkbox"]:disabled + .name:before {
  background: #EBECF0;
}
.check-action input[type="checkbox"]:checked:disabled + .name:before {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.check-action input:disabled {
  cursor: not-allowed;
}
.check-action input:disabled + .name:before {
  opacity: 0.8;
}
.check-action input[type="radio"] + .name:before {
  border-radius: 50%;
}
.check-action input[type="radio"]:checked + .name:before {
  content: "";
  color: var(--primary);
  background: #fff;
  border-color: var(--primary);
}
.check-action input[type="radio"]:checked + .name:after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 5px;
  z-index: 2;
  left: 5px;
  bottom: 0px;
  background: var(--primary);
}
.check-action input[type="radio"]:disabled + .name {
  color: var(--text);
}
.check-action input[type="radio"]:disabled + .name:before {
  border-color: var(--text);
}
.check-action input[type="radio"]:disabled:checked + .name:before {
  border-color: var(--text);
  background: #fff;
  color: var(--text);
}
.check-action input[type="radio"]:disabled:checked + .name:after {
  background: var(--text);
}
.box-success {
  display: none;
}
.error {
  color: #ff4848 !important;
  font-size: 12px;
}
.invalid .form-control {
  border: 1px solid #ff4848 !important;
}
