a:focus, button:focus, div:focus {
  -webkit-highlight: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
  outline: 0px !important;
}

h1 {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
h1 span {
  color: #EF6925;
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 62px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 39px;
  font-weight: bold;
  text-transform: uppercase;
}
h2 span {
  color: #EF6925;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 31px;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 32px;
  }
  h2 br {
    display: none;
  }
}

h3 {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}
h3 span {
  color: #EF6925;
}
@media screen and (max-width: 576px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 21px;
  font-weight: bold;
}
h4 span {
  color: #EF6925;
}
@media screen and (max-width: 576px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
h5 span {
  color: #EF6925;
}
@media screen and (max-width: 576px) {
  h5 {
    font-size: 16px;
  }
}

p span {
  color: #EF6925;
}
p strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
}

body {
  color: #11111C;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.74;
  overflow-x: hidden;
}
@media screen and (max-width: 576px) {
  body {
    line-height: 1.5;
  }
}

@media (min-width: 1350px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1264px;
  }
}
@media (max-width: 576px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding: 0 20px;
  }
}
section {
  overflow: hidden;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 58px;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  padding: 10px 30px;
  background-color: #EF6925;
  border: 1px solid #EF6925;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.5s;
  letter-spacing: 1.68px;
}
.btn-main:hover, .btn-main:active {
  background-color: #fff !important;
  color: #EF6925 !important;
  border: 1px solid #EF6925 !important;
}
@media screen and (max-width: 576px) {
  .btn-main {
    padding: 10px 20px;
  }
}

#backToTop {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EF6925;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background: #cc571f; /* darker orange */
}

/* Show button */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header {
  padding: 21px 0;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  header .navbar-brand {
    padding: 0 0;
  }
  header .navbar-brand img,
  header .navbar-brand svg {
    width: 200px;
  }
}
header .nav-item {
  margin: 0 24px;
}
header .nav-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  header .nav-item {
    margin: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  header .nav-item {
    margin: 15px 0 15px;
  }
}
header .nav-link {
  padding: 0 0 !important;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 1.68px;
  font-weight: normal;
  color: #11111C;
  position: relative;
}
header .nav-link:before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #EF6925;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: width 0.5s;
}
header .nav-link:hover, header .nav-link.active {
  color: #EF6925;
}
header .nav-link:hover:before, header .nav-link.active:before {
  width: 100%;
}
header .btn-main {
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .navbar-nav {
    padding-top: 30px;
  }
}

.navbar-toggler {
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggler span {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  transition: all 0.35s ease;
  background-color: #11111C;
}

/* Top line */
.navbar-toggler.collapsed span:nth-child(1) {
  top: 0;
  transform: rotate(0);
}

/* Middle line */
.navbar-toggler.collapsed span:nth-child(2) {
  top: 10px;
  opacity: 1;
}

/* Bottom line */
.navbar-toggler.collapsed span:nth-child(3) {
  top: 20px;
  transform: rotate(0);
}

/* OPEN STATE */
.navbar-toggler span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.navbar-toggler span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.banner-section {
  background-color: #E9EBF5;
  position: relative;
  aspect-ratio: 1480/700;
  width: 100%;
  height: calc(100vh - 104px);
}
.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 576px) {
  .banner-section {
    min-height: 350px;
    height: auto;
  }
}

.banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  max-width: 628px;
  width: 100%;
  height: auto;
  text-align: center;
  color: #11111C;
}
.banner-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-content span {
  font-size: 21px;
  font-weight: normal;
  color: #11111C;
  letter-spacing: 8.4px;
  text-transform: uppercase;
}
.banner-content p {
  font-size: 18px;
  margin: 0 0 27px 0;
}
@media screen and (max-width: 576px) {
  .banner-content {
    padding: 15px 30px;
  }
  .banner-content img {
    height: 350px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-content span {
    font-size: 16px;
    letter-spacing: 4px;
  }
}

.feature-cards-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .feature-cards-main {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .feature-cards-main {
    padding: 60px 0 0;
  }
}

.feature-card {
  width: 18%;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding-right: 2.5%;
  margin-right: 2.5%;
  font-size: 16px;
  font-weight: normal;
}
.feature-card:last-child {
  margin-right: 0;
  border-right: none;
}
.feature-card img {
  height: 40px;
  margin-bottom: 25px;
}
.feature-card h4 {
  color: #11111C;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-card h4 a {
  color: #11111C;
  text-decoration: none;
  transition: 0.5s;
}
.feature-card h4 a:hover {
  color: #EF6925;
}
.feature-card p {
  line-height: 1.56;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .feature-card {
    font-size: 14px;
  }
  .feature-card h4 {
    font-size: 17px;
  }
}
@media screen and (max-width: 992px) {
  .feature-card {
    font-size: 16px;
    width: 31%;
    padding-right: 3.5%;
    margin-right: 3.5%;
    margin-bottom: 50px;
  }
  .feature-card:nth-child(3) {
    border-right: none;
    margin-right: 0;
  }
  .feature-card h4 {
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  .feature-card {
    font-size: 16px;
  }
  .feature-card h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .feature-card {
    font-size: 16px;
    width: 280px;
    margin-right: auto !important;
    margin-left: auto;
    padding-left: 3.5%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .feature-card h4 {
    font-size: 18px;
  }
}

.stats-main {
  padding: 120px 0 0;
}
@media screen and (max-width: 992px) {
  .stats-main {
    padding: 30px 0 0;
  }
}

.stats-left-main {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .stats-left-main {
    justify-content: center;
    margin-bottom: 50px;
  }
}

.stats-large-text {
  font-size: 360px;
  font-weight: bold;
  color: #EF6925;
  width: 368px;
  line-height: 0.7;
  letter-spacing: -46.5px;
  transform: translateY(-20px);
}
@media screen and (max-width: 1400px) {
  .stats-large-text {
    font-size: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .stats-large-text {
    font-size: 196px;
    width: 196px;
    letter-spacing: -25.5px;
  }
}
@media screen and (max-width: 992px) {
  .stats-large-text {
    font-size: 275px;
    width: 295px;
  }
}
@media screen and (max-width: 767px) {
  .stats-large-text {
    font-size: 208px;
    width: 200px;
  }
}
@media screen and (max-width: 575px) {
  .stats-large-text {
    transform: translate(-8px, 5px);
    font-size: 100px;
    width: 100%;
    letter-spacing: -11px;
  }
}

.stats-left-content {
  max-width: 310px;
  width: 100%;
}
.stats-left-content h4 {
  font-size: 32px;
  font-weight: bold;
  color: #11111C;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stats-left-content p {
  line-height: 1.56;
  font-size: 16px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .stats-left-content {
    max-width: 275px;
  }
  .stats-left-content h4 {
    font-size: 27px;
  }
}
@media screen and (max-width: 575px) {
  .stats-left-content {
    max-width: 100%;
  }
}

.stats-right-main {
  padding-left: 25px;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 992px) {
  .stats-right-main {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .stats-right-main {
    padding-left: 0;
  }
}

.stats-graph {
  width: 50%;
  padding: 0 40px 40px 0;
}
.stats-graph h3 {
  font-size: 80px;
  font-weight: 300;
  color: #11111C;
  line-height: 0.7;
  margin-bottom: 25px;
}
.stats-graph span {
  font-size: 16px;
  font-size: normal;
}
.stats-graph:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.stats-graph:nth-child(2) {
  padding-left: 40px;
  padding-right: 0;
}
.stats-graph:nth-child(3) {
  padding-top: 40px;
  padding-bottom: 0;
}
.stats-graph:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding: 40px 0 0 40px;
  transform: translate(-1px, -1px);
}
@media screen and (max-width: 1400px) {
  .stats-graph h3 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .stats-graph h3 {
    font-size: 57px;
  }
}
@media screen and (max-width: 767px) {
  .stats-graph h3 {
    font-size: 47px;
  }
}
@media screen and (max-width: 575px) {
  .stats-graph h3 {
    font-size: 38px;
  }
}

.courier-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  padding: 120px 0;
}
@media screen and (max-width: 992px) {
  .courier-main {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .courier-main {
    padding: 70px 0;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .courier-main {
    padding: 60px 0;
  }
}

.courier-image {
  width: 56.284%;
}
@media screen and (min-width: 1500px) {
  .courier-image {
    width: 100%;
    max-width: 855px;
  }
}
@media screen and (max-width: 768px) {
  .courier-image {
    width: 100%;
  }
}

.courier-context {
  width: 33.784%;
  font-size: 16px;
  color: #11111C;
}
.courier-context h3 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: none;
  text-transform: uppercase;
}
.courier-context p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .courier-context h3 {
    font-size: 35px;
  }
}
@media screen and (max-width: 992px) {
  .courier-context {
    width: 40%;
  }
  .courier-context h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .courier-context {
    width: 100%;
    padding: 0 20px 0;
  }
  .courier-context h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .courier-context h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 18px;
  }
}

.reward-section {
  padding: 100px 0;
  background-image: url("../images2/reward-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .reward-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 576px) {
  .reward-section {
    padding: 60px 0;
  }
}

.reward-right {
  font-size: 16px;
}
.reward-right p a {
  color: #EF6925;
  text-decoration: none;
}
.reward-right p a:hover {
  text-decoration: underline;
}
.reward-right h2 {
  margin-bottom: 15px;
}
.reward-right h4 {
  text-transform: uppercase;
  margin-bottom: 13px;
}
.reward-right .btn-main {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .reward-right {
    margin: 30px 0 0;
  }
  .reward-right h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 576px) {
  .reward-right h2 {
    font-size: 32px;
  }
  .reward-right .btn-main {
    margin-top: 10px;
  }
}

.reward-left {
  mix-blend-mode: multiply;
}

.delivery-challenge-section {
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .delivery-challenge-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .delivery-challenge-section {
    padding: 60px 0 30px;
  }
}

.delivery-challenge-left {
  font-size: 16px;
  width: 91%;
}
.delivery-challenge-left p {
  line-height: 1.5;
}
.delivery-challenge-left h2 {
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .delivery-challenge-left {
    width: 100%;
  }
}

.calculate-saving {
  background: #11111C;
  background: radial-gradient(circle farthest-corner at bottom center, #404040 0%, #11111c 80%);
  background: -webkit-radial-gradient(circle farthest-corner at bottom center, #404040 0%, #11111c 80%);
  background: -moz-radial-gradient(circle farthest-corner at bottom center, #404040 0%, #11111c 80%);
  position: relative;
  color: #fff;
  border-radius: 20px;
  padding: 30px 35px 25px;
  margin: 35px 0 0;
  color: #F5F5FC;
}
.calculate-saving .save-calc {
  position: absolute;
  bottom: -50px;
  right: -80px;
}
.calculate-saving a {
  color: #EF6925;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: bold;
  transition: filter 0.3s ease;
}
.calculate-saving a:hover {
  filter: brightness(85%);
}
.calculate-saving a:hover .btn-arrow {
  transform: translate(28px, -2px);
}
.calculate-saving .btn-arrow {
  transform: translate(10px, -2px);
  transition: 0.5s;
}
@media screen and (max-width: 992px) {
  .calculate-saving a {
    font-size: 16px;
  }
  .calculate-saving .save-calc {
    width: 150px;
    bottom: -80px;
    right: -55px;
  }
}
@media screen and (max-width: 767px) {
  .calculate-saving .save-calc {
    width: 100px;
    bottom: -55px;
  }
}
@media screen and (max-width: 576px) {
  .calculate-saving {
    padding: 25px 20px 30px;
  }
  .calculate-saving .save-calc {
    width: 120px;
    bottom: -60px;
    right: 0;
  }
}

.delivery-challenge-right-main {
  display: flex;
  flex-flow: row wrap;
  gap: 8%;
  width: 100%;
  padding-left: 65px;
  position: relative;
}
.delivery-challenge-right-main:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(238, 104, 37, 0.4);
  filter: blur(200px);
  width: 334px;
  height: 334px;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .delivery-challenge-right-main {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .delivery-challenge-right-main {
    margin: 60px 0 0;
    padding-left: 0;
  }
}

.delivery-challenge-right {
  width: 46%;
  min-height: 230px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid rgba(239, 105, 37, 0.34);
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
  flex-flow: column;
  font-size: 21px;
  text-align: center;
  transition: 1s;
}
.delivery-challenge-right:hover {
  border: 1px solid rgb(239, 105, 37);
}
.delivery-challenge-right:nth-child(2n) {
  transform: translateY(40px);
}
.delivery-challenge-right p {
  line-height: 1.42;
  margin-bottom: 0;
}
.delivery-challenge-right img {
  height: 60px;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .delivery-challenge-right {
    width: 46%;
    min-height: 200px;
    margin-bottom: 30px;
    padding: 30px 10px;
    font-size: 16px;
  }
  .delivery-challenge-right img {
    height: 50px;
  }
}

.why-choose-section {
  padding: 120px 0;
  background-image: url("../images2/ch-banner.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .why-choose-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .why-choose-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .why-choose-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .why-choose-section {
    padding: 60px 0;
  }
}

.why-choose-wrapper {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
}

.why-choose-main {
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .why-choose-main {
    gap: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .why-choose-main {
    gap: 20px;
  }
}

.why-choose-option {
  width: 250px;
  min-height: 220px;
  padding: 20px 20px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #ffffff;
  background: radial-gradient(circle farthest-corner at bottom center, rgba(255, 255, 255, 0.3) 0%, rgba(240, 240, 253, 0.3) 80%);
  background: -webkit-radial-gradient(circle farthest-corner at bottom center, rgba(255, 255, 255, 0.3) 0%, rgba(240, 240, 253, 0.3) 80%);
  background: -moz-radial-gradient(circle farthest-corner at bottom center, rgba(255, 255, 255, 0.3) 0%, rgba(240, 240, 253, 0.3) 80%);
  font-size: 18px;
  font-weight: 600;
  color: #11111C;
  line-height: 1.38;
  transition: border-color 1s;
}
.why-choose-option:hover {
  border-color: #EF6925;
}
.why-choose-option img {
  width: 48px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .why-choose-option {
    width: 225px;
  }
}

.management-suite-section {
  padding: 110px 0;
}
@media screen and (max-width: 992px) {
  .management-suite-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .management-suite-section {
    padding: 70px 0;
  }
  .management-suite-section .row .col-md-5 {
    order: -1;
  }
}
@media screen and (max-width: 576px) {
  .management-suite-section {
    padding: 60px 0;
  }
}

.management-suite-left {
  padding-right: 28px;
}
.management-suite-left .swiper {
  width: 100%;
}
.management-suite-left .swiper-slide {
  padding-bottom: 60px;
}
.management-suite-left .swiper-slide img {
  width: 100%;
  display: block;
}
.management-suite-left .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #F3B21B;
  opacity: 1;
  margin: 0 15px !important;
}
.management-suite-left .swiper-pagination-bullet-active {
  background-color: #DB4826;
  width: 14px;
  height: 14px;
  transform: translateY(2px);
}
.management-suite-left .swiper-button-next {
  bottom: 8px;
  top: unset;
  right: 20%;
  width: 24px;
  height: 24px;
  padding: 0 0;
  background-image: url("../images2/arrow-next.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.management-suite-left .swiper-button-next::after {
  display: none;
}
.management-suite-left .swiper-button-prev {
  bottom: 8px;
  top: unset;
  left: 20%;
  width: 24px;
  height: 24px;
  padding: 0 0;
  background-image: url("../images2/arrow-prev.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.management-suite-left .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 992px) {
  .management-suite-left {
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .management-suite-right {
    margin: 0 0 30px;
  }
}

.mob-app-left {
  font-size: 16px;
  font-weight: 400;
  color: #11111C;
}
.mob-app-left p {
  margin-bottom: 25px;
  line-height: 1.56;
}
.mob-app-left ul {
  padding-left: 19px;
  columns: 2;
  list-style: none;
}
.mob-app-left li {
  margin-bottom: 20px;
  line-height: 1.56;
  position: relative;
}
.mob-app-left li:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: -19px;
  top: 9px;
  border-radius: 50%;
  background-color: #EF6925;
}
@media screen and (max-width: 768px) {
  .mob-app-left {
    margin: 0 0 50px;
  }
  .mob-app-left ul {
    columns: 1;
  }
}

.app-stores {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.blog-section {
  padding: 120px 0;
}
@media screen and (max-width: 992px) {
  .blog-section {
    padding: 90px 0;
  }
}
@media screen and (max-width: 768px) {
  .blog-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .blog-section {
    padding: 60px 0;
  }
}

.blog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .blog-heading {
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
  }
  .blog-heading .btn-main {
    margin-top: 20px;
  }
}

.blog-card {
  width: 100%;
  box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .blog-card {
    margin-bottom: 20px;
  }
}

.blog-img {
  width: 100%;
  aspect-ratio: 1/1;
  transition: 0.5s;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.5s;
}

.blog-card:has(.blog-content a:hover) .blog-img img {
  transform: scale(1.12);
}

.blog-content {
  padding: 24px 30px;
}
.blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #11111C;
  margin-bottom: 15px;
}
.blog-content a {
  color: #EF6925;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-content a .btn-arrow {
  width: 13px;
  transform: translate(8px, -2px);
  transition: 0.5s;
}
.blog-content a:hover .btn-arrow {
  transform: translate(13px, -2px);
}
@media screen and (max-width: 768px) {
  .blog-content {
    padding: 20px 20px;
  }
  .blog-content h4 {
    font-size: 16px;
  }
}

.blog-half {
  margin-bottom: 20px;
}
.blog-half .blog-img {
  aspect-ratio: 4/3;
}
.blog-half .blog-content {
  padding: 21px 20px;
}
.blog-half .blog-content h4 {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1300px) {
  .blog-half .blog-content {
    padding: 20px 20px;
  }
  .blog-half .blog-content h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .blog-half .blog-content {
    padding: 22px 8px;
  }
  .blog-half .blog-content h4 {
    font-size: 13px;
  }
}
@media screen and (max-width: 992px) {
  .blog-half .blog-content {
    padding: 20px 20px;
  }
  .blog-half .blog-content h4 {
    font-size: 16px;
  }
}

.faq-section {
  width: 100%;
  background-image: url("../images2/faq-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 100px;
}
@media screen and (max-width: 992px) {
  .faq-section {
    padding: 90px 0 70px;
  }
}
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 576px) {
  .faq-section {
    padding: 60px 0 50px;
  }
}

.faq-main {
  margin: 30px 0 0;
}
.faq-main .col-md-6 {
  padding: 0 20px;
}
.faq-main .accordion-panel {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.faq-main .accordion-button:not(.collapsed), .faq-main .accordion-button:hover {
  color: #EF6925;
  background: none;
  box-shadow: unset;
}
.faq-main .accordion-button::after {
  width: 14px;
  height: 14px;
  background-image: url("../images2/plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s;
  position: absolute;
  right: 18px;
}
.faq-main .accordion-button:not(.collapsed)::after {
  background-image: url("../images2/minus.svg");
}
.faq-main .accordion-button::after {
  transition: all 0.5s;
}
.faq-main .accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 48px 58px 160px 0px rgba(0, 0, 0, 0.08);
}
.faq-main .accordion-body {
  font-size: 16px;
  font-weight: normal;
  color: #404040;
  padding-top: 0;
}
.faq-main .accordion-button {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 35px 20px 20px;
}

.testimonial-section {
  padding: 120px 0;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .testimonial-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .testimonial-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .testimonial-section {
    padding: 60px 0;
  }
}

.testimonial-main {
  margin-top: 40px;
}
.testimonial-main .swiper-wrapper {
  align-items: stretch;
}
.testimonial-main .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-main .swiper-button-next {
  right: -60px;
  width: 24px;
  height: 24px;
  padding: 0 0;
}
.testimonial-main .swiper-button-next::after {
  display: none;
}
.testimonial-main .swiper-button-prev {
  left: -60px;
  width: 24px;
  height: 24px;
  padding: 0 0;
}
.testimonial-main .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 1300px) {
  .testimonial-main .swiper-button-next {
    width: 40px;
    height: 40px;
    right: -14px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
  }
  .testimonial-main .swiper-button-next img {
    width: 18px;
  }
  .testimonial-main .swiper-button-next:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  }
  .testimonial-main .swiper-button-prev {
    left: -14px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
  }
  .testimonial-main .swiper-button-prev img {
    width: 18px;
  }
  .testimonial-main .swiper-button-prev:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 2px solid #E9E9F5;
  background: radial-gradient(circle farthest-corner at left center, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 252, 0.5) 100%);
  border-radius: 8px;
  padding: 40px 30px;
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
}
.testimonial-card img {
  box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
}
.testimonial-card h6 {
  font-weight: bold;
  color: #11111C;
  margin-bottom: 12px;
}
.testimonial-card h6 span {
  font-weight: normal;
  font-size: 14px;
}
.testimonial-card p {
  margin-bottom: 0;
}

.footer-top {
  background-color: #2F2F2F;
}

.footer-wrapper {
  max-width: 1480px;
  margin: 0 auto;
  padding: 10px 0px 5px;
}
/*@media screen and (max-width: 992px) {
  .footer-wrapper {
    padding: 92px 5px 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding: 72px 0 50px;
  }
}
@media screen and (max-width: 576px) {
  .footer-wrapper {
    padding: 62px 5px 40px;
  }
}*/

.footer-list-main {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 97px;
  margin: 30px 0 0;
}
@media screen and (max-width: 1300px) {
  .footer-list-main {
    column-gap: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .footer-list-main {
    column-gap: 50px;
  }
}
@media screen and (max-width: 992px) {
  .footer-list-main {
    grid-template-columns: repeat(3, 29%);
    column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer-list-main {
    grid-template-columns: repeat(3, 28%);
    justify-content: space-between;
  }
  .footer-list-main:nth-child(4) {
    grid-column: 1;
  }
  .footer-list-main > :nth-child(5) {
    grid-column: 2/span 2; /* last item wider */
  }
}
@media screen and (max-width: 576px) {
  .footer-list-main {
    grid-template-columns: 1fr;
    justify-content: start;
    column-gap: 0;
    row-gap: 20px;
    width: 100%;
  }
  .footer-list-main > * {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .footer-logo img {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo img {
    width: 250px;
  }
}

.footer-list {
  font-size: 16px;
  font-weight: normal;
  color: #F5F5FC;
}
.footer-list h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 35px;
  text-transform: uppercase;
  color: #F5F5FC;
}
.footer-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-list ul li {
  margin-bottom: 30px;
}
.footer-list ul a {
  color: #f5f5fc;
  text-decoration: none;
  position: relative;
  font-family: "Noto Sans", sans-serif;
}
.footer-list ul a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #f5f5fc;
  transition: 0.5s;
}
.footer-list ul a:hover::before {
  width: 100%;
}
@media screen and (max-width: 576px) {
  .footer-list {
    font-size: 16px;
  }
  .footer-list h5 {
    font-size: 21px;
  }
  .footer-list ul li {
    margin-bottom: 20px;
  }
}

.footer-contact-info {
  color: #f5f5fc;
  font-size: 16px;
  font-weight: normal;
}
.footer-contact-info img {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}
.footer-contact-info p {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1400px) {
  .footer-contact-info p br {
    display: none;
  }
}
.footer-contact-info a {
  color: #f5f5fc;
  text-decoration: none;
  transition: 0.5s;
}
.footer-contact-info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social {
  margin: 50px 0 0;
  display: flex;
  gap: 36px;
}
.footer-social a {
  transform: scale(1);
  transition: transform 0.5s;
}
.footer-social a:hover {
  transform: scale(1.05);
}

.footer-bar-container {
  background-color: #DB4826;
}

.footer-bar {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
}
.footer-bar p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  color: #fff;
}
.footer-bar p a {
  color: #fff;
  text-underline-offset: 5px;
  transition: 0.2s;
}
.footer-bar p a:hover {
  color: #11111C;
}
@media screen and (max-width: 1300px) {
  .footer-bar {
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .footer-bar {
    flex-flow: column;
    align-items: center;
    padding: 8px 0 10px;
  }
  .footer-bar p:first-child {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .footer-bar p {
    text-align: center;
    padding: 0 5px;
    width: 85%;
  }
}

.suite-banner-section {
  background-color: #F9F9F9;
}
.suite-banner-section .banner-content {
  max-width: 1264px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  text-align: left;
  top: 66%;
}

.managment-suite-main .row {
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .managment-suite-main .row {
    margin-bottom: 50px;
  }
}
.managment-suite-main .management-suite-left {
  padding-left: 10%;
  padding-right: 0;
}
@media screen and (max-width: 992px) {
  .managment-suite-main .management-suite-left {
    padding-left: 0;
  }
}
.managment-suite-main .management-suite-right {
  font-size: 14px;
}
.managment-suite-main .management-suite-right h2 {
  margin-bottom: 25px;
}
.managment-suite-main .management-suite-right p {
  line-height: 1.42;
}
.managment-suite-main .alter-row .management-suite-left {
  padding-right: 10%;
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .managment-suite-main .alter-row .management-suite-left {
    padding-right: 0;
  }
}

.try-it-now-section {
  background-image: url("../images2/try-it.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
}

.try-it-now-content {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #11111C;
  text-align: center;
}
.try-it-now-content a {
  color: #11111C;
  text-underline-offset: 5px;
}
.try-it-now-content a:hover {
  color: #EF6925;
}

.trial-banner-section {
  background-image: url("../images2/trial-banner-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.trial-banner-content {
  font-size: 18px;
  font-family: "Noto Sans", sans-serif;
  font-size: normal;
  color: #11111C;
}
.trial-banner-content h1 {
  margin-bottom: 15px;
}
.trial-banner-content span {
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.trial-banner-content p {
  line-height: 1.6;
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .trial-banner-content {
    font-size: 16px;
  }
}

.trial-banner-video {
  padding-left: 6.8%;
}
.trial-banner-video video {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trial-banner-video {
    padding-left: 0;
  }
}

.start-free-trial {
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .start-free-trial {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .start-free-trial {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .start-free-trial {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .start-free-trial {
    padding: 60px 0;
  }
}
.start-free-trial .feature-cards-main {
  padding: 60px 0 0;
}

.free-trial-form {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .free-trial-form {
    margin-top: 30px;
  }
}
.free-trial-form .col-md-6 {
  margin-bottom: 1.5rem;
}
.free-trial-form label {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: #11111C;
}
.free-trial-form .form-control, .free-trial-form .form-select {
  border: 1px solid #9B9B9B;
  border-radius: 4px;
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans", sans-serif;
  color: #11111C;
  padding-left: 20px;
  padding-right: 20px;
}
.free-trial-form .form-control:focus, .free-trial-form .form-select:focus {
  box-shadow: none;
}

.trial-contact {
  max-width: 788px;
  width: 100%;
  margin: 15px auto 0;
  text-align: center;
  font-size: 14px;
  font-size: normal;
  color: #11111C;
}
.trial-contact p {
  line-height: 1.42;
}
.trial-contact p a {
  color: #EF6925;
  text-underline-offset: 5px;
}
.trial-contact p a:hover {
  filter: brightness(85%);
}
.trial-contact p span {
  font-size: 18px;
  color: #11111C;
}

.trial-phn {
  text-decoration: none;
  color: #EF6925;
  font-size: 28px;
  font-weight: bold;
  transition: 0.5s;
  line-height: 1.3;
}
.trial-phn:hover {
  filter: brightness(85%);
  text-underline-offset: 5px;
  text-decoration: underline;
}

.dispatch-software-section {
  padding: 60px 0 37px;
  background-color: #F5F5FC;
}

.dispatch-software-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 50px;
}

.dispatch-software-marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll-x 30s linear infinite;
}
@media screen and (max-width: 1199px) {
  .dispatch-software-marquee_group {
    gap: 50px;
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 30px));
  }
}
.dispatch-software-marquee:hover .dispatch-software-marquee_group {
  animation-play-state: paused;
}

.dispatch-software-marquee img {
  display: grid;
  place-items: center;
}

.dispatch-software-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: auto;
  max-width: 100vw;
}

.courier-software-works {
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .courier-software-works {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .courier-software-works {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .courier-software-works {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .courier-software-works {
    padding: 60px 0;
  }
}
.courier-software-works .mob-app-left {
  padding-right: 40px;
}
@media screen and (max-width: 992px) {
  .courier-software-works .mob-app-left {
    padding-right: 0;
  }
}

.feature-badge {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
  text-transform: uppercase;
  letter-spacing: 1.92px;
  display: inline-block;
  margin-bottom: 10px;
}

.software-features-cards {
  display: flex;
  flex-flow: row wrap;
  gap: 4.031%;
  margin: 120px 0 0;
}
@media screen and (max-width: 1199px) {
  .software-features-cards {
    margin: 100px 0 0;
  }
}
@media screen and (max-width: 992px) {
  .software-features-cards {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .software-features-cards {
    margin: 70px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .software-features-cards {
    margin: 60px 0 0;
  }
}

.software-feature-card {
  width: 30.646%;
  min-height: 510px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(239, 105, 37, 0.34);
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 992px) {
  .software-feature-card .btn-main {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 768px) {
  .software-feature-card {
    min-height: auto;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .software-feature-card {
    min-height: 420px;
  }
  .software-feature-card:last-child {
    margin-bottom: 0;
  }
}
.software-feature-card .software-feature-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 45px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -27%);
  text-align: center;
  transition: 0.6s ease;
  width: 100%;
  min-height: 492px;
}
.software-feature-card img {
  height: 48px;
  margin-bottom: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.software-feature-card h4 {
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.software-feature-card p {
  font-size: 16px;
  min-height: 142px;
  line-height: 1.56;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.software-feature-card p strong {
  display: block;
  margin-bottom: 5px;
}
.software-feature-card {
  /* Hover animation */
}
.software-feature-card:hover {
  border: 1px solid #EF6925;
}
.software-feature-card:hover .software-feature-card-inner {
  transform: translate(-50%, -50%);
}
.software-feature-card:hover p {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .software-feature-card .software-feature-card-inner {
    padding: 45px 15px;
  }
  .software-feature-card h4 {
    font-size: 19px;
  }
  .software-feature-card p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .software-feature-card .software-feature-card-inner {
    min-height: auto;
    position: static;
    transform: none;
    padding: 45px 15px;
  }
  .software-feature-card h4 {
    font-size: 21px;
  }
  .software-feature-card p {
    opacity: 1;
    font-size: 16px;
  }
}

.avaliable-features-section .feature-badge {
  font-size: 21px;
}
.avaliable-features-section .why-choose-main {
  gap: 27px;
  margin-top: 60px;
}
.avaliable-features-section .why-choose-option {
  width: 289px;
  min-height: 302px;
  justify-content: flex-start;
  padding: 40px 18px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.avaliable-features-section .why-choose-option p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.56;
  margin-top: 10px;
}
.avaliable-features-section .why-choose-option img {
  height: 48px;
}
.avaliable-features-section .why-choose-wrapper {
  max-width: 100%;
}

.see-you-succeed-section {
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .see-you-succeed-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .see-you-succeed-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .see-you-succeed-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .see-you-succeed-section {
    padding: 60px 0;
  }
}
.see-you-succeed-section .mob-app-left ul {
  columns: 1;
}

.simple-get-started-section {
  padding: 120px 0;
  background-image: url("../images2/get-started-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .simple-get-started-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .simple-get-started-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .simple-get-started-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .simple-get-started-section {
    padding: 60px 0;
  }
}

.simple-get-started-main {
  max-width: 1056px;
  width: 100%;
  margin: 0 auto;
}

.heart-line {
  top: 101px;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform: translateX(-2740px) translate3d(0, 0, 0);
}
.heart-line img {
  height: 76px;
}
@media screen and (max-width: 992px) {
  .heart-line {
    top: 91px;
    transform: translateX(-2760px);
  }
}
@media screen and (max-width: 768px) {
  .heart-line {
    top: 91px;
    transform: translateX(-1428px);
  }
  .heart-line img {
    height: 40px;
    object-fit: contain;
  }
}

.simple-get-started-steps-main {
  position: relative;
  overflow: hidden;
  flex-flow: row wrap;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  padding: 0 50px 87px;
  margin: 60px 0 0;
  border: none;
}
@media screen and (max-width: 992px) {
  .simple-get-started-steps-main {
    padding: 0 0 87px;
  }
}

@media screen and (max-width: 768px) {
  .simple-get-started-steps-wrapper {
    width: 100%;
    height: auto;
    overflow: auto;
    overflow-y: hidden;
  }
  .simple-get-started-steps-wrapper .simple-get-started-steps-main {
    width: 650px;
  }
}
@media screen and (max-width: 576px) {
  .simple-get-started-steps-wrapper .simple-get-started-steps-main {
    width: 650px;
    padding: 0 0 55px;
  }
}

.simple-get-started-steps {
  min-width: 150px;
  padding: 0 5px;
  position: relative;
  cursor: pointer;
}
.simple-get-started-steps.active::before {
  content: "";
  background-image: url("../images2/heart-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 70px;
  height: 48px;
  transform: translateX(-50%);
}
.simple-get-started-steps.active h4 {
  color: #EF6925;
  font-weight: bold;
}
.simple-get-started-steps img {
  height: 44px;
  margin-bottom: 20px;
}
.simple-get-started-steps h4 {
  font-weight: normal;
}
@media screen and (max-width: 992px) {
  .simple-get-started-steps {
    min-width: 130px;
  }
  .simple-get-started-steps img {
    height: 38px;
  }
  .simple-get-started-steps h4 {
    font-size: 18px;
  }
}

.simple-free-trial-info {
  max-width: 810px;
  margin: 0 auto 0;
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
}
.simple-free-trial-info p {
  line-height: 1.56;
}

.valuable-customer-main {
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 40px 30px;
  max-width: 920px;
  margin: 60px auto 0;
  border-radius: 8px;
  border: 2px solid #E9E9F5;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: radial-gradient(circle farthest-corner at right center, rgba(255, 255, 255, 0) 0%, rgb(245, 245, 252) 100%);
  background: -webkit-radial-gradient(circle farthest-corner at right center, rgba(255, 255, 255, 0) 0%, rgb(245, 245, 252) 100%);
  background: -moz-radial-gradient(circle farthest-corner at right center, rgba(255, 255, 255, 0) 0%, rgb(245, 245, 252) 100%);
}
@media screen and (max-width: 576px) {
  .valuable-customer-main {
    margin-top: 30px;
  }
}

.valuable-customer-info {
  width: 84%;
  font-size: 16px;
}
.valuable-customer-info h6 {
  font-size: 16px;
  font-weight: bold;
}
.valuable-customer-info h6 span {
  font-size: 14px;
  font-weight: normal;
}
.valuable-customer-info p {
  margin-bottom: 0;
  line-height: 1.56;
}
@media screen and (max-width: 992px) {
  .valuable-customer-info {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .valuable-customer-info {
    width: 71%;
  }
}
@media screen and (max-width: 576px) {
  .valuable-customer-info {
    width: 100%;
    margin-top: 30px;
  }
}

.valuable-customer-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 24px 32px 48px 0px rgba(0, 0, 0, 0.12);
}
.valuable-customer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.courier-stats-section {
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .courier-stats-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .courier-stats-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .courier-stats-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .courier-stats-section {
    padding: 60px 0;
  }
}

.courier-stats-main {
  grid-template-columns: auto auto auto auto;
}
@media screen and (max-width: 992px) {
  .courier-stats-main {
    grid-template-columns: 25% 25% 25% 25%;
  }
}
@media screen and (max-width: 768px) {
  .courier-stats-main {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 576px) {
  .courier-stats-main {
    grid-template-columns: 100%;
  }
}

.courier-stats {
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 15%;
}
.courier-stats:last-child {
  border-right: none;
}
.courier-stats h3 {
  font-size: 44px;
  color: #EF6925;
  margin-bottom: 15px;
}
.courier-stats p {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .courier-stats h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .courier-stats h3 {
    font-size: 23px;
  }
  .courier-stats p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .courier-stats {
    margin-bottom: 30px;
  }
  .courier-stats:nth-child(2) {
    border-right: none;
  }
  .courier-stats h3 {
    font-size: 30px;
  }
  .courier-stats p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .courier-stats {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 0;
    padding-bottom: 30px;
  }
  .courier-stats h3 {
    font-size: 30px;
  }
}

.heading-section h4 {
  letter-spacing: -0.5px;
}

.select-plan-cards {
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 60px 0 0;
}

.select-plan-card {
  width: 23.5%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  border: 2px solid #EF6925;
  border-radius: 8px;
  padding: 50px 0;
  margin-bottom: 60px;
  position: relative;
  transition: 0.5s;
}
.select-plan-card h2 {
  color: #fff;
  font-size: 70px;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  background-color: #EF6925;
  width: calc(100% + 4px);
  margin-left: -2px;
  padding-bottom: 5px;
  margin-bottom: 0;
  margin-top: 13px;
}
.select-plan-card ul {
  padding: 0 30px;
  max-height: 345px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.select-plan-card ul.expanded {
  max-height: 2000px; /* enough to show full list */
}
.select-plan-card ul li {
  width: 100%;
}
.select-plan-card .btn-main {
  margin-top: 40px;
}
.select-plan-card:first-child {
  border: 2px solid rgba(223, 145, 38, 0.34);
}
.select-plan-card:nth-child(2) {
  border: 2px solid rgba(219, 72, 38, 0.34);
}
@media screen and (max-width: 1199px) {
  .select-plan-card {
      width: 48%;
  }
  .select-plan-card h4 {
    font-size: 19px;
  }
  .select-plan-card h2 {
    font-size: 60px;
  }
  .select-plan-card ul {
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .select-plan-card h4 {
    font-size: 15px;
  }
  .select-plan-card h2 {
    font-size: 45px;
  }
  .select-plan-card ul {
    padding: 0 15px;
    font-size: 14px;
  }
  .select-plan-card ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .select-plan-card {
    width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .select-plan-card h4 {
    font-size: 21px;
  }
  .select-plan-card h2 {
    font-size: 45px;
  }
  .select-plan-card ul {
    padding: 0 25px;
    font-size: 16px;
  }
  .select-plan-card ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .select-plan-card {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .select-plan-card h4 {
    font-size: 21px;
  }
  .select-plan-card h2 {
    font-size: 45px;
  }
  .select-plan-card ul {
    padding: 0 25px;
    font-size: 16px;
  }
  .select-plan-card ul li {
    font-size: 16px;
  }
}

.left-bar {
  position: absolute;
  left: 0;
  top: 0;
}

.right-bar {
  position: absolute;
  right: 0;
  top: 0;
}

.read-me {
  color: #EF6925;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s;
  text-transform: uppercase;
  cursor: pointer;
}
.read-me:hover {
  filter: brightness(85%);
}

.custom-package-main {
  border: 2px solid rgba(224, 73, 39, 0.24);
  border-radius: 8px;
  padding: 50px 0;
}
.custom-package-main .feature-badge {
  font-size: 16px;
}
.custom-package-main h4 {
  text-transform: uppercase;
  margin-bottom: 25px;
}
.custom-package-main h2 {
  color: #EF6925;
  font-size: 80px;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  background-color: #F5F5FC;
  width: calc(100% + 4px);
  margin-left: -2px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.custom-package-main .custom-package-list {
  max-width: 1038px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .custom-package-main h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 576px) {
  .custom-package-main h2 {
    font-size: 44px;
  }
}

.bubble-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 25px;
}
.bubble-list li {
  border-top: 1px solid rgba(224, 73, 39, 0.34);
  position: relative;
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
  padding: 20px 0 0;
  margin: 0 0 15px;
  line-height: 1.38;
}
.bubble-list li:first-child {
  border-top: none;
}
.bubble-list li:first-child::before {
  display: none;
}
.bubble-list li strong {
  font-weight: bold;
}
.bubble-list li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: rgba(224, 73, 39, 0.34);
}
@media screen and (max-width: 992px) {
  .bubble-list li li {
    font-size: 16px;
  }
}
.bubble-list.half-list {
  justify-content: space-between;
}
.bubble-list.half-list li {
  width: 43%;
}
.bubble-list.half-list li:nth-child(2) {
  border-top: none;
}
.bubble-list.half-list li:nth-child(2)::before {
  display: none;
}
.bubble-list.half-list li:last-child {
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .bubble-list.half-list li {
    width: 48%;
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .bubble-list.half-list li {
    width: 100%;
    font-size: 16px;
  }
  .bubble-list.half-list li:nth-child(2) {
    border-top: 1px solid rgba(224, 73, 39, 0.34);
  }
  .bubble-list.half-list li:nth-child(2)::before {
    display: block;
  }
}

.features-need-now-section {
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .features-need-now-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .features-need-now-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .features-need-now-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 576px) {
  .features-need-now-section {
    padding: 60px 0;
  }
}

.features-need-now-tabs-main {
  margin: 50px 0 0;
}

.features-need-now-tab-content {
  margin: 60px 0 0;
}

.features-need-now-tabs {
  border: none;
  max-width: 771px;
  margin: 0 auto;
  justify-content: space-between;
}
.features-need-now-tabs a {
  text-decoration: none;
  font-size: 21px;
  font-weight: normal;
  color: #11111C;
  text-transform: uppercase;
  transition: 0.5s;
}
.features-need-now-tabs a:hover, .features-need-now-tabs a.active {
  color: #EF6925;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .features-need-now-tabs a {
    font-size: 16px;
  }
}

.support-help-section {
  padding: 50px 0;
}

.support-help-content {
  font-size: 16px;
  font-weight: normal;
  color: #11111C;
  padding-left: 10%;
}
.support-help-content p {
  margin-bottom: 10px;
}
.support-help-content p a {
  color: #EF6925;
}
.support-help-content p a:hover {
  filter: brightness(85%);
}
.support-help-content span {
  display: inline-block;
  width: 100%;
  color: rgba(17, 17, 28, 0.4);
}
.support-help-content .btn-main {
  margin: 30px 0 20px;
}
@media screen and (max-width: 992px) {
  .support-help-content {
    padding-left: 0;
  }
  .support-help-content .btn-main {
    margin: 20px 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .support-help-content {
    margin-top: 50px;
  }
}

.customer-stories-section .testimonial-card img {
  box-shadow: none;
  border-radius: 0;
}

/*# sourceMappingURL=style.css.map */
