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

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #fefefe;
  overflow-x: hidden;
  color: #191919;
  font-family: 'Inter', sans-serif;
}

/*.....Header1....*/
.header-one {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px 30px;
  background: linear-gradient(90deg,
      #fc0 0%,
      #fc0 48%,
      #ffe57f 70%,
      #fff0b2 100%);
}

.header-one .tag-line {
  margin: auto 0;
}

.header-one .tag-line p {
  color: #191919;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.header-one .lang-btn .btn {
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1px solid #191919;
  color: #191919;
  border-radius: 5px;
}


/*.....Menu....*/
.menu-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 30px;
  border-bottom: 1px solid #ccc;
}

.menu-bar .menu-logo a {
  text-decoration: none;
}

.menu-bar .menu-logo a img {
  width: 210px;
}

.menu-bar .menu-btn {
  margin: auto 0;
}

.menu-bar .menu-btn a {
  text-decoration: none;
}

.menu-bar .menu-btn .btn {
  background: #d40511;
  border: 1px solid #d40511;
  color: #f2f2f2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 5px;
  letter-spacing: 0.3px;

  box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.2);
}

.menu-bar .menu-btn .btn:hover {
  background: #d9000b;
}


/*.....Hero....*/

.hero-section {
  position: relative;
  width: 100%;
  height: 75vh;
  background-image: url("../images/home/hero-logistics.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .hero-details {
  position: relative;
  z-index: 1;
}


.hero-section .hero-content {
  display: flex;
  flex: auto;
  justify-content: center;
  align-items: center;

}

.hero-content .track-shippment {
  padding: 90px 30px 45px;
  min-width: 50%;

}

.hero-content .track-shippment h3 {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}

.hero-content .form-group {
  display: flex;
  border: 1px solid #fff;
  padding: 2px;
  border-radius: 5px;
  background: #fff;
}

.hero-content .form-group input {
  width: 100%;
  height: 50px;
  font-weight: 500;
  color: #666;
  border-radius: 1px;
  border: 1px solid #fff;
}

.hero-content .form-group input:focus {
  box-shadow: none;
  outline: none;
}

.hero-content .form-group .btn {
  height: 50px;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 700;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #d40511;
  background: #d40511;
}

/*.....hero-information....*/
.hero-section .hero-info-wrapper {
  display: flex;
  flex: auto;
  justify-content: center;
}

.hero-section .hero-info-wrapper .hero-information {
  max-width: 800px;
  display: flex;
  flex-direction: row;
  position: relative;
  top: 75px;
}


.hero-section .hero-info-wrapper .hero-information p.title {
  color: #191919;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 18px;
  margin-bottom: 10px;
  padding: 0;
}


.hero-section .hero-info-wrapper .hero-information p.sub-title {
  color: #666;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.hero-section .hero-info-wrapper .hero-information .ship-now {
  border-radius: 4px 0px 0px 4px;
  background: #fff;
  justify-content: center;
  text-align: center;
  width: 30%;
  height: 140px;
  padding: 25px 20px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-info-wrapper .hero-information .get-quote {
  background: #fff;
  justify-content: center;
  text-align: center;
  padding: 25px 25px;
  border-radius: 1px;
  width: 33%;
  height: 140px;

  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-info-wrapper .hero-information .fdx-biz {
  background: #fff;
  justify-content: center;
  align-self: center;
  text-align: center;
  padding: 25px 25px;
  width: 37%;
  height: 170px;
  position: relative;
  top: -30px;
  border-radius: 4px 4px 4px 1px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-info-wrapper .hero-information .box-hero:hover {
  cursor: pointer;
}

.hero-section .hero-info-wrapper .hero-information .box-hero:hover p.title {
  color: #d40511;

}

.hero-section .hero-info-wrapper .hero-information img {
  text-align: center;
  margin-bottom: 5px;
}



/*.....Important Service UpdatesImportant Service Updates....*/
.service-update {
  margin-top: 8%;
  background: #f2f2f2;
  padding: 30px 50px;
}

.service-update .news-update {
  margin-top: 20px;
}

.service-update h3 {
  color: #191919;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-update .update-box {
  box-shadow: 0px 1px 4px 0px rgba(50, 50, 50, 0.5);
  border-radius: 5px;
  background: #fff;
  display: flex;
  flex-direction: row;
  padding: 25px 15px;
}

.service-update .update-box:hover {
  cursor: pointer;
}

.service-update .update-box:hover .update-box-body p.title {
  color: #d40511;
  text-decoration: underline;
}

.service-update .update-box .update-box-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 1px solid #ccc;
  padding: 0 10px;
}

.service-update .update-box .update-box-body p.title {
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  width: 100%;
}

.service-update .update-box .update-box-body p {
  color: #191919;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  max-width: 90%;
}

.service-update .update-box .update-box-body .update-box-icon {
  margin: auto 0;
}

.service-update .update-box .main-icon {
  width: 40px;
  margin-right: 15px;
  text-align: center;
}



/*.....document-shipping....*/
.container-margin {
  margin-top: 8%;
}

.document-shipping {
  padding: 20px 40px;
}

.document-shipping .col-details {
  margin: auto 0;
}

.document-details {
  border-radius: 6px;
  background: #fff;
  padding-bottom: 10px;
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}

.document-details .details-one {
  padding: 30px;
}


.document-details .details-one h3 {
  color: #191919;
  font-size: 30px;
  font-weight: 800;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 15px;
}

.document-details .details-one p {
  margin: 0;
  padding: 0;
}

.document-details .details-one p.p-1 {
  margin-bottom: 10px;
  color: #191919;
  font-size: 21px;
  font-weight: 400;
  text-decoration: underline;
}

.document-details .details-one .p-2 {
  color: #191919;
  font-size: 15px;
  font-weight: 200;
  font-weight: 300;
}

.document-details .details-two {
  background: #f2f2f2;
  margin-top: 10px;
  padding: 30px 30px 10px;
}

.document-details .details-two h3 {
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.document-details .details-two .details-two-col {
  display: flex;
  margin-bottom: 25px;
}

.document-details .details-two .details-two-col img {
  width: 25px;
  margin-right: 8px;
}

.document-details .details-two .details-two-col p {
  color: #191919;
  font-size: 14px;
  font-weight: 400;
  margin: auto 0;
}

.document-details .details-button {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 15px;
}

.document-details .details-button .btn {
  width: 80%;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 5px;
  background: #d40511;
  border: 1px solid #d40511;
  color: #fff;
}

.document-details .details-button .btn:hover {
  background: #ea2731;
}

.document-shipping .document-image {
  text-align: center;
}

.document-shipping .document-image img {
  width: 100%;
}


/*.....retailer....*/
.retailer {
  background: #f2f2f2;
  padding: 0 40px;
}

.retailer .retailer-image img {
  width: 100%;
}

.retailer-details {
  padding: 50px;
}

.retailer-details .retailer-one h2 {
  color: #191919;
  font-size: 30px;
  font-weight: 800;
}

.retailer-details .retailer-one .p-1 {
  color: #191919;
  font-size: 21px;
  font-weight: 400;
  text-decoration: underline;
}

.retailer-details .retailer-one .p-2 {
  color: #191919;
  font-size: 15px;
  font-weight: 300;
}

.retailer-box-section {
  margin-top: 25px;
}

.retailer-box-section .retailer-box {
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(50, 50, 50, 0.5);
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 5px;
  display: flex;
  cursor: pointer;
}

.retailer-box .retailer-box-img img {
  width: 37px;
  margin-right: 15px;
}

.retailer-box .retailer-box-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 1px solid #ccc;
  padding-left: 7px;
}

.retailer-box-details .retailer-box-icon {
  margin: auto 0;
}

.retailer-box-details .retailer-box-body .title {
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}

.retailer-box:hover .retailer-box-body .title {
  color: #d40511;
  text-decoration: underline;
}

.retailer-box-details .retailer-box-body .sub-title {
  color: #191919;
  font-size: 13px;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 0;
  max-width: 95%;
}


/*.....news container ....*/
.news-container {
  padding: 10px 40px;
}

.news-container .card {
  min-height: 450px;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}

.news-container .card:hover {
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.25);
}

.news-container .card .card-img-top {
  overflow: hidden;
  width: 100%;
}

.news-container .card .card-img-top img {
  width: 100%;
  object-fit: cover;
}


.news-container .card .card-body {
  padding: 25px;
}


.news-container .card:hover .card-body .card-title .c-title {
  color: #d40511;
  text-decoration: underline;
}

.news-container .card .card-body .card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-container .card .card-body .card-title .c-title {
  color: #191919;
  font-size: 15px;
  font-weight: 700;
}

.news-container .card .card-body .card-text {
  color: #191919;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}


.news-container .card .card-body img {
  margin-left: 5px;
}

/*.....footer....*/

.footer-wrapper {
  margin-top: 8%;
  border-top: 1px solid #ccc;
}

.footer-wrapper .footer-top {
  padding: 40px;
  background: #fff;
}

.footer-wrapper .footer-top .footer-logo-section img {
  width: 200px;
}

.footer-top .footer-logo-section .footer-logo-story {
  margin-top: 10px;
  font-size: 13px;
  color: #575757;
  font-weight: 500;
  line-height: 23px;
  max-width: 95%;
}

.footer-top .footer-logo-section .footer-socials ul {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
  display: flex;
}

.footer-top .footer-logo-section .footer-socials ul li {
  margin-right: 30px;
  cursor: pointer;
}

.footer-logo-section .footer-socials ul li a {
  text-decoration: none;
  color: #666;
}

.footer-logo-section .footer-socials ul li a .fab {
  font-size: 22px;
}

.footer-wrapper .footer-top .footer-nav .title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #191919;
}

.footer-wrapper .footer-top .footer-nav ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.footer-top .footer-nav ul li {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #575757;
  cursor: pointer;
}

.footer-top .footer-cta .logo-title {
  font-weight: 700;
  font-size: 17px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  color: #191919;
  margin-bottom: 15px;

}

.footer-top .footer-cta p {
  font-size: 13px;
  color: #575757;
  font-weight: 500;
  line-height: 23px;
}

.footer-top .footer-cta .btn {
  margin-top: 5px;
  padding: 12px 25px;
  border-radius: 5px;
  background: #d40511;
  border: 1px solid #d40511;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}


.footer-wrapper .footer-bottom {
  background: #f2f2f2;
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-wrapper .footer-bottom p {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  letter-spacing: normal;
}


/* Track Page Styles */
.track-page-hero {
  background: #f2f2f2;
  padding: 40px;
}

.track-page-hero h3 {
  font-size: 35px;
  letter-spacing: 0.5px;
  color: #191919;
  font-weight: 800;
  text-transform: uppercase;
}

.track-page-hero p {
  font-size: 15px;
  color: #969696;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.track-page-hero .bread-crumb ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  display: flex;
  margin-bottom: 0;
  padding-bottom: 0;
}

.track-page-hero .bread-crumb ul li {
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
  color: #666;
}

.track-page-hero .bread-crumb ul li a {
  text-decoration: none;
  color: #d9000b;
}

.track-page-content {
  padding: 50px 70px;
}

.track-page-content .form-group label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #575757;
}

.track-page-content .form-group input {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  height: 55px;
  border: 1px solid #ccc;
  background: #ededed;
  border-radius: 5px;
}

.track-page-content .form-group input:focus {
  box-shadow: none;
  outline: none;
}

.track-page-content .form-button {
  margin-top: 30px;
}

.track-page-content .form-button .btn {
  padding: 12px 30px;
  border-radius: 5px;
  background: #d40511;
  border: 1px solid #d40511;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 900px) {

  /*.....Header1....*/
  .header-one {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 20px;
  }

  .header-one .tag-line p {
    font-size: 12px;
  }

  .header-one .lang-btn .btn {
    font-size: 12px;
  }


  /*.....Menu....*/
  .menu-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 20px;
  }

  .menu-bar .menu-logo a img {
    width: 180px;
  }

  .menu-bar .menu-btn .btn {
    font-size: 13px;
    padding: 10px 18px;
  }


  /*.....Hero....*/

  .hero-section {
    position: relative;
    width: 100%;
    height: 75%;
    background-image: url("../images/home/hero-logistics.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-content .track-shippment {
    padding: 70px 20px 30px;
    min-width: 65%;

  }

  .hero-content .track-shippment h3 {
    font-size: 24px;
    line-height: 45px;
    margin-bottom: 10px;
  }

  .hero-content .form-group {
    display: flex;
    border: 1px solid #fff;
    padding: 1px;
  }

  .hero-content .form-group input {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .hero-content .form-group .btn {
    height: 47px;
    padding: 10px 35px;
    font-size: 14px;
    border-radius: 0px 4px 4px 0px;
  }

  /*.....hero-information....*/
  .hero-section .hero-info-wrapper {
    display: flex;
    flex: auto;
    justify-content: center;
  }

  .hero-section .hero-info-wrapper .hero-information {
    max-width: 700px;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 65px;
  }

  .hero-section .hero-info-wrapper .hero-information p.title {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
  }


  .hero-section .hero-info-wrapper .hero-information p.sub-title {
    font-size: 12px;
  }

  .hero-section .hero-info-wrapper .hero-information .ship-now {
    width: 30%;
    height: 140px;
    padding: 20px 20px;
  }

  .hero-section .hero-info-wrapper .hero-information .get-quote {
    padding: 20px 20px;
    border-radius: 1px;
    width: 33%;
    height: 140px;
  }

  .hero-section .hero-info-wrapper .hero-information .fdx-biz {
    padding: 20px 20px;
    width: 37%;
    height: 170px;
    top: -30px;
  }



  /*.....Important Service UpdatesImportant Service Updates....*/
  .service-update {
    margin-top: 80px;
    padding: 30px 20px;
  }

  .service-update .news-update {
    margin-top: 20px;
  }

  .service-update h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-update .update-box {
    display: flex;
    flex-direction: row;
    padding: 20px 10px;
    margin-bottom: 20px;
  }


  .service-update .update-box .update-box-body {
    padding: 0 10px;
  }

  .service-update .update-box .update-box-body p.title {
    font-size: 13px;
    width: 100%;
  }

  .service-update .update-box .update-box-body p {
    font-size: 12px;
    max-width: 95%;
  }

  .service-update .update-box .main-icon {
    width: 35px;
    margin-right: 12px;
  }

  /*.....document-shipping....*/
  .container-margin {
    margin-top: 70px;
  }

  .document-shipping {
    padding: 20px 40px;
  }

  .document-shipping .row.cargo-flip {
    flex-direction: column-reverse;
  }

  .document-shipping .col-details {
    margin: 20px 10px 50px;
  }


  .document-details .details-one {
    padding: 30px;
  }


  .document-details .details-one h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .document-details .details-one p.p-1 {
    font-size: 21px;
  }

  .document-details .details-one .p-2 {
    font-size: 15px;
  }

  .document-details .details-two {
    margin-top: 10px;
    padding: 30px 30px 10px;
  }

  .document-details .details-two h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .document-details .details-two .details-two-col img {
    width: 25px;
    margin-right: 8px;
  }

  .document-details .details-two .details-two-col p {
    font-size: 14px;

  }

  .document-details .details-button {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .document-details .details-button .btn {
    width: 70%;
    padding: 12px;
    font-size: 15px;
  }

  .document-shipping .document-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .document-shipping .document-image img {
    width: 70%;
  }


  /*.....retailer....*/
  .retailer {
    margin-top: 20px;
    padding: 0 40px;
  }

  .retailer .retailer-image {
    text-align: center;
  }

  .retailer .retailer-image img {
    width: 80%;
    margin-bottom: 20px;
  }

  .retailer-details {
    padding: 50px;
  }

  .retailer-details .retailer-one h2 {
    font-size: 30px;
  }

  .retailer-details .retailer-one .p-1 {
    font-size: 21px;
  }

  .retailer-details .retailer-one .p-2 {
    font-size: 15px;
  }

  .retailer-box-section {
    margin-top: 25px;
  }

  .retailer-box-section .retailer-box {
    padding: 20px;
    margin-bottom: 25px;
  }

  .retailer-box .retailer-box-img img {
    width: 35px;
    margin-right: 12px;
  }

  .retailer-box-details .retailer-box-body .title {
    font-size: 14px;
  }

  .retailer-box-details .retailer-box-body .sub-title {
    font-size: 13px;
    margin-top: 8px;
    max-width: 95%;
  }


  /*.....news container ....*/
  .news-container {
    padding: 10px 30px;
  }

  .news-container .card {
    min-height: 450px;
    margin-bottom: 30px;
  }


  .news-container .card .card-body {
    padding: 25px;
  }

  .news-container .card .card-body .card-title .c-title {
    font-size: 15px;
  }

  .news-container .card .card-body .card-text {
    font-size: 13px;
  }

  .news-container .card .card-body img {
    margin-left: 5px;
  }

  /*.....footer....*/

  .footer-wrapper {
    margin-top: 80px;
  }

  .footer-wrapper .footer-top {
    padding: 30px;
  }

  .footer-wrapper .footer-top .footer-logo-section {
    margin-bottom: 30px;
  }

  .footer-wrapper .footer-top .footer-logo-section img {
    width: 170px;
  }

  .footer-top .footer-logo-section .footer-logo-story {
    font-size: 12px;
    line-height: 21px;
    max-width: 95%;
  }

  .footer-top .footer-logo-section .footer-socials ul {
    margin-top: 8px;
  }

  .footer-top .footer-logo-section .footer-socials ul li {
    margin-right: 30px;
  }

  .footer-logo-section .footer-socials ul li a .fab {
    font-size: 21px;
  }

  .footer-wrapper .footer-top .footer-nav .title {
    font-size: 16px;
  }

  .footer-wrapper .footer-top .footer-nav ul {
    margin-top: 20px;
  }

  .footer-top .footer-nav ul li {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-top .footer-cta .logo-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;

  }

  .footer-top .footer-cta p {
    font-size: 12px;
    line-height: 22px;
  }

  .footer-top .footer-cta .btn {
    margin-top: 5px;
    padding: 12px 21px;
    font-size: 13px;
  }


  .footer-wrapper .footer-bottom {
    padding: 15px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }


  /* Track Page Styles */
  .track-page-hero {
    background: #f2f2f2;
    padding: 30px;
  }

  .track-page-hero h3 {
    font-size: 30px;

  }

  .track-page-hero p {
    font-size: 13px;
  }

  .track-page-hero .bread-crumb ul {
    margin-top: 15px;
  }

  .track-page-hero .bread-crumb ul li {
    font-size: 13px;
    margin-right: 15px;
  }


  .track-page-content {
    padding: 40px 40px;
  }

  .track-page-content .form-group label {
    font-size: 14px;

  }

  .track-page-content .form-group input {
    font-size: 13px;
    height: 50px;
  }


  .track-page-content .form-button {
    margin-top: 20px;
  }

  .track-page-content .form-button .btn {
    padding: 12px 30px;
    font-size: 14px;
  }

}

@media only screen and (max-width: 768px) {


  /*.....Hero....*/

  .hero-section {
    position: relative;
    width: 100%;
    height: 75%;
    background-image: url("../images/home/hero-logistics.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-content .track-shippment {
    padding: 60px 20px 30px;
    min-width: 80%;

  }

  .hero-content .track-shippment h3 {
    font-size: 22px;
    line-height: 45px;
    margin-bottom: 10px;
  }

  .hero-content .form-group {
    display: flex;
    border: 1px solid #fff;
    padding: 1px;
  }

  .hero-content .form-group input {
    width: 100%;
    height: 45px;
    font-size: 14px;
  }

  .hero-content .form-group .btn {
    height: 45px;
    padding: 10px 35px;
    font-size: 14px;
    border-radius: 0px 4px 4px 0px;
  }

  /*.....hero-information....*/
  .hero-section .hero-info-wrapper {
    display: flex;
    flex: auto;
    justify-content: center;
  }

  .hero-section .hero-info-wrapper .hero-information {
    max-width: 600px;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 65px;
  }

  .hero-section .hero-info-wrapper .hero-information p.title {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
  }


  .hero-section .hero-info-wrapper .hero-information p.sub-title {
    font-size: 12px;
  }

  .hero-section .hero-info-wrapper .hero-information .ship-now {
    width: 30%;
    height: 140px;
    padding: 20px 20px;
  }

  .hero-section .hero-info-wrapper .hero-information .get-quote {
    padding: 20px 20px;
    border-radius: 1px;
    width: 33%;
    height: 140px;
  }

  .hero-section .hero-info-wrapper .hero-information .fdx-biz {
    padding: 20px 20px;
    width: 37%;
    height: 170px;
    top: -30px;
  }

  .footer-wrapper .footer-bottom {
    padding: 12px 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-wrapper .footer-bottom p {
    font-size: 11px;
    letter-spacing: 0.1px;
  }

}

@media only screen and (max-width: 587px) {

  /*.....Header1....*/
  .header-one {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 10px;
  }

  .header-one .tag-line p {
    font-size: 12px;
  }

  .header-one .lang-btn .btn {
    font-size: 12px;
  }

  /*.....Menu....*/
  .menu-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 15px;
  }

  .menu-bar .menu-logo a img {
    width: 160px;
  }

  .menu-bar .menu-btn .btn {
    font-size: 13px;
    padding: 10px 18px;
  }



  /*.....Hero....*/

  .hero-section {
    position: relative;
    width: 100%;
    height: 75%;
    background-image: url("../images/home/hero-logistics.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-content .track-shippment {
    padding: 60px 20px 30px;
    min-width: 80%;

  }

  .hero-content .track-shippment h3 {
    font-size: 22px;
    line-height: 45px;
    margin-bottom: 10px;
  }

  .hero-content .form-group {
    display: flex;
    border: 1px solid #fff;
    padding: 1px;
  }

  .hero-content .form-group input {
    width: 100%;
    height: 45px;
    font-size: 14px;
  }

  .hero-content .form-group .btn {
    height: 45px;
    padding: 10px 35px;
    font-size: 14px;
    border-radius: 0px 4px 4px 0px;
  }

  /*.....hero-information....*/
  .hero-section .hero-info-wrapper {
    display: flex;
    flex: auto;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .hero-section .hero-info-wrapper .hero-information {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: unset;
    top: unset;
  }

  .hero-section .hero-info-wrapper .hero-information p.title {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
  }

  .hero-section .hero-info-wrapper .hero-information p.sub-title {
    font-size: 12px;
  }

  .hero-section .hero-info-wrapper .hero-information .ship-now {
    width: 80%;
    height: 130px;
    border-radius: 5px;
    padding: 20px 20px;
    margin-bottom: 20px;
    top: unset;
    position: unset;
  }

  .hero-section .hero-info-wrapper .hero-information .get-quote {
    width: 80%;
    height: 130px;
    border-radius: 5px;
    padding: 20px 20px;
    margin-bottom: 20px;
    top: unset;
    position: unset;
  }

  .hero-section .hero-info-wrapper .hero-information .fdx-biz {
    width: 80%;
    height: 150px;
    border-radius: 5px;
    padding: 20px 20px;
    margin-bottom: 20px;
    top: unset;
    position: unset;
  }

  /*.....Important Service UpdatesImportant Service Updates....*/
  .service-update {
    margin-top: 70px;
    padding: 40px 20px;
  }

  .service-update .news-update {
    margin-top: 20px;
  }

  .service-update h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .service-update .update-box {
    display: flex;
    flex-direction: row;
    padding: 20px 10px;
    margin-bottom: 15px;
  }


  .service-update .update-box .update-box-body {
    padding: 0 10px;
  }

  .service-update .update-box .update-box-body p.title {
    font-size: 12px;
    width: 100%;
  }

  .service-update .update-box .update-box-body p {
    font-size: 11px;
    max-width: 90%;
  }

  .service-update .update-box .main-icon {
    width: 32px;
    margin-right: 12px;
  }

  /*.....document-shipping....*/
  .container-margin {
    margin-top: 60px;
  }

  .document-shipping {
    padding: 20px 20px;
  }

  .document-shipping .row.cargo-flip {
    flex-direction: column-reverse;
  }

  .document-shipping .col-details {
    margin: 20px 0 40px;
  }


  .document-details .details-one {
    padding: 25px 15px;
  }


  .document-details .details-one h3 {
    font-size: 23px;
    margin-bottom: 15px;
    line-height: 32px;
  }

  .document-details .details-one p.p-1 {
    font-size: 16px;
  }

  .document-details .details-one .p-2 {
    font-size: 14px;
  }

  .document-details .details-two {
    margin-top: 10px;
    padding: 20px 20px 10px;
  }

  .document-details .details-two h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .document-details .details-two .details-two-col img {
    width: 25px;
    margin-right: 8px;
  }

  .document-details .details-two .details-two-col p {
    font-size: 13px;

  }

  .document-details .details-button {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .document-details .details-button .btn {
    width: 70%;
    padding: 12px;
    font-size: 14px;
  }

  .document-shipping .document-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .document-shipping .document-image img {
    width: 80%;
  }


  /*.....retailer....*/
  .retailer {
    margin-top: 20px;
    padding: 0 15px;
  }

  .retailer .retailer-image {
    text-align: center;
  }

  .retailer .retailer-image img {
    width: 80%;
    margin-bottom: 20px;
  }

  .retailer-details {
    padding: 25px 10px;
  }

  .retailer-details .retailer-one h2 {
    font-size: 23px;
    line-height: 32px;
  }

  .retailer-details .retailer-one .p-1 {
    font-size: 16px;
  }

  .retailer-details .retailer-one .p-2 {
    font-size: 13px;
  }

  .retailer-box-section {
    margin-top: 25px;
  }

  .retailer-box-section .retailer-box {
    padding: 20px 10px;
    margin-bottom: 25px;
  }

  .retailer-box .retailer-box-img img {
    width: 32px;
    margin-right: 12px;
  }

  .retailer-box-details .retailer-box-body .title {
    font-size: 13px;
  }

  .retailer-box-details .retailer-box-body .sub-title {
    font-size: 12px;
    margin-top: 8px;
    max-width: 90%;
  }



  /*.....footer....*/

  .footer-wrapper {
    margin-top: 80px;
  }

  .footer-wrapper .footer-top {
    padding: 25px 20px;
  }

  .footer-wrapper .footer-top .footer-logo-section {
    margin-bottom: 35px;
  }

  .footer-wrapper .footer-top .footer-logo-section img {
    width: 150px;
  }

  .footer-top .footer-logo-section .footer-logo-story {
    font-size: 12px;
    line-height: 18px;
    max-width: 95%;
  }

  .footer-top .footer-logo-section .footer-socials ul {
    margin-top: 8px;
  }

  .footer-top .footer-logo-section .footer-socials ul li {
    margin-right: 20px;
  }

  .footer-logo-section .footer-socials ul li a .fab {
    font-size: 18px;
  }

  .footer-wrapper .footer-top .footer-nav .title {
    font-size: 14px;
  }

  .footer-wrapper .footer-top .footer-nav ul {
    margin-top: 15px;
  }

  .footer-top .footer-nav ul li {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-top .footer-cta .logo-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-top .footer-cta p {
    font-size: 12px;
    line-height: 18px;
  }

  .footer-top .footer-cta .btn {
    margin-top: 8px;
    padding: 10px 18px;
    font-size: 12px;
  }

  .footer-wrapper .footer-bottom p.footer-tag {
    display: none;
  }

  /* Track Page Styles */
  .track-page-hero {
    padding: 30px 20px;
  }

  .track-page-hero h3 {
    font-size: 27px;
  }

  .track-page-hero p {
    font-size: 13px;
  }

  .track-page-hero .bread-crumb ul {
    margin-top: 12px;
  }

  .track-page-hero .bread-crumb ul li {
    font-size: 13px;
    margin-right: 12px;
  }

  .track-page-content {
    padding: 40px 20px 20px;
  }

  .track-page-content .form-group label {
    font-size: 14px;
  }

  .track-page-content .form-group input {
    font-size: 13px;
    height: 50px;
  }


  .track-page-content .form-button {
    margin-top: 20px;
  }

  .track-page-content .form-button .btn {
    padding: 10px 27px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 414px) {

  /*.....Header1....*/
  .header-one {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 10px;
  }

  .header-one .tag-line p {
    font-size: 11px;
    letter-spacing: normal;
  }

  .header-one .lang-btn .btn {
    font-size: 11px;
  }

  /*.....Menu....*/
  .menu-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 10px;
  }

  .menu-bar .menu-logo a img {
    width: 150px;
  }

  .menu-bar .menu-btn .btn {
    font-size: 12px;
    padding: 9px 14px;
  }


  .document-shipping {
    padding: 20px 10px;
  }


  /*.....news container ....*/
  .news-container {
    padding: 10px 20px;
  }

  .news-container .card {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .news-container .card .card-body {
    padding: 20px;
  }

  .news-container .card .card-body .card-title .c-title {
    font-size: 14px;
  }

  .news-container .card .card-body .card-text {
    font-size: 12px;
  }

  .news-container .card .card-body img {
    margin-left: 5px;
  }



  /* Track Page Styles */
  .track-page-hero {
    padding: 30px 15px;
  }

  .track-page-hero h3 {
    font-size: 25px;
  }

  .track-page-hero p {
    font-size: 12px;
  }

  .track-page-hero .bread-crumb ul {
    margin-top: 12px;
  }

  .track-page-hero .bread-crumb ul li {
    font-size: 12px;
    margin-right: 10px;
  }

}