@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.main-btn {
  background: #f47f1f !important;
  color: white !important;
  font-size: clamp(13px, 1.5vw, 16px) !important;
  font-weight: 700 !important;
  padding: 10px 30px !important;
  border-radius: 50px !important;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #213e62;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 50px !important;
}
.main-btn:hover::before {
  width: 100%;
}
.main-btn:hover {
  color: white !important;
  border: unset;
}

.plain-btn {
  color: #f47f1f !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  position: relative !important;
  display: inline-block;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.plain-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #f47f1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.plain-btn:hover::after {
  transform: scaleX(1);
}

.main-title {
  text-align: center;
  color: #213e62;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.sub-title {
  font-size: clamp(16px, 5vw, 18px);
  color: #f47f1f;
}

.decorated-heading {
  position: relative;
  padding-bottom: 20px;
}
.decorated-heading::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 1px;
  background: #707070;
  bottom: 3px;
  left: 0;
}
.decorated-heading::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 8px;
  border: 1px solid #707070;
  border-radius: 10px;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 9;
}

p {
  font-weight: 400;
  color: #4D4D4F;
}

.container {
  max-width: 1140px;
}

.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}
.input-icon input {
  width: 100%;
  padding-left: 30px;
  min-height: 50px !important;
}

.navbar {
  background-color: #213e62;
  height: 75px;
  z-index: 99;
  max-width: 1466px !important;
  margin: 0 auto;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  padding: 0px 35px !important;
}
.navbar .navbar-brand img {
  max-height: 50px;
  width: 100%;
  max-width: 200px;
}
.navbar .navbar-collapse {
  justify-content: end;
}
.navbar .nav-link {
  color: white !important;
  padding: 0 30px !important;
}
.navbar .navbar-icons a {
  text-decoration: none;
}
.navbar .navbar-icons i {
  padding: 0.5rem 1rem;
  color: white !important;
  font-size: 18px;
}
.navbar .navbar-list {
  display: flex;
  align-items: center;
}
.navbar .search-form {
  display: none;
  background: #f47f1f;
  height: 60px;
  position: absolute;
  z-index: 99;
  top: 75px;
  width: 100%;
  left: 0;
}
.navbar .search-form input {
  border: unset;
  background: transparent;
  height: 100%;
  padding: 20px;
  width: 100%;
}
.navbar .search-form input::-moz-placeholder {
  color: #fff;
  font-size: 18px;
}
.navbar .search-form input::placeholder {
  color: #fff;
  font-size: 18px;
}
.navbar .search-form i {
  position: absolute;
  right: 20px;
  top: 30%;
  font-size: 25px;
  color: white;
}
.navbar .search-form.active {
  display: block;
}

#menuIcon {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: inline-block;
}
#menuIcon i {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease;
}
#menuIcon .plus-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
#menuIcon:hover .icon-bars {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}
#menuIcon:hover .plus-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.sidenav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.sidenav.active {
  right: 0;
}
.sidenav__inner {
  padding: 20px;
}
.sidenav i.fa-x {
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
  position: absolute;
  left: auto;
  right: 15px;
  top: 40px;
  transform: rotate(0deg) scale(1);
  transition: transform 1.6s ease;
}
.sidenav i.fa-x:hover {
  transform: rotate(360deg) scale(1);
}
.sidenav .sidenav__nav li a {
  position: relative;
  display: inline-block;
  font-size: 1.2rem !important;
  line-height: 1.8;
  text-decoration: none;
  overflow: hidden;
  color: #5D5D5D;
  background: linear-gradient(to right, #f47f1f 50%, #5D5D5D 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
}
.sidenav .sidenav__nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #f47f1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sidenav .sidenav__nav li a:hover {
  background-position: left bottom;
}
.sidenav .sidenav__nav li a:hover::after {
  transform: scaleX(1);
}
.sidenav .sidenav__nav li a.active {
  background-position: left bottom;
}
.sidenav .header-sidenav-sociallist ul {
  list-style: none;
  display: flex;
  padding: 0px;
  gap: 10px;
}
.sidenav .header-sidenav-sociallist ul i {
  color: #5D5D5D;
  font-size: 30px;
  transition: 0.5s all;
}
.sidenav .header-sidenav-sociallist ul i:hover {
  color: #f47f1f;
}
.sidenav .sidenav__inner {
  width: 100%;
}
.sidenav .sidenav-selectors a {
  font-size: 1.2rem !important;
  line-height: 1.8;
  color: #5D5D5D;
  text-decoration: none;
}
.sidenav .sidenav-selectors .dropdown:nth-child(2) {
  border-bottom: 1px solid #dee2e6;
  padding: 20px 0px;
  margin-bottom: 20px;
}

.hero-section {
  height: 580px;
  max-width: 1466px;
  margin: 0 auto;
  margin-top: 75px;
}
.hero-section .carousel-fade .carousel-item {
  transition: opacity 0.5s ease-in-out !important;
}
.hero-section .carousel-caption {
  right: unset;
  top: 20px;
  left: 5%;
  color: #fff;
  text-align: left;
  width: 60%;
  z-index: 99;
}
.hero-section .carousel-caption h1 {
  font-weight: 900;
  font-size: clamp(24px, 5vw, 48px);
}
.hero-section .carousel-caption p {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: white;
}
.hero-section .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.track-cards {
  position: relative;
  max-width: 1140px;
  margin: 0 auto !important;
  margin-top: -50px !important;
  padding-bottom: 40px;
  z-index: 9;
}
.track-cards .row {
  justify-content: space-evenly;
}
.track-cards .card-column {
  min-height: 500px;
  max-width: 30% !important;
  background-image: url(../img/cards-border.png);
  background-size: 100% 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.2s ease;
}
.track-cards .card-column:hover {
  transform: scale(1.1);
}
.track-cards .card-column h1 {
  color: #213e62;
  margin: 15px 0 30px;
  font-size: 26px;
  font-weight: 700;
  z-index: 99;
}
.track-cards .card-column input, .track-cards .card-column textarea {
  border: 1px solid #6396d5;
  border-radius: 7px;
}
.track-cards .card-column .shipment-number-input {
  margin: auto 5px;
  gap: 10px;
}
.track-cards .card-column .shipment-number-input input {
  color: #212529;
  padding: 0.3rem 0.4rem !important;
}
.track-cards .card-column .shipment-number-input label {
  font-size: 14px;
  color: #212529;
  transform: translateZ(0);
  font-variant: all-small-caps;
  font-weight: 500;
  display: block;
  padding: 5px 0px;
}
.track-cards .card-column textarea {
  width: 90%;
  margin: auto 10px;
  padding: 13px 15px;
}
.track-cards .card-column p {
  text-align: center;
  font-size: clamp(13px, 4vw, 15px);
  color: #6c757d;
}
.track-cards .card-column:nth-child(2) img {
  width: 90%;
}
.track-cards .service-center img {
  height: 200px;
  margin-top: -65px;
  padding: 20px 0;
}
.track-cards .service-center p {
  padding: 90px 45px 58px !important;
}
.track-cards .button-group {
  margin-top: 10px;
}
.track-cards .button-group button {
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  font-size: 12px;
}
.track-cards .button-group button.active {
  background-color: #b0d3ff;
}

.services-section {
  min-height: 500px;
  max-height: 1100px;
  position: relative;
}
.services-section img {
  width: 100%;
  height: 650px;
}
.services-section .service-links {
  list-style: none;
  position: absolute;
  top: 22%;
  z-index: 9;
  right: -6%;
  left: auto;
  background-color: #ffffff;
  width: 350px;
  height: 100%;
  max-height: 500px;
  margin: 0;
  transform: translateX(22%) !important;
  padding: 30px;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.services-section .service-links li {
  cursor: pointer;
  padding: 10px;
  color: #777;
  transition: all 0.3s;
  position: relative;
}
.services-section .service-links li i {
  color: #f47f1f;
}
.services-section .service-links li a {
  color: #4D4D4F;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 24px;
  z-index: 1;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
}
.services-section .service-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 0%;
  height: 100%;
  background: #f47f1f;
  z-index: -1;
  transition: width 0.4s ease;
  background-position: left bottom;
  background-size: 201% 100%;
}
.services-section .service-links li:hover a::before {
  width: 120%;
}
.services-section .service-links li.active a::before {
  width: 120%;
}
.services-section .service-links li:hover a, .services-section .service-links li.active a {
  color: #fff;
}
.services-section .service-links li:hover a i, .services-section .service-links li.active a i {
  display: none;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  width: auto !important;
  color: #ffffff;
  top: auto !important;
  bottom: -3% !important;
}
.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-prev .carousel-control-next-icon,
.carousel-control-next .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  width: 60px;
  height: 40px;
  background-color: #f47f1f;
  border-radius: 50px;
  background-image: none !important;
  transition: all ease 0.8s;
  position: relative;
  z-index: 99;
  opacity: 1 !important;
  color: transparent;
  margin: 0 7px;
}
.carousel-control-prev .carousel-control-prev-icon .fa-solid,
.carousel-control-prev .carousel-control-next-icon .fa-solid,
.carousel-control-next .carousel-control-prev-icon .fa-solid,
.carousel-control-next .carousel-control-next-icon .fa-solid {
  color: #ffffff !important;
  font-size: 20px;
  position: absolute;
  left: 27%;
  right: 0px;
  top: 11px;
}
.carousel-control-prev .carousel-control-prev-icon:hover,
.carousel-control-prev .carousel-control-next-icon:hover,
.carousel-control-next .carousel-control-prev-icon:hover,
.carousel-control-next .carousel-control-next-icon:hover {
  background-color: #213e62;
}

.carousel-control-prev {
  left: 40% !important;
}

.carousel-control-next {
  right: 45% !important;
}

#hover-prev-icon,
#hover-next-icon {
  display: none !important;
  color: #f47f1f !important;
}

#hover-prev-icon {
  left: 50%;
}

#hover-next-icon {
  left: 10%;
}

.carousel-control-prev .carousel-control-prev-icon:hover {
  width: 70px;
}
.carousel-control-prev .carousel-control-prev-icon:hover #hover-prev-icon {
  display: block !important;
}

.carousel-control-next .carousel-control-next-icon:hover {
  width: 70px;
}
.carousel-control-next .carousel-control-next-icon:hover .fa-solid {
  left: 35%;
}
.carousel-control-next .carousel-control-next-icon:hover #hover-next-icon {
  display: block !important;
}

.industry-sectors {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.industry-sectors .row {
  align-items: center;
  justify-content: space-between;
}
.industry-sectors .owl_slider {
  flex: 0 0 55%;
  max-width: 55%;
}
.industry-sectors .owl-carousel .owl-item {
  text-align: center;
}
.industry-sectors .owl-carousel .owl-item .view-image {
  height: 150px;
  width: 204px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industry-sectors .owl-carousel .owl-item img {
  display: block;
  width: 114px;
  height: 110px;
}
.industry-sectors .owl-carousel .owl-item h1 {
  color: #666666;
  font-size: 16px;
  text-transform: uppercase;
}
.industry-sectors .industry-content {
  flex: 0 0 45%;
  max-width: 45%;
  background-color: #ffffff;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  padding: 5px 40px 20px;
  text-align: center;
}
.industry-sectors .industry-content p {
  color: #666666;
  line-height: 24px;
  font-size: clamp(14px, 4vw, 17px);
  margin: 15px 0 28px;
}

.owl-carousel .owl-nav {
  position: relative;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  width: auto !important;
  color: #ffffff;
  top: 30px !important;
  bottom: -5% !important;
}
.owl-carousel .owl-prev {
  left: 38% !important;
}
.owl-carousel .owl-next {
  right: 38% !important;
}
.owl-carousel .owl-prev .fa-angles-left, .owl-carousel .owl-prev .fa-angles-right,
.owl-carousel .owl-next .fa-angles-left,
.owl-carousel .owl-next .fa-angles-right {
  width: 60px;
  height: 40px;
  background-color: #f47f1f;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.8s;
  font-size: 20px;
  color: #fff;
}
.owl-carousel .owl-prev .fa-angles-left:hover, .owl-carousel .owl-prev .fa-angles-right:hover,
.owl-carousel .owl-next .fa-angles-left:hover,
.owl-carousel .owl-next .fa-angles-right:hover {
  background-color: #213e62;
  width: 70px;
}

.owl-prev:hover #hover-prev-icon,
.owl-next:hover #hover-next-icon {
  position: absolute;
  display: block !important;
  font-size: 20px;
}

.integrated-solutions {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.integrated-solutions .col-12 {
  padding: 50px 0;
}
.integrated-solutions .solution-section {
  margin-right: 10%;
  border-radius: 25px;
  box-shadow: 1px 1px 7px 5px rgba(67, 0, 154, 0.1);
  position: relative;
  height: 275px;
  transition: all 0.5s;
  border: 0px solid transparent;
}
.integrated-solutions .solution-section img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.integrated-solutions .solution-section .solution-content {
  position: absolute;
  background-color: #ffffff;
  bottom: -9%;
  right: -8%;
  width: 330px;
  padding: 15px;
  border-bottom-left-radius: 5px;
  border: 1px solid #ffffff;
  border-bottom-right-radius: 5px;
  transition: all 1s;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  z-index: 2;
}
.integrated-solutions .solution-section .solution-content h1 {
  font-size: 18px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  text-align: center;
  color: #213e62;
}
.integrated-solutions .solution-section .solution-content p {
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 22px;
  color: #666;
}
.integrated-solutions .solution-section:hover {
  border: 10px solid white;
  box-shadow: 1px 1px 7px 5px rgba(67, 0, 154, 0.1);
}
.integrated-solutions .solution-section:hover .solution-content {
  box-shadow: 1px 1px 13px 4px rgba(67, 0, 154, 0.3);
  bottom: 15%;
  transition: all 0.5s;
}

.mobile-app {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  margin: auto !important;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  text-align: center;
  overflow: hidden;
}
.mobile-app h1 {
  font-size: 18px;
  font-weight: 500;
  color: #213e62;
}
.mobile-app h2 {
  font-size: 26px;
  font-weight: 700;
  color: #213e62;
}
.mobile-app p {
  font-size: clamp(14px, 4vw, 17px);
  color: #666666;
  line-height: 24px;
  padding: 10px;
  margin: 0;
}

.footer {
  background-color: #F9F9F9;
  padding: 30px 0 0;
  max-width: 1466px;
  margin: 70px auto 0;
}
.footer .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 2rem;
}
.footer .social-icons span {
  font-weight: 500;
  font-size: 16px;
  color: #2A2A2A;
}
.footer .social-icons a {
  text-decoration: none;
}
.footer .social-icons a i {
  color: #5D5D5D;
  font-size: 30px;
  transition: 0.5s all;
}
.footer .social-icons a i:hover {
  color: #f47f1f;
}
.footer .navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer .navigation ul li a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 1rem !important;
}
.footer .navigation ul li a.active {
  color: #f47f1f;
}
.footer .navigation ul li a:hover {
  color: #f47f1f;
}
.footer .navigation ul li a::after {
  content: "";
  height: 10px;
  width: 1px;
  background: #666;
  position: absolute;
  top: 40%;
  right: 0;
}
.footer .navigation ul li:last-child a::after {
  display: none;
}
.footer .copy-rights {
  background-color: #f47f1f;
  text-align: center;
}
.footer .copy-rights p {
  font-size: clamp(14px, 4vw, 15px);
  font-weight: 600;
  color: white;
  padding: 15px 0px;
  margin: 0px !important;
}

.pages-hero-section {
  position: relative;
  max-width: 1466px;
  height: 260px;
  margin: 0 auto;
  margin-top: 75px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.pages-hero-section h1 {
  color: white;
  font-size: clamp(25px, 4vw, 50px);
  font-weight: bold;
  z-index: 2;
  text-transform: uppercase;
}

.about-bg-image {
  background-image: url("../assets/images/about_us.png");
}

.services-bg-image {
  background-image: url("../assets/images/services/hero-image.png");
}

.contact-bg-image {
  background-image: url("../assets/images/contact-us.png");
}
.contact-bg-image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.FAQ-bg-image {
  background-image: url("../assets/images/FAQ.png");
  height: 280px;
  flex-direction: column;
}
.FAQ-bg-image .input-icon {
  z-index: 2;
  width: 40%;
}
.FAQ-bg-image .input-icon i {
  left: unset;
  right: 20px;
  color: #f47f1f;
}
.FAQ-bg-image .input-icon input {
  border: unset !important;
  border-radius: 10px;
}

.regions-bg-image {
  background-image: url("../assets/images/coverage-regions.png");
}

.industries-bg-image {
  background-image: url("../assets/images/industries.png");
  height: 280px;
}

.terms_conditions_bg_image {
  background-image: url("../assets/images/terms&conditions.png");
}
.terms_conditions_bg_image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.return-policy-bg-image {
  background-image: url("../assets/images/return_policy.png");
}
.return-policy-bg-image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.compensation-policy-bg-image {
  background-image: url("../assets/images/compensation-policy.png");
}
.compensation-policy-bg-image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.packages-bg-image {
  background-image: url("../assets/images/shipping-packages.png");
}
.packages-bg-image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.privacy_policy_bg_image {
  background-image: url("../assets/images/privacy-policy.png");
}
.privacy_policy_bg_image .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.service-bg {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.service1-bg-image {
  background-image: url("../assets/images/services/express-shipping.png");
}

.service2-bg-image {
  background-image: url("../assets/images/services/Freight.png");
}

.service3-bg-image {
  background-image: url("../assets/images/services/logistics.png");
}

.service4-bg-image {
  background-image: url("../assets/images/services/E-commerce.png");
}

.service5-bg-image {
  background-image: url("../assets/images/services/dangerous_goods.png");
}

.service6-bg-image {
  background-image: url("../assets/images/services/packaging_solutions.png");
}

.solution1-bg-image {
  background-image: url("../assets/images/delivery-solution.png");
}

.solution2-bg-image {
  background-image: url("../assets/images/smart-ship.png");
}

.solution3-bg-image {
  background-image: url("../assets/images/postal-solution.png");
}

.solution4-bg-image {
  background-image: url("../assets/images/medical-solution.png");
}

.breadcrumb-nav {
  margin: 20px 0px;
}
.breadcrumb-nav .breadcrumb {
  background-color: transparent;
}
.breadcrumb-nav .breadcrumb li {
  color: #213e62;
}
.breadcrumb-nav .breadcrumb li a {
  text-decoration: none;
  color: #213e62;
}
.breadcrumb-nav .breadcrumb li a:hover {
  color: #f47f1f;
}
.breadcrumb-nav .breadcrumb li.active {
  color: #f47f1f;
}

.tabs-container .col-md-9 {
  padding-left: 5%;
}
.tabs-container .decorated-heading::after {
  width: 95%;
}

.nav-pills {
  padding-right: 5%;
}
.nav-pills .nav-link {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #4D4D4F;
  font-weight: 400;
  padding: 15px 10px 15px 20px;
  position: relative;
  width: 100%;
  margin-left: unset;
  transition: all 0.5s;
}
.nav-pills .nav-link i {
  margin-right: 10px;
}
.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
  background-color: #ffe5dd !important;
  color: #f47f1f !important;
  padding: 15px 10px 15px 30px !important;
}

.tab-content h1 {
  text-align: left;
}
.tab-content p {
  font-weight: 400;
  font-size: clamp(14px, 4vw, 16px);
  color: #4D4D4F;
}

.services-solutions .col-12 {
  padding: 0px;
  display: flex;
  justify-content: center;
}
.services-solutions {
  padding-bottom: 6rem;
}
.services-solutions .solution-section {
  box-shadow: unset;
  border-radius: 0;
  height: 300px;
  width: 90%;
  margin: unset;
}
.services-solutions .solution-section img {
  border-radius: 0;
  transform: scale(1);
  transition: all 0.5s;
}
.services-solutions .solution-section .solution-content {
  top: 80%;
  bottom: unset;
  right: 4%;
  width: 90%;
  min-height: 200px;
}
.services-solutions .solution-section:hover {
  border: unset;
  box-shadow: unset;
}
.services-solutions .solution-section:hover img {
  transform: scale(1.05);
}
.services-solutions .solution-section:hover .solution-content {
  bottom: unset;
  transition: all 0.5s;
  top: 70%;
}
.services-solutions :nth-child(3) .solution-section, .services-solutions :nth-child(4) .solution-section {
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.contact-info {
  background-color: white;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  padding: 30px;
  height: 100%;
}
.contact-info h1 {
  color: #4D4D4F;
  font-weight: 600;
  margin-bottom: 3rem;
  font-size: 17px;
}
.contact-info p {
  color: #4D4D4F;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 40px;
}
.contact-info p i {
  color: #f47f1f;
  padding-right: 30px;
}
.contact-info a {
  color: #4D4D4F;
  text-decoration: none !important;
}
.contact-info a:hover {
  color: #f47f1f;
}

.contact-section {
  margin: 5rem 0px;
}
.contact-section h1 {
  text-align: left;
}
.contact-section .form--underline .form-control {
  border: unset !important;
  border-bottom: 1px solid #ced4da !important;
  border-radius: unset !important;
}
.contact-section p {
  font-weight: 400;
  color: #4D4D4F;
  font-size: clamp(15px, 4vw, 18px);
}
.contact-section label {
  margin-top: 20px;
  margin-bottom: 5px;
}

.custom-file-input {
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 0.35rem;
  display: block;
}
.custom-file-input::file-selector-button {
  background-color: #f47f1f;
  color: #fff;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
}
.custom-file-input::file-selector-button:hover {
  background-color: #213e62;
}

.accordion-button {
  font-weight: 900 !important;
}

.industries-section {
  row-gap: 40px;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.industries-section .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: unset;
  transition: all ease 0.5s;
  margin-top: 0px;
}
.industries-section .col-12 h1 {
  color: #4D4D4F;
  font-size: 18px;
  margin-top: 30px;
  height: 60px;
  display: inline-block;
  font-weight: 500;
  text-align: center;
}
.industries-section .col-12:hover {
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  margin-top: -20px;
  cursor: pointer;
}
.industries-section .col-12:hover h1 {
  color: #f47f1f;
}

.track-shipment-section {
  margin-top: 10rem !important;
}
.track-shipment-section .row {
  padding-left: 20px;
}
.track-shipment-section .card-column {
  max-width: 100% !important;
  background-image: unset;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.track-shipment-section .card-column textarea {
  width: 80%;
}
.track-shipment-section .card-column img {
  width: 80%;
}

.track_trace {
  margin-top: 10rem !important;
  background-image: url("../assets/images/whatsapp.png");
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.custom-table th, .custom-table td {
  vertical-align: middle;
}
.custom-table .table-dark th {
  background-color: #213e62 !important;
  border-color: #ffffff !important;
}

.partners-breadcrumb {
  margin-top: 95px;
}

.partners-section .row {
  align-items: center;
}
.partners-section .row h1 {
  text-align: left;
  font-size: clamp(15px, 4vw, 20px) !important;
}
.partners-section .row img {
  width: 100%;
  max-width: 200px;
}
.partners-section .row p {
  font-size: clamp(13px, 1.5vw, 16px) !important;
  margin-right: 2rem;
}
.partners-section .row .col-md-3 {
  text-align: center;
}

.coverage-regions h1, .policy-container h1 {
  text-align: left;
}

.shipping-card {
  width: 100%;
  box-shadow: 0 38px 48px rgba(35, 7, 159, 0.1);
  padding: 1rem 1.5rem;
  min-height: 400px;
}
.shipping-card .main-title {
  text-align: left;
  font-size: clamp(18px, 5vw, 22px);
}
.shipping-card p, .shipping-card li {
  font-size: clamp(13px, 1.5vw, 16px);
}

.mt-7 {
  margin-top: 7rem !important;
}

.customer-service h1 {
  text-align: left !important;
}
.customer-service .contact-info {
  box-shadow: unset;
  padding: unset;
  height: auto;
}

.privacy-note {
  background-color: rgba(244, 127, 31, 0.1) !important;
  border-left: 4px solid #f47f1f;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-top: 3rem;
}
.privacy-note p {
  color: rgb(164.9021276596, 78.770212766, 8.0978723404);
}

.tracking-section {
  margin: 3rem 0;
}
.tracking-section .main-title {
  text-align: left;
}
.tracking-section .tracking-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  position: relative;
}
.tracking-section .tracking-steps::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ddd;
}
.tracking-section .tracking-steps .step {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.tracking-section .tracking-steps .step .step-circle {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: #ddd;
  border-radius: 50%;
}
.tracking-section .tracking-steps .step p {
  margin: 0;
  color: #555;
}
.tracking-section .tracking-steps .step.active .step-circle {
  background-color: #f47f1f;
}
.tracking-section .tracking-steps .step.active p {
  font-weight: 600;
  color: #000;
}
.tracking-section .tracking-steps .step.completed .step-circle {
  background-color: #28a745;
}/*# sourceMappingURL=main.css.map */