:root {
  --mega-bg: #111827 !important;
  --mega-sidebar-bg: #1f2937;
  --mega-text-primary: #ffffff;
  --mega-text-secondary: #9ca3af;
  --mega-accent: #3b82f6;
  --mega-border: #374151;
  --mega-card-hover-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --mega-card-bg: #111827;
  --mega-card-bg-hover: #1f2937;
  --icon-bg-green: rgba(22, 163, 74, 0.1);
  --icon-color-green: #4ade80;
  --icon-bg-purple: rgba(147, 51, 234, 0.1);
  --icon-color-purple: #c084fc;
  --icon-bg-pink: rgba(219, 39, 119, 0.1);
  --icon-color-pink: #f472b6;
  --icon-bg-gold: rgba(202, 138, 4, 0.1);
  --icon-color-gold: #facc15;
  --icon-bg-blue: rgba(37, 99, 235, 0.1);
  --icon-color-blue: #60a5fa;
  --icon-bg-brown: rgba(194, 65, 12, 0.1);
  --icon-color-brown: #fb923c;
  --icon-bg-teal: rgba(13, 148, 136, 0.1);
  --icon-color-teal: #2dd4bf;
  --icon-bg-orange: rgba(234, 88, 12, 0.1);
  --icon-color-orange: #fb923c;
  --icon-bg-red: rgba(220, 38, 38, 0.1);
  --icon-color-red: #f87171;
  --icon-bg-cyan: rgba(8, 145, 178, 0.1);
  --icon-color-cyan: #22d3ee;
  --icon-bg-rose: rgba(225, 29, 72, 0.1);
  --icon-color-rose: #fb7185;
}
.navbar,
.main-header {
  background-color: var(--mega-bg) !important;
  border-bottom: 2px solid #1f2937 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.btn-custom-touch {
  background: var(--mega-accent);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  display: inline-block;
  line-height: 1.5;
}
.btn-custom-touch:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
.navbar .nav-link:hover {
  color: #ffffff !important;
}
.navbar .nav-item.mega-menu {
  position: static !important;
}
.main-header {
  position: relative;
  z-index: 1000 !important;
}
.main-header .navbar {
  position: relative;
  z-index: 1001 !important;
}
.nav-link.dropdown-toggle::after {
  transition: transform 0.1s ease;
  font-size: 1.2em !important;
  font-weight: bold !important;
  margin-left: 0.5em !important;
}
.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.mega-menu .dropdown-menu {
  width: 100vw;
  left: 50%;
  right: auto;
  top: 100%;
  margin-top: 0 !important;
  padding: 0;
  border: none;
  border: 1px solid var(--mega-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: var(--mega-bg);
  position: absolute;
  z-index: 10000 !important;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transform-origin: top center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega-menu .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-wrapper {
  display: flex;
  margin: 0 auto;
  min-height: 450px;
}
.mega-menu-content-section {
  flex: 0 0 320px;
  background: var(--mega-sidebar-bg);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--mega-border);
}
.mega-menu-content-section h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--mega-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}
.mega-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mega-text-secondary);
  margin-bottom: 32px;
}
.explore-link {
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  background: var(--mega-accent);
  padding: 14px 28px;
  border-radius: 50px;
  align-self: flex-start;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}
.explore-link:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
  color: white;
}
.mega-menu-nav-section {
  flex: 1;
  padding: 25px 30px;
  background: var(--mega-bg);
}
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.store-card {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--mega-card-bg);
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.store-card:hover {
  background: var(--mega-card-bg-hover);
  border-color: var(--mega-border);
  box-shadow: var(--mega-card-hover-shadow);
  transform: translateY(-2px);
}
.icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 18px;
  transition: transform 0.2s ease;
  margin-bottom: 0px !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.store-card:hover .icon-box {
  transform: scale(1.1);
}
.icon-green {
  color: var(--icon-color-green);
  background: var(--icon-bg-green);
}
.icon-purple {
  color: var(--icon-color-purple);
  background: var(--icon-bg-purple);
}
.icon-pink {
  color: var(--icon-color-pink);
  background: var(--icon-bg-pink);
}
.icon-gold {
  color: var(--icon-color-gold);
  background: var(--icon-bg-gold);
}
.icon-blue {
  color: var(--icon-color-blue);
  background: var(--icon-bg-blue);
}
.icon-brown {
  color: var(--icon-color-brown);
  background: var(--icon-bg-brown);
}
.icon-teal {
  color: var(--icon-color-teal);
  background: var(--icon-bg-teal);
}
.icon-orange {
  color: var(--icon-color-orange);
  background: var(--icon-bg-orange);
}
.icon-red {
  color: var(--icon-color-red);
  background: var(--icon-bg-red);
}
.icon-cyan {
  color: var(--icon-color-cyan);
  background: var(--icon-bg-cyan);
}
.icon-rose {
  color: var(--icon-color-rose);
  background: var(--icon-bg-rose);
}
.icon-green-dark {
  color: #34d399;
  background: var(--icon-bg-green);
}
.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}
.text-box .title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--mega-text-primary);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.text-box .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--mega-text-secondary);
  font-weight: 500;
  opacity: 0.9;
}
.dropdown-small .dropdown-menu {
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--mega-border);
  border-radius: 12px;
  box-shadow: var(--mega-shadow);
  background: var(--mega-bg);
  margin-top: 10px !important;
}
.dropdown-small .product-item {
  padding: 12px 16px !important;
  border-radius: 8px;
  display: block;
  text-decoration: none;
}
.dropdown-small .product-item:hover {
  background: var(--mega-sidebar-bg);
}
.dropdown-small .product-item .title {
  color: var(--mega-text-primary) !important;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-content-section {
    flex: 0 0 280px;
  }
}
@media (max-width: 991px) {
  .mega-menu .dropdown-menu {
    display: none !important;
  }
}
body {
  font-family: "Inter", sans-serif;
  size-adjust: 95%;
}
@font-face {
  font-family: "Inter", sans-serif;
  src: url("/fonts/fa-brands-400.woff2") format("woff2");
  font-display: swap;
}
.dropdown-grid.width-half {
  width: 345px;
}
.two-grid-col {
  grid-template-columns: 1fr 1fr;
}
.side-card-image .img-fluid {
  width: 100%;
  object-position: top right;
  object-fit: cover;
  border-radius: 10px !important;
}
.side-card-image.right .img-fluid {
  object-position: top left;
  width: 90%;
}
.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4,
p {
  color: rgb(29 32 38);
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
p {
  font-size: 1rem;
  line-height: 30px;
  color: rgb(0, 0, 0, 0.7);
}
.bg-white p,
.bg-white li,
.bg-white span {
  color: #464646;
  font-size: 1rem;
}
.single-service h3.h5 {
  font-size: 1rem;
  white-space: nowrap;
}
.main-wrapper {
  overflow: hidden;
  overflow-y: auto;
}
.feature-section {
  overflow-x: hidden;
}
.crypto-table tbody > tr:last-child {
  border: 0;
}
.crypto-table tbody > tr:last-child td {
  padding-bottom: 15px;
}
.crypto-table thead {
  background: rgb(255, 255, 255, 0.5);
  box-shadow: 0 0 10px #ccc;
  backdrop-filter: blur(15px);
}
.crypto-table tbody {
  color: #e15e5e;
  background: #fff;
}
.bg-dark .coin-price-change {
  margin: 0;
  color: #767676;
  padding: 0;
  display: flex;
  align-items: baseline;
  line-height: 24px;
}
.crypto-table tbody td {
  padding: 14px 18px 0;
  width: 33.3%;
  border-left: 1px solid #b7b8b8;
}
.crypto-table tbody > tr {
  border-bottom: 0;
}
.bg-dark .coin-price-change i {
  padding-right: 10px;
}
.ptb-30 {
  padding: 30px 0;
}
.ptb-180 {
  padding: 180px 0;
}
.mb-120 {
  margin-bottom: 120px;
}
.page-header h1 {
  text-transform: uppercase;
  text-shadow: 0 4px 10px #353535;
}
.feature-section .bg-dark {
  background-color: #eee !important;
  border-radius: 6px !important;
}
.p-lg-4 {
  padding: 1rem !important;
}
.section-heading h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.title-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.25;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.side-card-image {
  width: 85%;
}
.side-card-image.right {
  margin-left: auto;
}
.side-img {
  position: absolute;
  left: -14%;
  bottom: 40px;
  background: transparent;
  width: 55%;
}
.up-down-anime {
  animation: 10s upsdown-sm linear infinite;
}
.rotate-anime {
  animation: 8s rotate-animation linear infinite;
  width: 95%;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sign-up-in-section {
  min-height: calc(100vh - 15vh);
}
.crypto-table tbody td h3 {
  background: #fff;
  position: relative;
  left: -18px;
  padding: 6px 18px;
  width: 55%;
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: #2d2d2d;
  box-shadow: 5px 0 10px #e3e3e3;
}
.footer-top .row {
  position: relative;
  z-index: 1;
}
.promo-info .link-btn {
  padding: 6px 8px 6px 15px;
  color: #004dff;
}
.promo-info .link-btn:hover {
  color: #0c0faa;
}
.company-logo {
  height: 60px;
}
.story-grid {
  height: 526px;
}
.story-item {
  max-height: 260px;
}
.story-item .box-icon i {
  font-size: 42px;
  margin-bottom: 15px;
}
.story-item .box-icon.star i {
  font-size: 20px;
  margin-bottom: 24px;
}
.story-item h3 {
  font-size: 34px;
  letter-spacing: 0.05em;
  color: #0e3dc8;
}
.story-item h3 {
  font-size: 34px;
  letter-spacing: 0.05em;
  color: #111827;
  font-weight: 500;
}
.story-item h6 {
  color: #767676;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
.border-right {
  border-right: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-left {
  border-left: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.our-story-section ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.show {
  background: #fff;
}
.crypto-table thead th h4 {
  padding: 16px 20px;
  background: #fff;
  color: #141414;
  box-shadow: 0 0 10px #e6e6e6;
}
.card-benefits .single-pricing-wrap {
  background: rgba(23, 92, 255, 0.5);
  box-shadow: 0 0 10px #141414;
  height: 100%;
}
.individual-card {
  background: rgb(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 10px;
}
.individual-card .pricing-info {
  background: #fff;
  border-radius: 8px;
  padding: 12px 12px 1px;
}
.individual-card .pricing-header {
  padding-bottom: 32px;
  border-bottom: 0;
}
.action-btns .btn.btn-primary {
  font-size: 16px;
  font-weight: 600;
}
.custom-modal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 60%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 10;
}
.custom-modal-dialog {
  max-width: 420px;
  width: 100%;
  position: relative;
  background: rgb(255, 255, 255, 0.1);
  padding: 11px;
  border-radius: 5px;
  transform: scale(0);
}
.custom-modal-content {
  background: #f0f0f0;
  padding: 30px 30px;
  border-radius: 5px;
}
.requst-form .submit-btn {
  width: 100%;
  background: #0f57ff;
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: center;
  width: max-content;
  color: #fff;
  border-radius: 4px;
  margin: 20px auto 0;
}
.close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #fd2828;
  opacity: 1;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  line-height: 25px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}
.custom-modal {
  opacity: 0;
  visibility: hidden;
}
body.modal-open .custom-modal {
  opacity: 1;
  visibility: visible;
}
body.modal-open .custom-modal .custom-modal-dialog {
  transform: scale(1);
}
.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
  transition: all 0.5s;
}
.offcanvas,
.offcanvas-backdrop {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.offcanvas {
  transition: transform 0.3s cubic-bezier(0.82, 0.085, 0.395, 0.895) !important;
}
.footer-list li {
  width: 100%;
  display: flex;
  align-items: baseline;
  grid-gap: 12px;
  font-size: 14px;
}
.footer-list li a span {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-list li a:hover span {
  color: #004dff;
}
.requst-form .demo-field .form-control {
  border: 1px solid #e6e6e6;
  padding: 0.55rem 1rem;
}
.requst-form .demo-field .form-control:focus,
.requst-form .demo-field .form-control:hover {
  border: 1px solid #aaa9ff;
}
.choose-card {
  box-shadow: 0 0 5px #e6e6e6;
  border-radius: 6px;
  padding: 12px 10px;
  display: grid;
  grid-template-columns: 15% auto;
  grid-gap: 16px;
  align-items: center;
}
.choose-card .img-fluid.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}
.story-grid .story-item h2 {
  font-size: 3.4rem;
}
.cyber-about-count-box {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  padding: 25px !important;
  border-left: 6px solid #175cff;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
}
.cyber-about-count-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.cyber-about-count-box.left {
  border-left: none;
  border-right: 6px solid #175cff;
  flex-direction: row-reverse;
}
.cyber-about-count-box .card-icon {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 70px;
  width: 70px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  flex-shrink: 0;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.cyber-about-count-box.left .card-icon {
  right: auto;
  left: -35px;
}
.cyber-about-count-box .card-content {
  flex: 1;
}
.cyber-about-count-box.left .card-content {
  text-align: left;
}
.cyber-about-count-box h5 {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cyber-about-count-box p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
.cyber-about-count-box:not(.left) .card-content {
  padding-right: 40px;
}
.cyber-about-count-box.left .card-content {
  padding-left: 40px;
}
.ev-schedule .ev-schedule-btn .nav .nav-item .nav-link.active {
  background-color: #175cff;
}
.ev-schedule .circel-shape li:nth-child(3) {
  background-color: #175cff;
}
.ev-schedule .ev-schedule-btn .nav .nav-item .nav-link {
  min-width: 155px;
  width: 100%;
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.navbar-toggler {
  font-size: 26px;
  color: #02133b;
  font-weight: 800 !important;
  margin-right: 12px;
}
.offcanvas-header button.close-btn {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
.offcanvas-header button.close-btn i {
  line-height: 36px;
}
.mk-sb-form input[type="number"],
.mk-sb-form input[type="text"] {
  padding: 16px 21px;
  background-color: #fff;
  border: 0;
  font-size: 18px;
  width: 100%;
  outline: 0;
  border-radius: 4px 0 0 4px;
  font-weight: 500;
}
.mk-sb-form .mk-submit-btn {
  background-color: #175cff;
  width: 40%;
  height: 63.5px;
  padding: 0;
  display: grid;
  place-items: center;
}
span.mk-subtitle {
  background: rgba(75, 86, 255, 0.1);
}
.sc-cta-section .sc-cta-box {
  background: linear-gradient(101.61deg, #002d97 3.52%, #084ae3 97.73%);
  padding: 42px 90px;
}
.sc-cta-section::before {
  background-color: #fff;
}
.content-list li {
  margin-bottom: 10px;
  padding-left: 20px;
}
.dg-pricing-column .dg-pricing-amount {
  width: 95%;
  margin: 0;
  padding: 16px;
  background-color: #f2f2f2;
}
.dg-pricing-column .dg-feature-list {
  max-width: 80%;
}
.dg-pricing-column h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #002b8f;
}
.dg-pricing-column h2 {
  font-size: 2.5rem;
}
.dg-pricing-column .dg-pricing-amount p {
  font-size: 16px;
  margin-bottom: 6px;
  text-align: left;
  display: grid;
  grid-template-columns: 72% auto;
  border-bottom: 1px dashed #e1e1e1;
}
.dg-pricing-column .dg-pricing-amount p:last-child {
  border: 0;
  margin: 0;
}
.dg-pricing-column h6 {
  font-size: 1.2rem;
  color: #3e3e3e;
  text-transform: uppercase;
}
.hd-pricing-section {
  background-color: #f4f5ff;
  padding-bottom: 100px;
}
.hd-pricing-single::after {
  left: auto;
  right: 19%;
}
.btn.btn-primary.outline {
  border: 2px solid #175cff;
  background: transparent;
  color: #175cff !important;
}
.btn.btn-primary.outline:hover {
  color: #fff !important;
  background-color: #175cff;
}
.game-service-bg {
  background-image: linear-gradient(#dbdbdb, #f4f5ff);
}
.process-card {
  min-height: 481px;
}
.dots-line.first {
  margin-right: -28px;
  margin-left: -22px;
}
.game-service-icon {
  display: grid;
  place-items: center;
}
.content-list li::before {
  height: 7px;
  width: 7px;
  background: #039334;
  border-radius: 2px;
  transform: rotate(45deg);
}
.dg-pricing-section {
  background: linear-gradient(#fff, #f4f5ff);
}
.promo-single.retail-promo .h5 {
  font-size: 15px;
  line-height: 18px;
}
.faq-list.active {
  background-color: #fff;
  color: #0e45c6;
  border: 1px solid #3f6ad1 !important;
}
.faq-list-group {
  scrollbar-color: indigo;
}
.side-img.ecom {
  width: 28%;
  left: -8%;
}
.side-card-image.right .side-img.ecom {
  left: auto;
  right: -14px;
}
.hero-content-wrap h1 span {
}
.main-header .navbar-light .main-menu li a.nav-link {
  color: #010101;
  font-size: 17px;
  font-weight: 400;
  font-family: "Open sans", sans-serif;
  transition: color 0.4s ease;
}
.main-header .navbar-light .main-menu li a.nav-link:hover {
  color: #175cff;
}
.dropdown-grid.width-full.homepage-dropdown {
  border-radius: 12px;
  overflow: hidden;
}
.card-category .promo-info {
  text-align: left;
  padding-left: 16px;
}
.card-category .promo-single {
  padding: 2px;
  transition: 2s all;
}
.card-category .promo-single:hover {
  background-image: conic-gradient(
    from 83.41deg at 50.24% 50.24%,
    rgb(37, 193, 111) -36.7deg,
    rgb(239, 199, 94) 13.28deg,
    rgb(255, 156, 35) 57.71deg,
    rgb(255, 73, 44) 98.29deg,
    rgb(189, 99, 196) 135.43deg,
    rgb(133, 18, 224) 172.9deg,
    rgb(69, 164, 236) 207.19deg,
    rgb(89, 241, 245) 244.06deg,
    rgb(37, 193, 111) 291.15deg,
    rgb(37, 193, 111) 323.3deg,
    rgb(239, 199, 94) 373.28deg
  );
  transition: 2s all;
}
.card-category .promo-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin: 0;
}
.card-category .promo-single h3 span {
  transition: 0.5s ease;
  position: relative;
  padding-left: 6px;
  margin-left: 6px;
}
.card-category .promo-single h3 span::before {
  content: "";
  border-left: 10px;
  width: 14px;
  height: 2px;
  background: #464646;
  position: absolute;
  left: 0;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: 0.5s ease;
}
.card-category .promo-single:hover h3 span::before {
  opacity: 1;
  transition: 0.5s ease;
  width: 17px;
  background: #175cff;
}
.card-category .promo-single:hover h3 span {
  padding-left: 10px;
  color: #175cff;
}
.card-category .promo-single:hover h3 {
  color: #175cff;
}
.feature-tab-section .tab-content {
  background: #fed600;
}
.feature-tab-info h3 {
  font-size: 50px;
  font-weight: 500;
  font-family: "Open sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-tab-info p {
  font-size: 18px;
  line-height: 1.7;
  margin-left: 4px;
}
.feature-tab-section .tab-content .img-fluid {
  max-width: 516px;
}
.hero-content-wrap h5,
.hero-content-wrap .lead {
  font-size: 24px;
  font-family: "Open sans", sans-serif;
  font-weight: 500;
  line-height: 38px;
}
.hero-content-wrap h1 {
  letter-spacing: -0.02em;
  font:
    700 3.75rem / 4.5rem Roboto,
    "Helvetica Neue",
    "Arial Nova",
    sans-serif;
  line-height: 90px;
}
.promo-single.features-card .h5 {
  font-size: 18px;
  font-weight: 400;
  color: #404040;
}
.title-features {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Open sans", Sans-serif;
}
.promo-single.features-card,
.promo-single.features-card > div {
  border-radius: 6px;
}
.feature-aside {
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 12px;
}
.feature-aside h4 {
  font-size: 24px;
  background-color: #f8d22d;
  padding: 12px;
  color: #202020;
  text-align: center;
  margin: 0;
  border-radius: 12px 12px 0 0;
  font-family: "Open sans", sans-serif;
}
.feature-list {
  margin-bottom: 2px;
}
.nav-pills .list-link {
  color: #595959;
  position: relative;
  font-size: 16px;
  padding: 10px 22px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  max-height: 50px;
}
.nav-pills .list-link.active,
.nav-pills .list-link:hover {
  color: #282828;
  background: #fff;
  font-weight: 500;
  font-size: 17px;
  background-color: #d9f1ff;
}
.nav-pills .list-link .fa-chevron-right {
  font-size: 14px;
}
.nav-pills .list-link.active::before {
  opacity: 0;
}
.nav-pills .list-link::before {
  content: "";
  display: block;
  border-top: 26px solid transparent;
  border-left: 18px solid #d9f1ff;
  border-bottom: 26px solid transparent;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  opacity: 0;
}
.tab-content .content-title {
  font-size: 26px;
  padding: 17px 25px 14px;
  color: #0738ac;
  border-bottom: 1px solid #f8d22d;
  margin: 0 28px 16px;
  width: max-content;
  position: relative;
  background: #d9f1ff;
  border-radius: 0 0 12px 12px;
  font-family: "Open sans", sans-serif;
}
.tab-content .row h6 {
  font-size: 20px;
  font-family: "Open sans", sans-serif;
  margin-bottom: 12px;
}
.tab-content .row p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Open sans", sans-serif;
  line-height: 30px;
  width: 95%;
  color: #464646;
}
.main-content-card::before {
  content: "";
  position: absolute;
  left: -20px;
  height: 100%;
  border-right: 2px solid #53bfff;
  top: 0;
}
.feature-tab-section .tab-content > .tab-pane {
  height: auto;
}
.main-menu li.nav-item .dropdown-menu::before {
  width: 12px;
  height: 12px;
}
.dropdown-small .width-half {
  max-width: 225px;
}
.ev-schedule .ev-schedule-btn .nav .nav-item .nav-link.active img,
.ev-schedule .ev-schedule-btn .nav .nav-item .nav-link img.white {
  display: none;
}
.ev-schedule .ev-schedule-btn .nav .nav-item .nav-link.active img.white {
  display: inline-block;
}
.warehouse-img img {
  border-radius: 13px;
  background-color: #ffc300;
  padding: 2px;
}
.pick-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 23px;
  height: 100%;
  border-bottom: 5px solid #ccc;
  box-shadow: 0 5px 10px #dfdfdf;
  transition: 0.2s all;
  text-align: center;
}
.pick-card:hover {
  border-bottom: 5px solid #ffc300;
  transform: translateY(-3px);
  transition: 0.5s all;
}
.sticky-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.warehouse-features .pick-card .feature-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 0 10px #e6e6e6;
  padding: 12px;
  border-radius: 16px 0 0 0;
}
.warehouse-features .pack-text h5 {
  margin-bottom: 6px;
}
.warehouse-features .pack-text p {
  font-size: 15px;
  line-height: 24px;
}
.warehouse-features .features-card {
  min-height: 72px;
  max-height: 72px;
}
.warehouse-features .features-card > div {
  min-height: 68px;
  max-height: 72px;
}
.warehouse-features .features-card .h5 {
  font-size: 16px;
}
.warehouse-reports .report-card {
  background-color: #e6e6e6;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 156px;
  max-height: 156px;
  position: relative;
  transition: 0.2s all;
}
.warehouse-reports .report-card::before {
  content: "";
  background-color: #ffc300;
  width: 6px;
  height: 30%;
  position: absolute;
  top: 12px;
  left: 0px;
  border-radius: 0 12px 12px 0;
}
.warehouse-reports .report-card:hover {
  background-color: #ffc300;
}
.warehouse-reports .report-card:hover::before {
  background-color: #141414;
}
.warehouse-reports .report-card h5 {
  font-size: 20px;
  line-height: 31px;
  font-family: "Open sans", sans-serif;
  font-weight: 700;
}
.warehouse-reports .report-card p {
  display: none;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
.warehouse-reports .report-card:hover h5 {
  display: none;
}
.warehouse-reports .report-card:hover p {
  display: block;
}
.footer-social-premium {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-social-premium li {
  margin: 0 !important;
}
.footer-social-premium li a {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0b0e14;
  color: #ffffff !important;
  z-index: 1;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.footer-social-premium li a i {
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social-premium li a:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.footer-social-premium li a.soc-linkedin:hover {
  background: linear-gradient(45deg, #0077b5, #00a0dc);
}
.footer-social-premium li a.soc-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.footer-social-premium li a.soc-facebook:hover {
  background: linear-gradient(45deg, #1877f2, #3b5998);
}
.footer-social-premium li a.soc-youtube:hover {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}
.footer-social-premium li a.soc-linkedin {
  border-color: rgba(0, 119, 181, 0.3);
}
.footer-social-premium li a.soc-instagram {
  border-color: rgba(228, 64, 95, 0.3);
}
.footer-social-premium li a.soc-facebook {
  border-color: rgba(24, 119, 242, 0.3);
}
.footer-social-premium li a.soc-youtube {
  border-color: rgba(255, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .footer-bottom {
    padding-bottom: 90px !important;
  }
  .footer-social-container {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #0c0d19;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    width: auto;
    min-width: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-social-container .footer-social-premium {
    justify-content: center;
    gap: 15px;
    margin-top: 0 !important;
  }
  .footer-social-container .footer-social-premium li a {
    background: #000000 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
  }
}
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transform: none !important;
}
.core-values-section {
  position: relative;
  background-color: #f8f9fc;
}
.core-values-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  padding: 80px;
  margin: 0 auto;
  border: none;
  position: relative;
  overflow: hidden;
}
.core-values-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 50% 0%, rgba(9, 132, 227, 0.05), transparent 50%),
    radial-gradient(
      circle at 100% 50%,
      rgba(255, 71, 87, 0.03),
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(46, 213, 115, 0.03),
      transparent 50%
    );
  z-index: 0;
  pointer-events: none;
}
.core-values-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.core-values-gradient {
  background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 50%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.core-value-item {
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.core-value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(9, 132, 227, 0.2);
}
.core-value-icon {
  margin-bottom: 25px;
  display: inline-block;
}
.core-value-icon .icon-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}
.core-value-item.item-primary .icon-wrapper {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}
.core-value-item.item-green .icon-wrapper {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}
.core-value-item.item-orange .icon-wrapper {
  background: rgba(255, 121, 63, 0.1);
  color: #ff793f;
}
.core-value-item:hover .icon-wrapper {
  transform: scale(1.1);
}
.core-icon-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  z-index: 1;
  position: relative;
  transition: all 0.4s ease;
}
.core-value-heading {
  color: #2d3436;
  margin-bottom: 16px;
}
.core-value-text {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 0;
}
.core-value-btn {
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  background-color: #0984e3;
  border-color: #0984e3;
  transition: all 0.3s ease;
  color: #fff;
}
.core-value-btn:hover {
  background-color: #076aba;
  border-color: #076aba;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 132, 227, 0.2);
  color: #fff;
}
@media (max-width: 991px) {
  .core-values-card {
    padding: 50px 30px;
  }
  .core-values-title {
    font-size: 2.25rem;
  }
  .core-value-item {
    margin-bottom: 50px;
    text-align: center;
  }
  .core-value-icon .icon-wrapper {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .core-values-card {
    padding: 40px 20px;
    border-radius: 12px;
  }
  .core-value-item {
    text-align: center;
    margin-bottom: 40px;
  }
  .core-value-icon .icon-wrapper {
    justify-content: center;
    margin: 0 auto;
  }
  .core-values-title {
    font-size: 1.8rem;
  }
}
:root {
  --wcu-bg-dark: #020617;
  --wcu-card-bg: rgba(15, 23, 42, 0.6);
  --wcu-accent: #3b82f6;
  --wcu-text-white: #f8fafc;
  --wcu-text-gray: #94a3b8;
  --wcu-border: rgba(59, 130, 246, 0.2);
}
.wcu-section {
  background-color: var(--wcu-bg-dark);
  color: var(--wcu-text-white);
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 80px;
}
.wcu-hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-color: var(--wcu-bg-dark);
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 40%
    );
}
.wcu-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpath d='M50 0 L100 28.867 L100 86.602 L50 115.47 L0 86.602 L0 28.867 Z' fill='rgba(59, 130, 246, 0.04)' /%3E%3C/svg%3E")
    no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}
.wcu-shape.s1 {
  top: 10%;
  left: 5%;
  transform: rotate(15deg);
}
.wcu-shape.s2 {
  top: 55%;
  left: 25%;
  width: 280px;
  height: 280px;
  transform: rotate(-10deg);
  opacity: 0.6;
}
.wcu-shape.s3 {
  top: 5%;
  left: 60%;
  width: 350px;
  height: 350px;
  transform: rotate(25deg);
  opacity: 0.5;
}
.wcu-shape.s4 {
  top: 60%;
  left: 80%;
  width: 300px;
  height: 300px;
  transform: rotate(-15deg);
  opacity: 0.7;
}
.wcu-shape.s5 {
  top: 60%;
  left: 80%;
  width: 300px;
  height: 300px;
  transform: rotate(-15deg);
  opacity: 0.7;
}
.wcu-container {
  position: relative;
  z-index: 2;
}
.wcu-top-row {
  margin-bottom: 60px;
  align-items: center;
}
.wcu-label {
  color: var(--wcu-accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 15px;
  display: block;
}
.wcu-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 100%;
  color: #ffffff !important;
}
.wcu-intro-wrap {
  position: relative;
  padding-top: 20px;
}
.wcu-blue-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--wcu-accent) 0%, transparent 100%);
  margin-bottom: 30px;
  border-radius: 2px;
}
.wcu-description {
  color: var(--wcu-text-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.wcu-btn-learn {
  background: white;
  color: var(--wcu-bg-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.wcu-btn-learn:hover {
  transform: translateY(-3px);
  background: #f1f5f9;
}
.wcu-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.wcu-card {
  background: var(--wcu-card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--wcu-border);
  padding: 40px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  height: 100%;
}
.wcu-card:hover {
  border-color: var(--wcu-accent);
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.8);
}
.wcu-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  display: block;
  color: var(--wcu-text-white);
}
.wcu-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--wcu-text-white);
}
.wcu-card-text {
  color: var(--wcu-text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 991px) {
  .wcu-section {
    border-top-right-radius: 0;
  }
  .wcu-title {
    font-size: 2.1rem;
  }
  .wcu-top-row {
    text-align: center;
  }
  .wcu-title {
    max-width: 100%;
  }
  .wcu-blue-line {
    margin: 20px auto;
  }
}
.elevate-section {
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.elevate-header {
  text-align: center;
  margin-bottom: 70px;
}
.elevate-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1d2026;
  margin-bottom: 20px;
}
.elevate-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.elevate-feature-item {
  margin-bottom: 50px;
  transition: transform 0.3s ease;
}
.elevate-feature-item:hover {
  transform: translateY(-5px);
}
.elevate-feature-item .icon-wrap {
  margin-bottom: 15px;
  display: block;
  text-align: center;
}
.elevate-feature-item h5 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1d2026;
  margin-bottom: 12px;
  text-align: center;
}
.elevate-feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .feature-left {
    text-align: right;
  }
  .feature-right {
    text-align: left;
  }
}
.elevate-img-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.elevate-img-center::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -40%);
  width: 90%;
  height: 90%;
  z-index: 0;
  border-radius: 4px;
}
.elevate-img-center img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .elevate-header h2 {
    font-size: 2.1rem;
  }
  .elevate-feature-item {
    text-align: center;
    margin-bottom: 40px;
  }
  .elevate-img-center {
    margin-bottom: 40px;
  }
  .elevate-img-center::before {
    transform: translate(-50%, -50%);
  }
}
:root {
  --kb-font-main: "Outfit", "Inter", sans-serif;
  --kb-clr-conceptualise: #3b82f6;
  --kb-clr-design: #10b981;
  --kb-clr-development: #f43f5e;
  --kb-clr-review: #f59e0b;
  --kb-clr-launch: #8b5cf6;
  --kb-clr-maintenance: #fb923c;
  --kb-card-bg: #ffffff;
  --kb-card-shadow:
    0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 15px -5px rgba(0, 0, 0, 0.03);
  --kb-card-radius: 24px;
}
.kb-section {
  position: relative;
  background: #ffffff;
  font-family: var(--kb-font-main);
  padding: 100px 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kb-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 70%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 40%
    );
  filter: blur(80px);
  z-index: 0;
}
.kb-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 70%;
  height: 80%;
  background:
    radial-gradient(
      circle at 70% 80%,
      rgba(244, 63, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    );
  filter: blur(100px);
  z-index: 0;
}
.kb-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(244, 63, 94, 0.05) 0%,
    transparent 60%
  );
  filter: blur(80px);
  z-index: 0;
}
.kb-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
}
.kb-header {
  text-align: center;
  margin-bottom: 70px;
}
.kb-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.kb-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.kb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.kb-grid > a:nth-child(10n + 1) .kb-card {
  --current-glow: #3b82f6;
}
.kb-grid > a:nth-child(10n + 2) .kb-card {
  --current-glow: #10b981;
}
.kb-grid > a:nth-child(10n + 3) .kb-card {
  --current-glow: #f59e0b;
}
.kb-grid > a:nth-child(10n + 4) .kb-card {
  --current-glow: #f43f5e;
}
.kb-grid > a:nth-child(10n + 5) .kb-card {
  --current-glow: #8b5cf6;
}
.kb-grid > a:nth-child(10n + 6) .kb-card {
  --current-glow: #06b6d4;
}
.kb-grid > a:nth-child(10n + 7) .kb-card {
  --current-glow: #ec4899;
}
.kb-grid > a:nth-child(10n + 8) .kb-card {
  --current-glow: #f97316;
}
.kb-grid > a:nth-child(10n + 9) .kb-card {
  --current-glow: #84cc16;
}
.kb-grid > a:nth-child(10n + 10) .kb-card {
  --current-glow: #6366f1;
}
.kb-card {
  background: var(--kb-card-bg);
  border-radius: var(--kb-card-radius);
  padding: 30px 15px 30px 25px;
  text-align: center;
  box-shadow: var(--kb-card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.kb-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 6px;
  background: var(--current-glow);
  border-radius: 0 10px 10px 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.8;
  z-index: 5;
}
.kb-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.8s;
  z-index: 10;
  pointer-events: none;
}
.kb-card:hover::after {
  left: 150%;
}
.kb-card:hover::before {
  height: 100%;
  top: 0;
  width: 8px;
  opacity: 1;
}
.kb-card:hover {
  transform: translateY(-12px) scale(1.02) rotate(0.5deg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.05);
}
.kb-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes kbPulseGlow {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}
.kb-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--current-glow);
  opacity: 0.12;
  filter: blur(6px);
  transition: transform 0.4s ease;
  animation: kbPulseGlow 4s ease-in-out infinite;
}
.kb-card:hover .kb-icon-glow {
  transform: scale(1.4);
  opacity: 0.25;
  animation: none;
}
.kb-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px var(--current-glow)) brightness(1.1);
  opacity: 0.9;
  transition: all 0.4s ease;
}
.kb-card:hover img {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 25px var(--current-glow)) brightness(1.2);
}
.kb-card-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}
.kb-card-desc {
  display: none;
}
@keyframes kbFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kbFloatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.kb-card {
  animation: kbFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}
.kb-grid > a:nth-child(1) .kb-card {
  animation-delay: 0.1s;
}
.kb-grid > a:nth-child(2) .kb-card {
  animation-delay: 0.15s;
}
.kb-grid > a:nth-child(3) .kb-card {
  animation-delay: 0.2s;
}
.kb-grid > a:nth-child(4) .kb-card {
  animation-delay: 0.25s;
}
.kb-grid > a:nth-child(5) .kb-card {
  animation-delay: 0.3s;
}
.kb-grid > a:nth-child(6) .kb-card {
  animation-delay: 0.35s;
}
.kb-grid > a:nth-child(7) .kb-card {
  animation-delay: 0.4s;
}
.kb-grid > a:nth-child(8) .kb-card {
  animation-delay: 0.45s;
}
.kb-grid > a:nth-child(9) .kb-card {
  animation-delay: 0.5s;
}
.kb-grid > a:nth-child(10) .kb-card {
  animation-delay: 0.55s;
}
.kb-grid > a:nth-child(11) .kb-card {
  animation-delay: 0.6s;
}
.kb-grid > a:nth-child(12) .kb-card {
  animation-delay: 0.65s;
}
.kb-grid > a:nth-child(13) .kb-card {
  animation-delay: 0.7s;
}
.kb-grid > a:nth-child(14) .kb-card {
  animation-delay: 0.75s;
}
.kb-grid > a:nth-child(15) .kb-card {
  animation-delay: 0.8s;
}
.kb-card img {
  animation: kbFloatIcon 3s ease-in-out infinite;
}
.kb-grid > a:nth-child(odd) img {
  animation-delay: 0.5s;
}
.kb-grid > a:nth-child(3n) img {
  animation-delay: 1.2s;
}
@media (max-width: 1200px) {
  .kb-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .kb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .kb-section {
    padding: 60px 0;
  }
  .kb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .kb-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .kb-grid {
    grid-template-columns: 1fr;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;800;900&display=swap");
.testimonial-redesign {
  overflow: hidden;
}
.testimonial-heading-box {
  padding-right: 30px;
}
.testimonial-heading-box .sub-title {
  color: #4f46e5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.testimonial-heading-box p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}
.testimonial-grid-container {
  height: 600px;
  position: relative;
  overflow: hidden;
  background: aliceblue;
  border-radius: 5px;
  border: 1px solid aliceblue;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.anim-up {
  animation: slide-up 60s linear infinite;
}
.anim-down {
  animation: slide-down 60s linear infinite;
}
@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-33.33%);
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-33.33%);
  }
  100% {
    transform: translateY(0);
  }
}
.testimonial-card-v2 {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.testimonial-card-v2:hover {
  transform: scale(1.02);
}
.testimonial-card-v2.dark-card {
  background: #1f2937;
  color: #ffffff !important;
}
.testimonial-card-v2.dark-card h6,
.testimonial-card-v2.dark-card p {
  color: #ffffff !important;
}
.testimonial-card-v2 p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.author-meta-v2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-meta-v2 img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info-v2 h6 {
  margin-bottom: 2px;
  font-weight: 700;
}
.author-info-v2 small {
  color: #94a3b8;
  font-weight: 500;
}
.dark-card .author-info-v2 small {
  color: #9ca3af;
}
@media (max-width: 991px) {
  .testimonial-grid-container {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  .testimonial-column {
    animation-duration: 30s;
  }
}
.company-video-section {
  padding: 20px 0px 100px 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cv-header {
  margin-bottom: 50px;
}
.cv-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.cv-gradient-text {
  background: linear-gradient(90deg, #ff1b6b, #ff7e5f, #ffbf00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.cv-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 0 auto;
}
.cv-gradient-border {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(
    from 83.41deg at 50.24% 50.24%,
    rgb(37, 193, 111) -36.7deg,
    rgb(239, 199, 94) 13.28deg,
    rgb(255, 156, 35) 57.71deg,
    rgb(255, 73, 44) 98.29deg,
    rgb(189, 99, 196) 135.43deg,
    rgb(133, 18, 224) 172.9deg,
    rgb(69, 164, 236) 207.19deg,
    rgb(89, 241, 245) 244.06deg,
    rgb(37, 193, 111) 291.15deg,
    rgb(37, 193, 111) 323.3deg,
    rgb(239, 199, 94) 373.28deg
  );
  height: 100%;
  display: flex;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cv-gradient-border:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.cv-inner {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cv-gradient-border:hover .cv-img {
  transform: scale(1.08);
}
.cv-main-video {
  position: relative;
  height: 100%;
}
.cv-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  filter: saturate(1.1);
}
.cv-col-left,
.cv-col-right {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 20px;
}
.cv-col-center {
  height: 500px;
}
.cv-col-left .cv-gradient-border,
.cv-col-right .cv-gradient-border {
  height: auto;
  flex: 1;
  min-height: 0;
}
@media (max-width: 991px) {
  .company-video-section {
    padding: 60px 0;
  }
  .section-heading h2 {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }
  .cv-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 30px;
  }
  .cv-main-video {
    height: 240px;
    order: 2;
  }
  .cv-col-center {
    height: 300px;
    order: 1;
  }
  .cv-col-left {
    order: 1;
  }
  .cv-col-right {
    display: none;
  }
  .cv-col-left .cv-gradient-border {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 1.8rem !important;
  }
  .cv-col-left {
    flex-direction: column;
  }
}
.er360-features-section {
  padding: 80px 0;
  overflow: hidden;
}
.er360-tab-capsule-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: -35px;
  position: relative;
  z-index: 10;
}
.er360-feature-tabs-pill {
  background: #ffffff;
  padding: 10px;
  border-radius: 100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  display: inline-flex !important;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.er360-feature-tabs-pill .nav-item {
  margin: 0;
}
.er360-feature-tabs-pill .nav-link {
  border: none !important;
  background: transparent !important;
  color: #475569;
  border-radius: 100px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.er360-feature-tabs-pill .nav-link i {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.er360-feature-tabs-pill .nav-link:hover {
  color: #1e293b;
  background: #f1f5f9 !important;
}
.er360-feature-tabs-pill .nav-link.active {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  transform: scale(1.05);
}
.er360-glass-content-container {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
  border-radius: 40px;
  padding: 100px 60px 70px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 40px 80px rgba(30, 58, 138, 0.3);
  max-width: 1100px;
  margin: 0 auto;
}
.er360-glass-content-container::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: linear-gradient(
    225deg,
    rgba(6, 182, 212, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  backdrop-filter: blur(15px);
  border-radius: 50%;
  z-index: 1;
}
.er360-tab-pane {
  position: relative;
  z-index: 2;
}
.er360-feature-info-box h3 {
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.1;
}
.er360-feature-info-box p {
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}
.er360-feature-img {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
  border-radius: 24px;
  width: 100%;
}
.er360-premium-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 45px;
  background: #ffffff;
  color: #1e3a8a;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 19px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.er360-premium-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #f8fafc;
  color: #2563eb;
}
.er360-premium-btn i {
  margin-left: 12px;
}
.er360-tab-pane.fade {
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(20px);
}
.er360-tab-pane.fade.show {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .er360-glass-content-container {
    padding: 80px 40px 60px;
    border-radius: 30px;
  }
  .er360-feature-info-box h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .er360-tab-capsule-wrapper {
    margin-bottom: -30px;
    padding: 0 15px;
  }
  .er360-feature-tabs-pill {
    width: 100%;
    overflow-x: auto;
    padding: 8px;
    border-radius: 50px;
    scrollbar-width: none;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .er360-feature-tabs-pill::-webkit-scrollbar {
    display: none;
  }
  .er360-feature-tabs-pill .nav-item {
    flex: 0 0 auto;
  }
  .er360-feature-tabs-pill .nav-link {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }
  .er360-feature-tabs-pill .nav-link i {
    font-size: 20px;
  }
  .er360-feature-info-box {
    text-align: center;
    margin-top: 30px;
  }
  .er360-feature-info-box h3 {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
  .er360-feature-info-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
  .er360-premium-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
}
.er360-feature-grid {
  padding-top: 40px;
}
.er360-feature-card {
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: none;
  position: relative;
  overflow: hidden;
}
.er360-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.er360-card-purple {
  background-color: #ebd5ff;
}
.er360-card-peach {
  background-color: #ffead5;
}
.er360-card-blue {
  background-color: #d5f3ff;
}
.er360-card-badge {
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
  width: fit-content;
}
.er360-card-purple .er360-card-badge {
  color: #8b5cf6;
}
.er360-card-peach .er360-card-badge {
  color: #d97706;
}
.er360-card-blue .er360-card-badge {
  color: #0284c7;
}
.er360-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}
.er360-card-desc {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}
.er360-card-link {
  font-size: 18px;
  font-weight: 700;
  color: #7c3aed;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  transition: all 0.2s ease;
}
.er360-card-link:hover {
  gap: 12px;
}
.er360-card-img-box {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  margin-top: auto;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.er360-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.er360-feature-card:hover .er360-card-img-box img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .er360-feature-card {
    padding: 30px;
  }
  .er360-card-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1440px) {
  .side-card-image {
    width: 75%;
    margin: 0 auto;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .action-btns .btn-primary {
    padding: 3px 5px !important;
  }
  .footer-bottom .desk-view {
    display: block;
  }
  .footer-bottom .mobile-tab {
    display: none;
  }
  .tab-content > .tab-pane {
    height: calc(100vh + 8vh);
  }
  .main-header .navbar-light .main-menu li a.nav-link {
    font-size: 14px;
    padding: 0.8rem;
  }
  .action-btns .btn.btn-primary {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1366px) {
  .hero-content-wrap h1 {
    font:
      700 3.2rem / 4.2rem Roboto,
      "Helvetica Neue",
      "Arial Nova",
      sans-serif;
    line-height: 74px;
  }
  .hero-content-wrap h5,
  .hero-content-wrap .lead {
    font-size: 21px;
    line-height: 35px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .ptb-80 {
    padding: 60px 0;
  }
  .ptb-100 {
    padding: 70px 0;
  }
  .warehouse-picking .pick-card img {
    max-width: 240px;
  }
  .pick-card .pack-text h4 {
    font-size: 21px;
    margin-bottom: 4px;
  }
  .pick-card .pack-text p {
    font-size: 14px;
    line-height: 21px;
  }
  .warehouse-picking .row:nth-child(2) {
    max-width: 90%;
    margin: 0 auto;
  }
  .section-heading h2 {
    font-size: 2rem;
  }
  .warehouse-features .pick-card .pack-text p {
    font-size: 13px;
    line-height: 19px;
    padding-right: 21px;
  }
  .warehouse-features .pack-text h5 {
    margin-bottom: 4px;
    font-size: 18px;
  }
  .warehouse-features .features-card .h5 {
    font-size: 14px;
  }
  .warehouse-features .promo-icon img {
    width: 26px;
  }
  .warehouse-features .features-card {
    min-height: 67px;
    max-height: 67px;
  }
  .warehouse-features .features-card > div {
    min-height: 64px;
  }
  .card-category .promo-info {
    padding-left: 6px;
  }
  .warehouse-reports .report-card h5 {
    font-size: 16px;
    line-height: 24px;
    max-width: 90%;
  }
  .warehouse-reports .report-card p {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .p-lg-5 {
    padding: 1.5rem !important;
  }
  .display-6 {
    font-size: 2.2rem;
  }
  .lead {
    font-size: 1rem;
  }
  .nav-pills .list-link {
    font-size: 14px;
  }
  .nav-pills .list-link.active,
  .nav-pills .list-link:hover {
    font-size: 15px;
  }
  .feature-aside h4 {
    font-size: 21px;
  }
  .tab-content .content-title {
    font-size: 21px;
    padding: 14px 25px 10px;
  }
  .tab-content .row h6 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .tab-content .row p {
    font-size: 14px;
    line-height: 26px;
  }
  .warehouse-img h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .warehouse-imgul li h5 {
    font-size: 16px;
  }
  .warehouse-img ul li p {
    font-size: 13px;
    line-height: 21px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .section-heading p {
    font-size: 14px;
    padding: 0 40px;
    line-height: 23px;
  }
  .warehouse-picking .row:nth-child(2) {
    max-width: 100%;
    margin: auto;
  }
  .warehouse-picking .pick-card img {
    max-width: 195px;
  }
  .pick-card .pack-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .warehouse-features .pack-text h5 {
    font-size: 16px;
  }
  .warehouse-features .features-card > div {
    min-height: 63px;
    max-height: 63px;
  }
  .warehouse-reports .report-card {
    min-height: 145px;
  }
  .warehouse-reports .report-card h5 {
    font-size: 14px;
    line-height: 21px;
    max-width: 100%;
  }
  .warehouse-reports .report-card p {
    line-height: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .side-card-image {
    max-width: 60%;
    max-height: 100%;
    padding: 45px 0;
  }
  .single-service {
    margin: 0 !important;
  }
  .border-md-end-0 {
    border-right: 0 !important;
  }
  .feature-section .p-4 {
    padding: 0.65rem !important;
  }
  .rotate-anime {
    width: 75%;
  }
  .crypto-table tbody > tr:last-child td {
    border-radius: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .crypto-table tbody td h3 {
    width: 100%;
  }
  .border-md-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .border-md-end {
    border-right: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .border-md-left {
    border-left: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .sc-cta-right {
    display: none;
  }
  .sm-flex-reverse {
    flex-direction: column-reverse;
  }
  .game-service-wrapper {
    min-height: 414px;
  }
  .feature-tab-section .tab-content .img-fluid {
    max-width: 310px;
  }
  .feature-tab-info h3 {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .feature-tab-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 2px;
  }
  .hero-content-wrap h1 {
    font:
      700 2rem / 2rem Roboto,
      "Helvetica Neue",
      "Arial Nova",
      sans-serif;
    line-height: 48px;
  }
  .hero-content-wrap h5,
  .hero-content-wrap .lead {
    font-size: 19px;
    line-height: 32px;
  }
  .nav-pills .list-link.active::before {
    opacity: 1;
  }
  .feature-aside .nav-pills {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .feature-list {
    margin-bottom: 0;
  }
  .nav-pills .list-link {
    white-space: nowrap;
    border-right: 1px solid #d9f1ff;
  }
  .nav-pills .list-link i {
    display: none;
  }
  .feature-aside {
    border-radius: 0;
    box-shadow: none !important;
    border-bottom: 1px solid #a0dcff;
  }
  .tab-content .content-title {
    font-size: 18px;
    padding: 8px 25px 10px;
  }
  .pick-card {
    padding: 10px;
  }
  .warehouse-picking .pick-card img {
    max-width: 155px;
  }
  .pick-card .pack-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .pick-card .pack-text p {
    font-size: 13px;
  }
  .section-heading {
    margin-bottom: 18px;
  }
  .section-heading h2 {
    font-size: 1.5rem;
  }
  .warehouse-features .pick-card .pack-text p {
    margin-bottom: 4px;
  }
  .warehouse-reports .col-lg-5 {
    display: none;
  }
  .warehouse-reports .report-card {
    min-height: 156px;
  }
  .warehouse-reports .report-card h5 {
    font-size: 18px;
    line-height: 28px;
    max-width: 100%;
  }
  .warehouse-reports .report-card h5 {
    font-size: 18px;
    line-height: 28px;
  }
  .warehouse-reports .report-card p {
    line-height: 21px;
    font-size: 15px;
  }
  body,
  html {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }
  .main-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .container,
  .container-fluid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .announcement-scroll {
    max-width: 100% !important;
  }
  .announcement-item {
    padding: 0 1.5rem !important;
    font-size: 14px !important;
  }
  .faq-list {
    padding: 15px !important;
  }
  .faq-list .h5 {
    font-size: 16px !important;
  }
  @media only screen and (max-width: 991px) {
    .container,
    .container-fluid,
    .main-header,
    .navbar,
    .main-wrapper,
    body,
    html {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      overflow-x: hidden !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
  @media only screen and (max-width: 575px) {
    .section-heading,
    .promo-single,
    .about-header-section,
    .mobile-faq-stack {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
      box-sizing: border-box !important;
    }
    .hero-content-wrap h1 {
      font-size: 2rem !important;
      line-height: 1.3 !important;
    }
  }
  @media only screen and (max-width: 575px) {
    * {
      max-width: 100vw !important;
      box-sizing: border-box !important;
    }
    img,
    video,
    canvas,
    svg,
    iframe {
      max-width: 100% !important;
      height: auto !important;
    }
    .container,
    .container-fluid,
    .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
      width: 100% !important;
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    .row > [class*="col-"] {
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
    .company-logo {
      max-width: 140px !important;
    }
    .navbar-toggler {
      margin-right: 0 !important;
      padding: 4px 8px !important;
    }
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-service {
    border: 0 !important;
    border-bottom: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .side-card-image .img-fluid {
    object-fit: fill;
  }
}
@media only screen and (max-width: 767px) {
  .company-info-wrap {
    text-align: center;
    margin-bottom: 26px;
  }
  .company-logo {
    height: 52px;
  }
  .integration-details {
    text-align: center;
  }
  .feature-tab-section {
    text-align: center;
  }
  .feature-tab-list-2 {
    justify-content: center !important;
  }
  .feature-tab-info {
    width: 90%;
    margin: 0 auto;
  }
  .hero-content-wrap h1 {
    font:
      700 2.6rem / 3rem Roboto,
      "Helvetica Neue",
      "Arial Nova",
      sans-serif;
    line-height: 60px;
    text-align: center;
  }
  .hero-content-wrap h5,
  .hero-content-wrap .lead {
    font-size: 15px;
    line-height: 28px;
  }
  .hero-content-wrap {
    text-align: center;
  }
  .warehouse-img img {
    margin-bottom: 18px;
  }
  .warehouse-picking .pick-card {
    display: flex;
  }
  .warehouse-picking .pick-card img {
    max-width: 125px;
  }
  .warehouse-picking .pack-text {
    text-align: left;
    margin-left: 10px;
  }
  .pick-card .pack-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .pick-card .pack-text p {
    font-size: 14px;
  }
  .warehouse-features .card-category {
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .side-card-image {
    max-width: 80%;
  }
  .feature-section .row {
    margin: 0;
  }
  h2,
  .section-heading h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-align: center;
  }
  p {
    font-size: 14px;
    line-height: 24px;
  }
  .feature-section .p-4 {
    padding: 0.4rem !important;
  }
  .p-5 {
    padding: 1.5rem !important;
  }
  .feature-section h2,
  .feature-section p {
    text-align: center;
  }
  .feature-section .two-grid-col {
    grid-template-columns: 1fr;
  }
  .rotate-anime {
    width: 95%;
  }
  .list-two-col li {
    text-align: center;
    margin: 0 0 12px 0;
    padding: 12px;
    min-height: 190px;
    height: 100%;
    max-height: 295px;
    border: 2px solid #f7f7f7;
  }
  i.fas.text-primary {
    color: #1054f9 !important;
    margin: 5px auto;
  }
  .list-two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    margin-bottom: 32px;
  }
  .two-grid-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .border-sm-end {
    border-right: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .border-sm-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style)
      var(--bs-border-color) !important;
  }
  .pt-60 {
    padding-top: 0;
  }
  .ptb-120 {
    padding: 40px 0;
  }
  .ptb-100 {
    padding: 40px 0;
  }
  .pb-120 {
    padding-bottom: 40px;
  }
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  .table-responsive.rounded {
    margin: 0 10px;
  }
  .feature-grid {
    grid-gap: 12px;
  }
  .col-sm-6 {
    width: 51%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .feature-card {
    text-align: center;
    padding: 12px !important;
  }
  .feature-card .icon-box {
    margin: 15px;
    width: 55px;
    height: 55px;
  }
  .feature-content p {
    font-size: 14px;
    line-height: 24px;
    display: flex;
    padding-bottom: 10px;
  }
  .icon-box i.fas.text-primary {
    margin: 0;
  }
  .mb-120 {
    margin-bottom: 20px;
  }
  .crypto-table tbody > tr:last-child td:first-child {
    border-radius: 0 0 0px 10px;
  }
  .crypto-table tbody > tr:last-child td:last-child {
    border-radius: 0 0 10px 0px;
  }
  .footer-single-col h3,
  .footer-single-col .h3 {
    margin: 0;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 4px;
    position: relative;
  }
  h3.footer-menu-title::after,
  h3.footer-menu-title.tow::after,
  h3.footer-menu-title.three::after {
    content: "";
    border-right: 2px solid #515151;
    border-bottom: 2px solid #515151;
    width: 11px;
    height: 11px;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    transition: 0.5s all;
    top: 13px;
  }
  h3.footer-menu-title.rotate::after,
  h3.footer-menu-title.two.rotate::after,
  h3.footer-menu-title.three.rotate::after {
    transform: rotate(-135deg);
    border-color: #3f89c3;
    top: 17px;
  }
  .footer-single-col .footer-list {
    background: #fff;
    opacity: 0;
    height: 0;
    margin: 0;
    transition: 0.5s all;
    visibility: hidden;
    margin-left: 14px;
  }
  .footer-single-col .footer-list.show,
  .footer-single-col .footer-list.two.show,
  .footer-single-col .footer-list.three.show {
    opacity: 1;
    height: auto;
    margin-bottom: 1rem;
    visibility: visible;
  }
  .footer-top .mt-4 {
    margin-top: 0.5rem !important;
  }
  .text-center-mob {
    text-align: center;
  }
  .sm-mx-auto {
    margin: 0 auto;
  }
  .footer-top.bg-dark .footer-menu-title {
    background: #fff;
    color: #241e6f;
  }
  .footer-top.bg-dark .footer-menu-title::after {
    border-color: #241e6f;
  }
  .footer-top.bg-dark .footer-list {
    background: transparent;
  }
  .copyright-text {
    text-align: center;
  }
  .footer-top.ptb-120 {
    padding-bottom: 15px;
    overflow: hidden;
  }
  .crypto-table tbody td,
  .bg-dark .coin-price-change {
    width: 100%;
    display: block;
  }
  .story-item h3 {
    font-size: 26px;
  }
  .story-item .box-icon i {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .story-item h6 {
    font-size: 14px;
    line-height: 22px;
  }
  .story-grid {
    height: 388px;
  }
  .story-item .box-icon.star i {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .mt-lg-0 {
    margin-top: 1rem !important;
  }
  .feature-tab-list-2 {
    justify-content: center !important;
  }
  .min-vh-100 {
    min-height: 40vh !important;
  }
  .hero-section .animated-img-wrap {
    display: none;
  }
  .hero-content-wrap h1 {
    font-size: 26px;
    margin: 16px;
    font-weight: 700 !important;
    line-height: 36px;
  }
  .border-sm-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-sm-left-0 {
    border-left: 0 !important;
  }
  .promo-card-wrap ul li {
    display: flex;
    align-items: baseline;
  }
  .choose-card h5 {
    font-size: 1rem;
  }
  .shadow-mob {
    box-shadow: none;
  }
  .ev-schedule .single-ev ul {
    grid-template-columns: 1fr;
  }
  .ev-schedule .single-ev ul li {
    border: 0;
    min-height: auto;
    text-align: left;
  }
  .sc-cta-section .sc-cta-box {
    padding: 42px 40px;
    text-align: center;
  }
  .mk-sb-form input[type="number"],
  .mk-sb-form input[type="text"] {
    padding: 14px 21px;
    border-radius: 4px;
  }
  .mk-sb-form .mk-submit-btn {
    width: 40%;
    border-radius: 4px;
    margin: 0 auto;
    height: 58px;
  }
  .game-service-wrapper {
    min-height: 324px;
    text-align: center;
  }
  .px-sm-2 {
    padding: 0 20px !important;
  }
  .pb-80 {
    padding-bottom: 20px;
  }
  .process-card {
    min-height: auto;
  }
  .game-service-icon {
    margin: 0 auto;
  }
  .hd-pricing-single .row {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .hd-pricing-single ul.hd-pricing-features {
    text-align: left;
  }
  .img-card-contents p {
    text-align: left;
  }
  .mob-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-content-wrap .lead br {
    display: none;
  }
  .promo-section .card-category {
    display: grid;
    grid-template-columns: repeat(1, auto);
    padding: 0 6px;
    grid-row-gap: 14px;
  }
  .card-category .col-lg-3.col-md-6 {
    padding: 0 8px;
  }
  .card-category .mb-4 {
    margin-bottom: 0 !important;
  }
  .card-category .promo-single {
    padding: 2px !important;
    min-height: 112px;
    max-height: 112px;
    max-width: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .promo-section .promo-icon {
    max-width: 32px;
    max-height: 32px;
  }
  .promo-section .promo-icon img {
    width: 25px;
    height: auto;
  }
  .fa-2x {
    font-size: 1em;
  }
  .card-category .promo-single .h5 {
    font-size: 16px;
    margin: 0 0 4px !important;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-top: 4px !important;
  }
  .promo-info .link-btn {
    padding: 0;
    font-size: 12px;
    position: absolute;
    left: 15px;
    bottom: 12px;
    display: none;
  }
  .mx-2 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .feature-tab-info {
    margin-top: 18px;
  }
  .feature-content-wrap {
    margin-top: 0;
  }
  .me-4 {
    margin-right: 1rem !important;
  }
  .subscribe-form .btn-primary {
    padding: 0 10px;
    text-wrap: wrap;
    line-height: 18px;
    font-family: "inter", sans-serif;
  }
  .action-btns .btn-primary {
    padding: 10px 18px;
  }
  .copyright-text span {
    display: block;
  }
  .sticky-header {
    padding: 0px 0;
    min-height: 60px;
  }
  .promo-info.pb-3 {
    padding-bottom: 0 !important;
  }
  .copyright-text span b {
    display: none;
  }
  .footer-single-col p.card-desc {
    font-size: 15px;
    word-break: keep-all;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 13px;
    background: rgba(36, 30, 111, 0.3);
  }
  .help-desk-content div {
    justify-content: center;
  }
  .p-3 {
    padding: 0.5rem !important;
  }
  .card-category .promo-info {
    padding-left: 8px;
    overflow: hidden;
  }
  .card-category .promo-info p {
    font-size: 13px;
    line-height: 20px;
  }
  .card-category .promo-single h3 span {
    margin-left: 10px;
  }
  .card-category .promo-single h3 span i {
    font-size: 13px;
  }
  .card-category .promo-single h3 span::before {
    top: 51%;
  }
  .hero-content-wrap h5,
  .hero-content-wrap .lead {
    font-size: 16px;
  }
  .hero-content-wrap {
    max-width: 352px;
    margin: 0 auto;
  }
  .hero-section .container > div {
    display: block;
  }
  .tab-content > .tab-pane {
    height: auto;
    border-radius: 0 0 1rem 1rem !important;
    border: 1px solid #a0dcff;
    border-top: 0;
  }
  .tab-content .content-title {
    display: none;
  }
  .sign-up-in-section .card-category .promo-single {
    min-height: initial;
    border-top: none;
  }
  .sign-up-in-section .card-category .promo-single h3 span::before {
    top: 49.3%;
  }
  .feature-aside h4 {
    display: none;
  }
  .feature-aside .nav-pills {
    border: 1px solid #a0dcff;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
  }
  .main-content-card::before {
    left: -24px;
  }
  .warehouse-img h2 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .warehouse-img ul {
    text-align: center;
  }
  .warehouse-imgul li h5 {
    font-size: 18px;
  }
  .ptb-80 {
    padding: 50px 0;
  }
  h2,
  .section-heading h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .section-heading p {
    padding: 0 8px;
  }
  .warehouse-picking .pick-card img {
    max-width: 95px;
  }
  .warehouse-picking .pack-text {
    margin-left: 6px;
    margin-top: 0 !important;
  }
  .pick-card .pack-text h4 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .warehouse-features .row:nth-child(2) {
    justify-content: center;
  }
  .warehouse-features .col-6,
  .warehouse-features .col-12 {
    width: 100%;
    margin-bottom: 12px !important;
    padding: 0 5px !important;
  }
  .col-xs-12 {
    width: 100%;
  }
  .warehouse-reports .row {
    justify-content: center;
  }
  .warehouse-reports .report-card {
    min-height: 120px;
  }
  .warehouse-reports .report-card p {
    line-height: 21px;
    font-size: 15px;
  }
}
.footer-section p {
  color: #d1d5db !important;
}
.footer-section a {
  color: #9ca3af !important;
}
.footer-section a:hover {
  color: #ffffff !important;
}
