@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700|Give+You+Glory);

@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

:root {
  --primary: #00ced1;
  --bgblue: #1a00e2;
  --greytext: #333333;
  --ft-bg: #1e6eff;
  --ft-text: #ffffff;
  --ft-muted: #fff;
  --ft-border: rgba(255, 255, 255, 0.2);
  --cbx-blue: #1e6eff;
  --cbx-overlay: rgba(30, 110, 255, 0.85);
  --cbx-light-bg: #f5f8ff;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

#wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
section {
  margin-bottom: 3rem;
}

header {
  background: transparent;
  width: 100%;
  border: 0;
  z-index: 99;
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.login {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.get-started {
  background: linear-gradient(135deg, #6a5cff, #4b3bff);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    white 0%,
    white 30%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.hero p {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ===== SEARCH CARD ===== */
.search-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.field {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  gap: 6px;
  padding: 12px;
  background-color: #f5f5f7;
}
.field-name {
  text-align: left;
  font-size: 14px;
  border-bottom: 2px solid var(--primary);
  width: fit-content;
  font-weight: bold;
  color: #000;
}
.fa-location-dot {
  color: var(--primary);
  font-size: 14px;
}
.field label {
  font-size: 12px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.field input {
  width: 100%;
  font-size: 16px; 
  font-weight: bold; 
  letter-spacing: 2px; 
  outline: none;
  border: none;
  background-color: transparent;
}


.field:focus-within {
  border-color: var(--primary); 
  box-shadow: 0 0 0 2px rgba(0, 206, 209, 0.5); 
}

.row {
  display: flex;
  gap: 15px;
}

.row .field {
  flex: 1;
}

.search-btn {
  margin-top: 15px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #00ced1, #20b2aa);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.search-btn:hover {
  transform: translateY(5px);
}

.top-bar-PC {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  flex-wrap: wrap;
  font-size: 12px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-right .socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.3s ease;
}

.socials a:hover {
  background: #e0e0e0;
}

.divider {
  width: 1px;
  height: 18px;
  background: #ccc;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1rem;
  margin-right: 1rem;
}

.nav-item-cover {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item-cover li {
  list-style: none;
  font-family: "Open Sans", sans-serif;
}

.nav-item-cover li a {
  text-decoration: none;
  color: #000;
}

.nav-item-cover li a:hover {
  color: #333333;
  border-bottom: 2px solid #000;
  cursor: pointer;
}

.nav-item-cover .nav-item:last-child a {
  color: white !important;
}

.option-contact {
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px 10px 15px;
  font-weight: 500;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Added transition */
}

.option-contact:hover {
  background-color: #00a8aa; /* Slightly darker shade for hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow on hover */
  cursor: pointer;
}

.far-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.far-left i {
  color: #124076;
}

.far-left i:hover {
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex; /* Changed from none to flex */
  flex-direction: column; /* Added for correct layout */
  align-items: center; /* Added for correct layout */
  padding: 0.62rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.mobile-nav-cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  background-color: #fff;
  height: 60px;
  width: 100%;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.nu-btn {
  background: #0b4db8;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease; /* Added for smooth transitions */
}

.nu-btn:hover {
  transform: translateY(-3px); /* Subtle lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  background: #083c93; /* Slightly darker background on hover */
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  width: 100%;
  padding: 1rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #eee;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu li {
  list-style: none;
}

.mobile-menu li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  gap: 0.75rem;
  transition: background 0.2s;
}

.mobile-menu li a:hover {
  background-color: #f2f2f2;
}

.fa-bars {
  color: #000;
}

.first-about-icon > i,
.second-about-icon > i {
  font-size: 16px;
  color: #124076;
}
.under-submit-track {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  cursor: pointer;
}
.under-submit-track p:nth-child(1) {
  font-size: 12px;
  color: #000;
  font-weight: bold;
  margin: 0;
}
.under-submit-track p:nth-child(2) {
  font-size: 12px;
  color: grey;
  margin: 0;
}
.sample-tracking-code {
  font-size: 14px;
  margin-top: 20px;
}
.sample-tracking-code p span {
  font-weight: 600;
  color: #000;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #404048;
}

/*==================================
* Bootstrap grid tweaks
*===================================*/

.blog-style {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
}

.blog-style h1 {
  margin-bottom: 50px;
}

/* Remove space from columns */

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutter [class*="col-"]:not(:first-child),
.row.no-gutter [class*="col-"]:not(:last-child) {
  padding-right: 0;
  padding-left: 0;
}

.logos-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.logos-box {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.logos-box img {
  height: 50px;
  flex-shrink: 0;
}

.btn-secondary {
  color: #373a3c;
  background-color: rgba(252, 251, 249, 0.68);
  border-color: #eaebeb;
}

.btn-purple {
  color: #eaebeb;
  background-color: #5c4ac7;
  border-color: #eaebeb;
}

.btn-purple:hover {
  color: #eaebeb;
  background-color: #4e3fa7;
  border-color: #eaebeb;
}

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

.primary-color {
  color: #5c4ac7;
}
.info-equity {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 100px;
}
.equity h1 {
  color: #fff;
  padding-bottom: 10px;
  font-size: 40px;
}
.equity {
  flex: 1;
}
.equity p:first-of-type {
  font-weight: 600;
  color: #f3f3f3;
}
.equity p:nth-of-type(2) {
  font-size: 12px;
  color: #ddd;
}
/* ===============================
FOOTER 
================================ */

.ft-footer {
  background: var(--ft-bg);
  color: var(--ft-text);
}

.ft-footer-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 2.5rem 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.logo-svg {
  width: 300px; /* default */
  height: auto; /* keep aspect ratio */
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.ft-description {
  color: var(--ft-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.ft-socials {
  display: flex;
  gap: 18px;
}

.ft-socials a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.8;
}
.ft-socials img {
  color: #fff;
  width: 20px;
  height: 20px;
}

.ft-contact p {
  margin-bottom: 18px;
  color: var(--ft-muted);
}

.ft-newsletter h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.ft-newsletter p {
  color: var(--ft-muted);
  margin-bottom: 28px;
}

.ft-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-form input {
  flex: 1;
  width: clamp(200px, 50vw, 420px);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--ft-border);
  background: transparent;
  color: white;
}

.ft-form input::placeholder {
  color: var(--ft-muted);
}

.ft-form button {
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: white;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease; /* Added for smooth transitions */
}

.ft-form button:hover {
  transform: translateY(-3px); /* Subtle lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  background: #000; /* Inverted background on hover */
  color: #fff; /* Inverted text color on hover */
}

.ft-footer-bottom {
  border-top: 1px solid var(--ft-border);
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.ft-footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ft-footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.ft-copy {
  color: var(--ft-muted);
  font-size: 12px;
  line-height: 1.8;
}

.nav-fixed {
  position: fixed;
  width: 100%;
  z-index: 10;
}

.navbar-dark .navbar-toggler {
  background-image: none;
  border-color: transparent;
}

/* ------  FREQ QUESTIONS ------- */
.question {
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.question div {
  margin-right: 60px;
}
.plus-freq {
  width: 17px;
  height: 17px;
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 50px;
}
.minus-freq {
  width: 17px;
  height: 17px;
  display: none; /* Hide the answer by default */
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 50px;
}
.question-title {
  font-weight: 600;
  font-size: 14px;
}

.answer {
  display: none; /* Hide the answer by default */
  padding: 10px;
  font-size: 13px;
  color: var(--greytext);
  margin-bottom: 20px;
  margin-right: 70px;
  text-align: left;
}
.faq-item.active .answer {
  display: block; /* Show the answer when active */
}
.faq-item.active .minus-freq {
  display: block; /* Show the answer when active */
}
.faq-item.active .plus-freq {
  display: none; /* Show the answer when active */
}
.faq-item.active .line-que-neutral {
  display: block; /* Show the answer when active */
}
.faq-item.active .line-que {
  display: none; /* Show the answer when active */
}
.faq-item {
  margin-bottom: 10px;
  border-radius: 5px;
}

.line-que {
  border: none;
  height: 0.5px;
  width: 90%;
  background-color: #959d97;
  margin-top: 10px;
  margin-left: 10px;
}

.freq {
  margin-top: 50px;
  margin-bottom: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.freq-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
}

.freq-left h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.freq-left p {
  color: var(--greytext);
  font-size: 14px;
}
.que-name {
  font-size: 14px;
  font-weight: 500;
}
.freq-right {
  width: 60%;
}

.line-que-neutral {
  display: none;
  border: none;
  height: 0.5px;
  width: 90%;
  background-color: var(--oladblue);
  margin-top: 10px;
  margin-left: 10px;
}

/* START CARD */
.newway-chose-us {
  display: flex;
  width: 100%;
  background-color: #1f1f1f;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
}
.newway-chose-us-left {
  width: 50%;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newway-chose-us-left h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
}
.newway-chose-us-right {
  width: 50%;
}
.newway-chose-us-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.newway-chose-us-left p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  color: #b0b0b0;
}

.newway-chose-us-left > p {
  margin-right: 0;
  margin-bottom: 20px;
}

.contact-us div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-us h1 {
  font-size: 30px;
}
.contact-us div button {
  background-color: #124076;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border: none;
  padding: 15px 20px 15px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
}
.contact-us div button:hover {
  background-color: #1556a0;
}

.Services-box {
  overflow: hidden;
  margin-top: 50px;
}
.worldwide {
  background-color: #0045e5;
  overflow: hidden;
  padding-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.worldwide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.world-wide-top {
  padding: 20px;
  color: white;
}

.world-wide-top p {
  font-size: 12px;
}
.world-wide-top img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 500px;
}
.services-img img {
  object-fit: cover;
  object-position: center;
  width: 1200px;
  height: 400px;
}

.services-box-headline {
  display: flex;
}
.services-box-headline h2 {
  flex: 1;
}
.services-box-headline p {
  flex: 1;
  font-size: 12px;
  max-width: 700px;
}
.box-services-cover {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.box-services div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.box-services div p {
  font-size: 16px;
}
.Services-box button {
  background-color: #124076;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 15px;
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
}
.why-choose-us h1 {
  font-size: 30px;
}
.company-articles {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-articles a {
  font-size: 12px;
  color: #0e46a3;
}

.why-choose-us {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.cover-choose {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cover-choose div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  max-width: 350px;
}
.cover-choose div p {
  font-size: 12px;
  color: grey;
}
.cover-choose div h6 {
  font-size: 16px;
  margin: 10px 0 10px 0;
  padding: 0;
}
.cover-choose div a {
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  color: #0e46a3;
}
.cover-choose div a:hover {
  font-size: 15px;
}
.inner-newway-service p {
  margin: 0;
  color: #b0b0b0;
}
.inner-newway-service {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #2f2f2f;
  padding: 5px 5px;
  border-radius: 10px;
  margin: 0 20px 0 0;
}
.inner-newway-service:hover {
  background-color: #147cc6;
}
.newway-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inner-newway-service p > span {
  font-weight: bold;
  color: #e0e0e0;
}
.choose-us-icon {
  font-size: 30px;
  padding: 10px;
  border-radius: 10px;
}
.newway-icon {
  border-radius: 10px;
}
.newway-icon i {
  font-size: 25px;
  background-color: #484848;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.newway-icon i:hover {
  background-color: #147cc6;
}
.img-base img {
  max-height: 210px;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 5px;
}

.track-style {
  background-color: #f2f2f2;
  padding-top: 15%;
  /* padding-bottom: 10%; */
  text-align: center;
  padding-bottom: 20px;
}
.track-style-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.track-style-inner h1 {
  padding-top: 20px;
  color: black;
}

.track-id-page {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  color: #000;
}
.bold-p {
  font-weight: 600;
}
.delivery-intransit {
  display: flex;
  align-items: center;
  gap: 5px;
}

.headroom--pinned {
  display: block;
}

.headroom--unpinned {
  display: none;
}

.navbar-fixed-top {
  position: fixed;
}

.navbar-toggler {
  padding: 4px 0;
  font-size: 1.25rem;
  line-height: 1;
  background: 0 0;
  border: 1px solid transparent;
  color: #5c4ac7;
  border-radius: 2px;
}

/********* top links part ***********/

.top-links {
  padding: 15px 0;
  border-bottom: 1px solid #eaebeb;
}

.top-links ul {
  margin-bottom: 0;
}

.link-item a {
  font-size: 12px;
  color: #414551;
}

.link-item.active span {
  background-color: #5c4ac7;
  color: #fff;
}

.links {
  display: block;
}

.links span {
  border: 1px solid #eaebeb;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  color: #3a3e47;
  font-weight: 600;
  display: inline-block;
  margin-right: 18px;
  text-align: center;
  line-height: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.links li:hover span {
  background-color: #e8500e;
  color: #fff;
}

/* ==========================
*   Hero
============================*/

/* ==========================
*   TRACKING
============================*/

.track-cover {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.the-input-cover i {
  color: var(--primary);
  margin-left: 10px;
}
.the-input-cover {
  background-color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  font-size: 15px;
}
.track-input-pc {
  border: none;
  outline: none;
  caret-color: black;
  font-family: monospace;
  width: 100%;
  padding: 15px;
  background-color: #f5f5f7;
}
.track-cover form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 270px;
  height: 200px;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
}

.track-cover form input {
  outline: none;
}

.track-input {
  max-height: 50px;
  max-width: 250px;
  border: none;
  outline: none;
  border-radius: 5px;
  caret-color: black;
  font-family: monospace;
  padding: 20px;
  font-size: 18px;
}

.submit-track-pc {
  padding: 15px 20px 15px 20px;
  border: none;
  color: #fff;
  font-weight: 600;
  background-color: transparent;
}
.submit-track-pc:hover {
  cursor: pointer;
}
.cover-submit-track-pc {
  background-color: var(--primary);
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: background-color 0.3s;
}
.cover-submit-track-pc:hover {
  background-color: #00b6ba;
  cursor: pointer;
}
.cover-submit-track-pc i {
  margin-right: 20px;
  color: #fff;
}
.Track-pc {
  margin-top: 20px;
}
.submit-track {
  padding: 20px 25px 20px 25px;
  border-radius: 5px;
  border: none;
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.submit-track:hover {
  cursor: pointer;
}

.tracking-no-background {
  object-fit: cover;
  object-position: center;
  height: 80px;
  width: 100px;
}
.tracking-img {
  height: 100px;
  width: 100px;
}

.track-result {
  color: #000;
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid black;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  border-radius: 5px;
  width: 800px;
  color: red;
}

.result-tracking-style-cover {
  background-color: #e3e0e0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}
.result-tracking-style {
  background-color: #e3e0e0;
  color: black;
  padding: 10px;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.box-down-track {
  background-color: white;
  width: 100%;
  display: flex;
}

.box-down-left {
  width: 50%;
  padding: 20px;
  margin: 50px;
  border: 1px solid #f2f2f2;
}

.box-down-down-mobile {
  display: none;
}

.box-down-right {
  width: 50%;
  padding: 20px;
  margin: 50px;
  border: 1px solid #f2f2f2;
}

.bold-p-two {
  font-weight: 700;
}
.bold-p-grey {
  color: grey;
  font-size: 14px;
}
.cover-down-box {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 50px;
  border-bottom: 2px solid #f2f2f2;
  border-left: 2px solid #f2f2f2;
  border-right: 2px solid #f2f2f2;
  border-radius: 5px;
}
.the-map-pc {
  background-color: red;
}
.fussion-lec::before {
  line-height: 20px;
  font-size: 20px;
  content: "\2605";
  color: #726204;
}

.btn-style {
  background-color: #124076;
  border: none;
  color: white;
  padding: 5px 20px 5px 20px;
  border-radius: 5px;
  font-weight: 700;
  width: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}
.box-ship-details {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.box-ship-details p {
  padding: 0;
  margin: 0;
}
.fa-bars {
  color: #000;
}
.dont-know {
  margin-top: 300px;
}
/* =========== NEW SERVICES =============== */
.content-services {
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.services-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.services-section h1 {
  margin: 0;
}
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* SERVICES */
.services {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}

.service-item {
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-item.active {
  background: #e7f56c;
}
.service-item.cargo {
  background: #b7bdf7;
}
.service-item.retailer {
  background: #eeeeee;
}
.service-item.enterprise {
  background: #ff986a;
}
.service-content {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease; /* Added for smooth transitions */
}

.btn:hover {
  transform: translateY(-3px); /* Subtle lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  background: #333; /* Slightly lighter background on hover */
}

.zigzag {
  margin-top: 20px;
  width: 100%;
  height: 30px;
  background:
    linear-gradient(135deg, transparent 75%, #fff 75%),
    linear-gradient(225deg, transparent 75%, #fff 75%);
  background-size: 30px 30px;
  background-position:
    0 0,
    15px 15px;
}

.cbx-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cbx-badge {
  background: var(--cbx-blue);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.cbx-title {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 500;
}

.cbx-card-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cbx-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--cbx-light-bg);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.cbx-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.cbx-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--cbx-overlay);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.cbx-content {
  position: relative;
  z-index: 3;
  text-align: left;
  transition: color 0.35s ease;
}

.cbx-icon {
  font-size: 2rem;
}

.cbx-card-title {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #1c1c1c;
}

.cbx-card-text {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
}

.cbx-card:hover .cbx-bg-image {
  opacity: 1;
}

.cbx-card:hover .cbx-bg-overlay {
  opacity: 1;
}

.cbx-card:hover .cbx-card-title,
.cbx-card:hover .cbx-card-text {
  color: #ffffff;
}

/*============END NEW SERVICES=============== */
.logos-box {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: scrollLeft 10s linear infinite;
}

.logos-box img {
  object-fit: scale-down;
  object-position: center;
  height: 50px;
  width: 100px;
  flex-shrink: 0;
}

.logos-partnership {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  color: #4e4e4e;
}
.logos-partnership p {
  font-weight: 600;
}

.mobile-down-box-style {
  display: none;
}
.mobile-working {
  display: none;
}

.mobile-down-style {
  display: none;
}

.box-down-right-mobile {
  display: none;
}

.up-progress-mobile {
  display: none;
}

.hr-line {
  margin-top: 3rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #eaebeb;
  width: 80%;
}
.hr-line-line {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: 0;
  border-top: 1px solid #eaebeb;
  width: 100%;
}
.linetwo-style {
  border: 1px solid grey;
  width: 100%;
}
.icon-arrow-track {
  margin-left: 3px;
  color: #e8dfca;
}
#progressbar {
  display: flex;
  align-items: center;
  background-color: #e4e3e3;
  border-radius: 13px; /* (height of inner div) / 2 + padding */
  padding: 1px;
}

.in-in-arrow {
  background: #124076;
  border: 2px solid #124076;
  width: 20px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-align: center;
  margin-left: -10px;
}
.in-in-track {
  background-color: #124076;
  width: 40%; /* Adjust with JavaScript */
  height: 10px;
  border-radius: 10px;
}

.unto-style {
  display: flex;
}

.add-list li img {
  object-fit: contain;
  object-position: center;
  height: 60px;
  width: 150px;
}

.style-wrap {
  display: flex;
  flex-direction: column;
  white-space: wrap;
  align-items: center;
  justify-content: center;
}

.hide-logo {
  display: none;
}

/* ==========================
*   Detect location
============================*/

.news-box-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
.news-box-cover > * {
  flex: 1 1 200px; /* explanation below */
  box-sizing: border-box;
}

.print-hr {
  display: none;
}

.off-display {
  display: none;
}
.print-hr-hr {
  display: none;
}

.specific-design {
  display: none;
}

/* General Footer Styling */

/* Base Mobile Nav Styling */

.about-us {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.about-us-left p {
  margin-left: 0;
}
.about-us-left {
  width: 50%;
}
.about-us-right {
  width: 50%;
}
.first-about-icon {
  font-size: 12px;
}
.about-us-right img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.first-about-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  width: fit-content;
  background-color: #f7f7f7;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  border: 1px solid #f3f3f3;
}
.second-about-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 12px;
}
.few-about-us {
  color: grey;
  max-width: 70%;
  line-height: 25px;
  margin-left: 0;
}
.about-us-left h1 {
  font-size: 40px;
}
.first-about-icon > i {
  font-size: 16px;
  color: #124076;
}
.second-about-icon > i {
  font-size: 20px;
  color: #124076;
}
.blog-content h5 a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.blog-content h5 {
  font-size: 16px;
}
.track-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.track-container p {
  width: fit-content;
  text-align: center;
}
.track-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
}

.track-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}
.how-it-works {
  font-size: 18px;
  color: #124076;
  font-weight: bold;
}
.track-flow::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 1;
}

.track-step {
  position: relative;
  width: 23%;
  background: #fff;
  z-index: 2;
  text-align: center;
}

.track-icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 2px solid #124076;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-icon-box img {
  width: 40px;
  height: 40px;
}

.track-step-number {
  background: #124076;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px auto 10px;
  font-size: 16px;
}

.track-step-title {
  font-size: 20px;
  margin: 10px 0;
}

.track-step-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 10px;
}

/*===========TESTIMONIAL============*/
.ol-testimonial-slider {
  overflow: hidden;
}
.ol-testimonial-tag {
  background: var(--cbx-blue);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.ol-testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}

.ol-testimonial-card {
  min-width: 320px;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 2.8rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-top: 50px;
}

.ol-testimonial-active {
  opacity: 1;
  background: linear-gradient(135deg, #6a11cb, #8e2de2);
  color: #fff;
  box-shadow: 0 20px 50px rgba(106, 17, 203, 0.45);
}

.ol-testimonial-avatar {
  position: absolute;
  top: -26px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}

.ol-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ol-testimonial-dots {
  margin-top: 1.5rem;
  text-align: center;
}

.ol-testimonial-dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
}

.ol-testimonial-dot.active {
  background: #6a11cb;
}
.ol-testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ol-testimonial-title {
  margin: 0px;
}
.ol-testimonial-section {
  padding: 1rem 1rem;
  background: #f7f9fc;
}

.ol-testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ol-testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ol-testimonial-card:hover {
  transform: translateY(-6px);
}

.ol-testimonial-active {
  background: linear-gradient(135deg, #6a11cb, #8e2de2);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(106, 17, 203, 0.45);
}

.ol-testimonial-avatar {
  position: absolute;
  top: -26px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}

.ol-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ol-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.ol-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ol-testimonial-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.ol-testimonial-role {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
}

.ol-testimonial-stars {
  font-size: 0.9rem;
  color: #ffcc00;
}

/* Active card text color override */
.ol-testimonial-active .ol-testimonial-role {
  opacity: 0.9;
}

.lgx-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* =========================
   Left Content
   ========================= */
.lgx-badge {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lgx-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #111;
}

.lgx-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 480px;
}

.lgx-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lgx-button:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lgx-arrow {
  height:1rem;
  width:1rem;
}

/* =========================
   Images Layout
   ========================= */
.lgx-images {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
  gap: 1.25rem;

  overflow: hidden;
}
.lgx-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.lgx-image-small {
  max-height: 240px;
  height: 100%;
  overflow: hidden;
}

.lgx-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Stack on desktop */
.lgx-image-main {
  height: 100%;
}

.lgx-image-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media only screen and (min-width: 1025px) {
  .mobile-nav {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .top-bar-PC {
    display: none;
  }
  .top-bar-MOBILE {
    display: flex;
    background-color: #fff;
    width: 100%;
    font-size: 12px;
    padding: 10px 20px;
    align-items: flex-start;
    gap: 10px;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
  }
  .top-left,
  .top-right {
    gap: 15px;
    flex-wrap: wrap;
  }
  .divider {
    display: none;
  }
  .ol-testimonial-wrapper {
    gap: 1.5rem;
  }

  .ol-testimonial-card {
    width: 300px;
  }
  .cbx-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ft-footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ft-newsletter h3 {
    font-size: 28px;
  }
  .lgx-container {
    grid-template-columns: 1fr 1.1fr;
  }

  .lgx-images {
    grid-template-columns: 1fr 0.9fr;
    align-items: stretch;
  }

  .lgx-image-main {
    height: 100%;
  }

  .lgx-image-stack {
    grid-template-rows: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 20px;
  }
  .services-section h1 {
    font-size: 1.5rem;
  }
  .services-section {
    gap: 40px;
  }
  .cbx-header {
    margin-bottom: 1.5rem;
  }
  .lgx-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }
  .ol-testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 36px;
  }
  .ft-footer-container {
    padding: 40px 20px 40px;
    gap: 40px;
  }
  .row {
    flex-direction: column;
  }

  .content-services {
    flex-direction: column;
    gap: 20px;
  }

  .image-box img {
    height: auto;
  }

  .service-item {
    padding: 16px;
  }

  .service-item h3 {
    font-size: 15px;
  }

  .service-content {
    font-size: 13px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
  }

  .answer {
    font-size: 14px;
    line-height: 25px;
  }
  /* Toggle menu open */

  .testi-track {
    padding: 0 5%;
  }
  .testi-card {
    flex: 0 0 80%;
    padding: 10px 0px;
  } /* a little wider on phone */
  .Track-mobile h1 {
    color: #f3f3f3;
    margin-bottom: 0;
  }

  .services-box-headline {
    flex-direction: column;
  }
  .services-box-headline p {
    max-width: 100%;
    margin-top: 0;
  }
  .newway-chose-us {
    flex-direction: column-reverse;
  }
  .newway-chose-us-left {
    width: 100%;
    padding: 30px;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .newway-chose-us-right {
    width: 100%;
    height: 300px;
  }
  .blog-content h5 {
    margin: 5px 0 10px 0;
  }

  .contact-us div {
    flex-direction: column;
    text-align: center;
  }
  .contact-us h1 {
    font-size: 25px;
  }
  .contact-us div button {
    width: 200px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .blog-section {
    padding: 0;
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
  }
  .lgx-container {
    grid-template-columns: 1fr;
  }

  .lgx-images {
    display: none;
  }

  .lgx-content {
    width: 100%;
  }
  .cover-down-box-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-radius: 5px;
    width: 100%;
  }
  .Services-box {
    margin-top: 20px;
  }
  .mobile-down-style {
    display: flex;
  }

  .no-wrap {
    white-space: nowrap;
  }
  .date-time-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .update-mobile-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .company-articles a {
    display: none;
  }
  .company-articles h1 {
    font-size: 1rem;
    font-size: 400;
  }
  .product-name {
    color: grey;
  }
  .lower-left div {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  #wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-start {
    flex-direction: column;
    gap: 0px;
  }

  .section-start img {
    max-height: 329px;
    max-width: 100%;
  }

  .color-btn-btn {
    color: white;
  }
  .about-track {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .box-services-cover {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .box-services {
    width: 100%;
  }
  .box-services div {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .box-services hr {
    margin: 5px;
  }
  .ol-testimonial-section {
    padding: 1rem 1rem;
  }

  .ol-testimonial-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .ol-testimonial-card {
    width: 100%;
    max-width: 360px;
    padding: 2.8rem 1.8rem 2rem;
  }

  .ol-testimonial-avatar {
    left: 50%;
    transform: translateX(-50%);
  }

  .ol-testimonial-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .ol-testimonial-footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }

  .ol-testimonial-stars {
    font-size: 1rem;
  }
  .inner-newway-service {
    margin: 0 20px 0 0;
  }

  .about-us {
    flex-direction: column;
    margin-top: 20px;
  }
  .about-us-left {
    width: 100%;
  }
  .about-us-right {
    width: 100%;
  }
  .few-about-us {
    max-width: 100%;
    line-height: 25px;
    font-size: 16px;
  }
  .about-us-left h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .worldwide {
    display: flex;
    flex-direction: column;
    padding-top: 0px;
  }
  .info-equity {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 100px;
  }
  .equity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .equity h1 {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .equity p:nth-of-type(2) {
    max-width: 300px;
    font-size: 14px;
  }
  .track-flow {
    flex-direction: column;
    gap: 40px;
  }

  .track-step {
    width: 100%;
  }

  .track-flow::before {
    display: none;
  }
  .freq {
    flex-direction: column;
  }
  .freq-right {
    width: 100%;
  }
  .freq-left {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .mobile-nav-toggle {
    font-size: 1.2rem;
  }
  .service-item h3 {
    margin: 0;
  }
  .logo-svg {
    width: 200px;
  }
  .services-section h1 {
    font-size: 1.2rem;
  }
  .ft-socials img {
    color: #fff;
  }
  .ol-testimonial-title {
    font-size: 20px;
  }
  .ft-footer-container {
    padding: 20px 20px 20px;
    gap: 20px;
  }
  .lgx-content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .lgx-text {
    text-align: center;
  }
  .lgx-title {
    text-align: center;
    line-height: 1.15;
  }
  .zigzag {
    height: 24px;
    background-size: 24px 24px;
  }
  .ft-form {
    flex-direction: column;
  }
  .services-section {
    gap: 30px;
  }
  .cbx-card-wrapper {
    grid-template-columns: 1fr;
  }
  .cbx-icon img {
    height: 40px;
    width: 40px;
  }
  .ft-newsletter {
    display: none;
  }
  .ft-form button {
    width: 100%;
  }
  section {
    margin-bottom: 1rem;
  }
  .ol-testimonial-card {
    max-width: 100%;
    padding: 2rem 0rem 1rem;
  }

  .ol-testimonial-text {
    font-size: 0.9rem;
  }

  .ol-testimonial-name {
    font-size: 0.9rem;
  }
  .cbx-card-title {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
  .ol-testimonial-role {
    font-size: 0.75rem;
  }
  .linetwo-style {
    border: 1px solid grey;
    width: 70%;
  }
  .contact-us h1 {
    font-size: 18px;
    margin-top: 15px;
  }

  .freq {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: space-between;
  }
  .freq-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    text-align: center;
  }
  .freq-left p {
    display: none;
  }

  .freq-right {
    width: 100%;
  }
  .freq-left h4 {
    font-size: 25px;
    font-weight: 600;
    margin-top: 10px;
  }
  .services-box-headline p {
    font-size: 15px;
  }
  .newway-chose-us-left p {
    font-size: 14px;
  }
  .worldwide > p {
    padding-left: 20px;
  }
  .worldwide > h1 {
    padding-left: 20px;
  }
  .faqs-style-mobile div {
    text-align: left;
  }

  .question-title {
    font-size: 16px;
  }
  .newway-chose-us {
    border-radius: 5px;
  }
  .product-name {
    font-size: 14px;
  }

  .company-articles {
    text-align: center;
  }
  .faqs-style-mobile a {
    font-weight: 600;
    text-decoration: none;
  }
  .plus-freq {
    width: 15px;
    height: 15px;
    padding: 8px;
  }
  .minus-freq {
    width: 15px;
    height: 15px;
    padding: 8px;
  }
  .question div {
    margin-right: 20px;
  }
  .second-about-icon {
    display: flex;
    font-size: 14px;
  }
  .equity {
    padding: 10px;
  }
  .equity p:first-of-type {
    margin-bottom: 0;
  }
  .world-wide-top img {
    height: 250px;
  }
  .newway-chose-us-left {
    padding: 20px;
  }
  .newway-chose-us-left h1 {
    font-size: 1.8rem;
  }
  .inner-newway-service {
    margin: 0;
  }
}

@media print {
}
