.text-grey {
  color: #707070;
}

.text-green {
  color: #52d16d;
}

.text-blue {
  color: #003cff;
}

.bg-blue {
  background: #003cff;
}

.bg-light-grey {
  background: #eaeaea;
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .mob-img-fluid img {
    width: 100%;
  }
}

header {
  background: #fff;
  -webkit-transition: ease-in-out all .3s;
  transition: ease-in-out all .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

header.fixed {
  width: 100%;
  z-index: 999;
  box-shadow: -1px 4px 19px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: -1px 4px 19px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -1px 4px 19px 0px rgba(0, 0, 0, 0.2);
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 0.8s;
  animation-name: fadeInDown;
  animation-duration: 0.8s;
  -webkit-transition: ease-in-out all .3s;
  transition: ease-in-out all .3s;
  opacity: 1;
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: .6s;
	transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}
header .navbar {
  padding: .8rem 0;
}

header .navbar .navbar-collapse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  header .navbar .navbar-collapse {
    position: fixed;
    left: 50%;
    top: 78px;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 999;
    background: #003cff;
    color: #fff;
    padding: 1rem 0;
  }
}

header .navbar .navbar-collapse ul .nav-item:hover .nav-link {
  color: #003cff;
}

header .navbar .navbar-collapse ul .nav-item:last-child .nav-link {
  margin-right: 0;
}

header .navbar .navbar-collapse ul .nav-item .nav-link {
  color: #003cff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 0 1.5rem;
  padding: 5px 0 0 10px;
  border: 1px solid #fff;
  border-radius: 5px 0 0 0;
  border-bottom: 0;
  border-right: 0;
  -webkit-transition: ease-in-out all .3s;
  transition: ease-in-out all .3s;
}

@media screen and (max-width: 991px) {
  header .navbar .navbar-collapse ul .nav-item .nav-link {
    border-bottom: 1px solid #fff;
    border: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 991px) {
  header .navbar .navbar-collapse ul .nav-item .nav-link {
    color: #fff;
    margin: 15px;
    font-size: 1.125rem;
  }
}

header .navbar .navbar-collapse ul .nav-item .nav-link:hover {
  border: 1px solid #003cff;
  border-radius: 8px 0 0 0;
  border-bottom: 0;
  border-right: 0;
}

@media screen and (max-width: 991px) {
  header .navbar .navbar-collapse ul .nav-item .nav-link:hover {
    color: #fff;
    margin: 15px;
    font-size: 1.125rem;
    border: 0;
  }
}

header .navbar .navbar-collapse ul .nav-item.active .nav-link {
  border: 1px solid #003cff;
  border-radius: 8px 0 0 0;
  border-bottom: 0;
  border-right: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .9;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .9;
  }
}

.navbar-light .navbar-toggler {
  border: 0;
  padding: 0;
}

.navbar-light .navbar-toggler:focus {
  outline: none;
}

.banner-container {
  position: relative;
}


.banner-container  .carousel-item {
  height: 100vh;
  min-height: 400px;
}

.banner-container  .carousel-item img {
  height: 100%;
  object-fit: cover;
}


/* .banner-container.home-banner {
  position: relative;
  background: url("../images/home-banner.jpg") no-repeat center;
  height: calc(100vh - 79px);
  background-size: cover;
} */

@media screen and (max-width: 480px) {
  /* .banner-container.home-banner {
    background-position: center;
    background: url("../images/home-mob-banner.jpg") no-repeat;
    background-size: cover;
  } */
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  /* .banner-container.home-banner {
    background: url("../images/home-mob-banner.jpg") no-repeat center;
    background-size: cover;
  } */
}

.banner-container.home-banner .banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.banner-container.home-banner .banner-text.banner-text-right {
  position: absolute;
  top: 64%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 480px) {
  .banner-container.home-banner .banner-text {
    top: 37%;
    left: 50%;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .banner-container.home-banner .banner-text {
    top: 30%;
    left: 50%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991.99px) {
  .banner-container  .banner-text {
    top: 15%;
    left: 50%;
  }
  .banner-container.home-banner .banner-text.banner-text-right {left: 67%;}
  section.banner-container.home-banner .bannerTextCenter img{width:initial !important; max-width: 137% !important;}
  .banner-container.home-banner   .banner-text h2 {font-size: 2.5rem;line-height: 45px;}

}

@media screen and (max-width: 480px) {
  .banner-container.home-banner .banner-text h2 {
    margin: 0 auto;
    text-align: center !important;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .banner-container.home-banner .banner-text h2 {
    font-size: 2.1875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .banner-container  .banner-text h2 {
    text-align: center !important;
  }
}

.banner-container .banner-text {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.banner-container .banner-text h2 {
  font-size: 3rem;
  color: #003cff;
  font-weight: 300;
  line-height: 50px;
}

.banner-container .banner-text-right.banner-text h2 {

  color: #fff;

}

@media screen and (max-width: 767px) {
  .banner-container .banner-text h2 {
    font-size: 2.1875rem;    line-height: 38px;
  }
  .banner-container .banner-text h2 br {
    display: none;
  }
}

.banner-container .banner-text h4 {
  background: #52d16d;
  padding: 15px 10px;
  color: #fff;
  display: inline-block;
  margin-top: 3.5%;
  border-radius: 20px 0 0 0;
  font-size: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

.banner-container .banner-text h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #52d16d;
}

.banner-container .banner-text h5 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #1b1a1a;
}

@media screen and (max-width: 767px) {
  .banner-container .banner-text h5 br {
    display: none;
  }
}

.banner-container .banner-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 20px 0;
  list-style-type: none;
}

.banner-container .banner-text ul li {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  padding-left: 23px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .banner-container .banner-text ul li {
    font-size: 1rem;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .banner-container .banner-text ul li {
    text-align: left;
  }
}

.banner-container .banner-text ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 100%;
}

.banner-container .banner-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.banner-container .banner-bottom-nav .banner-bottom-nav-bg {
  background: rgba(0, 33, 134, 0.8);
  border-radius: 20px 0 0 0;
}

.banner-container .banner-bottom-nav .banner-bottom-nav-bg ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li {
  display: -ms-inline-grid;
  display: inline-grid;
  height: 100%;
}

.banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a {
  display: -ms-inline-grid;
  display: inline-grid;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  height: 100%;
  justify-items: center;
}

.banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a p {
  margin: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a p {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 480px) {
  .banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a {
    padding: 10px 7px;
  }
  .banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a img {
    width: 50%;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a {
    font-size: 0.75rem;
    padding: 1rem;
  }
  .banner-container .banner-bottom-nav .banner-bottom-nav-bg ul li a img {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .banner-container .banner-bottom-nav .container {
    padding: 0;
  }
}

.banner-container.fleet-owner-banner {
  background: url(../images/fleet-owner-banner.jpg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: 100% 100%;
}

@media screen and (max-width: 991px) {
  .banner-container.fleet-owner-banner {
    background-size: auto;
  }
}

.banner-container.drivers-banner {
  background: url(../images/drivers-banner.jpg) no-repeat right;
  height: 470px;
  width: 100%;
  background-size: cover;
}

.banner-container.drivers-banner .banner-text {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner-container.drivers-banner .banner-text h2 {
  color: #000;
}

@media screen and (max-width: 991px) {
  .banner-container.drivers-banner {
    background-position: center;
  }
}

.banner-container.about-us-banner {
  background: url(../images/about-us-banner.jpeg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: cover;
}

.banner-container.about-us-banner .banner-text {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner-container.about-us-banner .banner-text h2, .banner-container.about-us-banner .banner-text h5, .banner-container.about-us-banner .banner-text li {
  color: #fff;
}

.banner-container.about-us-banner .banner-text ul {
  background: #52d16d;
  border-radius: 20px 0 0 0;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .banner-container.about-us-banner .banner-text ul {
    display: block;
  }
}

.banner-container.about-us-banner .banner-text ul li {
  font-size: 1rem;
  text-transform: none;
  padding-left: 15px;
}

.banner-container.about-us-banner .banner-text ul li:first-child::before {
  content: none;
}

.banner-container.about-us-banner .banner-text ul li::before {
  content: "|";
  width: auto;
  height: auto;
  background: transparent;
  top: 0;
  left: 5px;
}

@media screen and (max-width: 767px) {
  .banner-container.about-us-banner .banner-text ul li::before {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .banner-container.about-us-banner {
    background-size: auto;
    background-position: center;
  }
}

.banner-container.shipper-banner {
  background: url(../images/customer-banner.jpg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: cover;
}
.banner-container.shipper-banner .banner-text {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
}

@media screen and (max-width: 991px) {
  .banner-container.shipper-banner .banner-text {
    left: 0;
  }
  .banner-container.shipper-banner .banner-text br {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.shipper-banner .banner-text h2 {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.shipper-banner .banner-text {
    left: 40%;
  }
}

@media screen and (max-width: 991px) {
  .banner-container.shipper-banner {
    background-size: auto;
    background-position: center;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.shipper-banner {
    background-size: auto;
  }
}

.banner-container.investor-banner {
  background: url(../images/home-banner.jpg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: 100% 100%;
}
.banner-container.investor-banner .banner-text {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
}

@media screen and (max-width: 991px) {
  .banner-container.investor-banner .banner-text {
    left: 0;
  }
  .banner-container.investor-banner .banner-text br {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.investor-banner .banner-text h2 {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.investor-banner .banner-text {
    left: 40%;
  }
}

@media screen and (max-width: 991px) {
  .banner-container.investor-banner {
    background-size: auto;
    background-position: center;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.investor-banner {
    background-size: auto;
  }
}

.banner-container.coantct-banner {
  background: url(../images/contact-banner.jpg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: 100% 100%;
}

@media screen and (max-width: 991px) {
  .banner-container.coantct-banner {
    background-size: auto;
    background-position: center;
  }
}

.banner-container.career-banner {
  background: url(../images/career-banner.jpeg) no-repeat;
  height: 470px;
  width: 100%;
  background-size: 100% 100%;
}

.banner-container.career-banner .banner-text {
  top: 20%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .banner-container.career-banner .banner-text {
    left: 0;
  }
  .banner-container.career-banner .banner-text br {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.career-banner .banner-text h2 {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1080px) {
  .banner-container.career-banner .banner-text {
    left: 40%;
  }
}

@media screen and (max-width: 991px) {
  .banner-container.career-banner {
    background-size: auto;
  }
}

@media screen and (max-width: 575px) {
  .banner-container.career-banner {
    background: url(../images/career-img-banner-mob.jpeg) no-repeat;
    height: 383px;
  }
}

.show-txt {display:none}
.current-opening .more {float:right}

.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
    display: none;
}

.addReadMore.showmorecontent .readMore {
    display: none;
}


.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
    display: block;
}


.privacy-policy h3{font-size: 22px;}


.current-opening .parent {
  list-style-type: none;
 padding:0;
 clear: both;
}

.current-opening .parent li {
  margin: 20px 0;
}

.current-opening  h3  {
  font-size: 1.125rem;
  color: #707070;
  margin-bottom:4%;
}

.current-opening  h4{
  font-size: 1rem;
  color: #707070;

}

.current-opening .parent li .child {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.current-opening .parent li .child li {
  position: relative;
  padding: 0 20px;
  font-size: 1.125rem;
}

.current-opening .parent li .child li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #969696;
}

.current-opening .parent li .child li:first-child {
  padding-left: 0;
}

.text-30 {
  font-size: 1.875rem !important;
}

.upload-file {
  font-size: 1rem;
  color: #868686;
  margin: 0 0 0 15px;
  font-weight: normal;
}

.upload-btn-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 0 5px;
}

.upload-btn-wrapper span {
  position: absolute;
  bottom: -20px;
  font-size: 0.75rem;
  margin: 5px 0 0;
  display: inline-block;
  width: 100%;
}

.upload-btn-wrapper .btn {
  border: 1px solid #23323a;
  color: #23323a;
  background-color: white;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 1rem;
}

.upload-btn-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

h2.common-heading {
  font-size: 3rem;
  color: #003cff;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  h2.common-heading {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1081px) {
  h2.common-heading {
    font-size: 3.5rem;
  }
}

footer {
  background: #fff;
  position: relative;
  border-top: 1px solid #003cff;
}

.common-para {
  font-size: 1.25rem;
  color: #707070;
}

.listing ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.listing ul li {
  margin-bottom: 8%;
}

@media screen and (max-width: 767px) {
  .listing ul li {
    text-align: center;
  }
}

.listing ul li h4 {
  font-size: 2.625rem;
  color: #000;
  font-weight: 300;
}

.listing h6 {
  font-size: 1.125rem;
  color: #707070;
  font-weight: 500;
  margin: 10px 0 0;
}

.listing p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 1.125rem;
}

.listing p a {
  display: block;
  color: #003cff;
}

.listing p a:hover {
  text-decoration: none;
}

.common-subtitle {
  font-size: 1.875rem;
  font-weight: 300;
  color: #707070;
}

.common-separator {
  width: 100%;
  height: 33px;
  border: 1px solid #003cff;
  border-bottom: 0;
  border-right: 0;
  border-radius: 20px 0 0 0;
  margin: 1rem 0;
}

.transport-freight-contianer .container {
  position: relative;
}

.transport-freight-contianer .container::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -12%;
  width: 100%;
  background: url(../images/transport-freight-exchange-img.png) no-repeat bottom right;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .transport-freight-contianer .container::before {
    content: none;
  }
}

.common-btn.click-here a:hover {
  background: #52d16d;
}

.common-btn a, .common-btn button {
  border: 0;
  background: #52d16d;
  padding: 15px 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 20px 0 0 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: ease-in-out .6s all;
  transition: ease-in-out .6s all;
  display: inline-block;
}

.common-btn a:focus, .common-btn button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

.common-btn a span, .common-btn button span {
  font-size: 1.5rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  display: inline-block;
}

.common-btn a:hover, .common-btn button:hover {
  background: #003cff;
}
.serviceMandiAppBtn a:hover, .serviceMandiAppBtn a:focus {background-color: #52d16d;}
@media screen and (max-width: 767px) {
  .common-btn a, .common-btn button {
    font-size: 0.875rem;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 1024px) {
  .credit-service-contianer .credit-services-img img {
    width: 80%;
  }
}

.credit-service-contianer .listing {
  margin: 2rem 0 0;
}

.credit-service-contianer .listing ul {
  width: 65%;
}

.credit-service-contianer .listing ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7%;
}
.two-column .listing ul li{min-height:75px;}
.credit-service-contianer .listing ul li img {
  width: 54px;
  height: 54px;
}

.credit-service-contianer .listing ul li .listing-text {
  padding-left: 1.3rem;
}

.credit-service-contianer .listing ul li .listing-text h6 {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .credit-service-contianer .listing ul {
    width: 100%;
  }
}

.frieght-exchange-container .listing ul {
  width: 100%;
}

.frieght-exchange-container .listing ul li {
  display: block;
}

.frieght-exchange-container .listing ul li img {
  width: auto;
  height: auto;
}

.service-mandi-container {
  position: relative;
}
@media screen and (max-width: 1110px)
{
  .two-column .listing ul li{min-height:110px;}
}
@media screen and (max-width: 991px)
{
.two-column .listing ul li{min-height:150px;}
}
@media screen and (max-width: 767.99px) {
  .service-mandi-container .py-5 {
    padding-top: 0 !important;
  }
  .two-column .listing ul li{min-height:initial;}
  .two-column .listing{margin-top: 0;}
}

.service-mandi-container::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/service-mandi-img.jpg") no-repeat;
  width: calc(50% - 15px);
  height: 100%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .service-mandi-container::before {
    content: none;
  }
}

.service-mandi-container .service-mandi-content h2 {
  margin: 0;
}

.service-mandi-container .service-mandi-content p {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 2.1rem 0;
}

.service-mandi-container .service-mandi-content h5 {
  font-size: 1.875rem;
  font-weight: 500;
  color: #52d16d;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul li {
  position: relative;
  padding: .8rem 0 .8rem 50px;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul li:last-child {
  padding-bottom: 0;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background: url("../images/tick-icon.png") no-repeat;
  width: 26px;
  height: 26px;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul li h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.service-mandi-container .service-mandi-content .service-mandi-listing ul li h6 {
  font-size: 1.125rem;
  font-weight: 300;
}

.benefits-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.benefits-content ul li {
  margin: 0.5rem 0 1rem;
  font-size: 1.125rem;
  color: #707070;
  position: relative;
  padding-left: 50px;
}

.benefits-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/grey-tick-icon.png") no-repeat;
  width: 26px;
  height: 26px;
}

.grow-with-gro-container h4 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #52d16d;
}

.hamburger .line {
  width: 35px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

footer .copy-right-container {
  font-size: 0.875rem;
}

@media screen and (max-width: 991px) {
  footer .copy-right-container {
    text-align: center;
    margin-bottom: 15px;
  }

}

footer .copy-right-container a {
  display: inline-block;
  margin-left: 15px;
  color: #000;
}

@media screen and (max-width: 991px) {
  footer .copy-right-container a {
    margin: 5px;
  }
}

footer .social-container {
  text-align: right;
}

footer .social-container p {
  margin: 0;
  font-size: 12px;
}

footer .social-container p a {
  font-size: 12px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  footer .social-container {
    text-align: center;
  }
}

footer .social-container a {
  color: #000;
  font-size: 1.125rem;
  display: inline-block;
  margin-left: 10px;
}

.testimonials-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials-slider .owl-stage .item {
  background: #fff;
  padding: 3.5rem 2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonials-slider .owl-stage .item img {
  width: auto;
  display: inline-block;
}

.testimonials-slider .owl-stage .item h6 {
  font-size: 1.25rem;
  line-height: 2rem;
  color: #000;
  font-weight: 300;
  margin: 2rem 0;
}

.testimonials-slider .owl-stage .item .testimonial-name {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.testimonials-slider .owl-stage .item .testimonial-name h4 {
  font-size: 1.5rem;
  color: #000;
  font-weight: 300;
  margin: 0;
}

.testimonials-slider .owl-stage .item .testimonial-name p {
  font-size: 1.125rem;
}

.testimonials-slider .owl-dots {
  margin-top: 2.5rem !important;
}

.testimonials-slider .owl-dots .owl-dot.active span {
  background: #0f0f0f !important;
}

.testimonials-slider .owl-dots .owl-dot:focus {
  outline: none;
}

.testimonials-slider .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: #bcbcbc !important;
  margin: 5px !important;
}

.app-details-container p {
  font-size: 1.25rem;
  font-weight: 500;
}

.app-details-container .about-app {
  position: absolute;
  top: 100px;
}

.app-details-container .about-app .img-fluid {
  width: calc(100% - 15px);
}

@media screen and (max-width: 991px) {
  .app-details-container .about-app {
    position: relative;
    top: 0;
  }
}

.app-details-container .app-details-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.app-details-container .app-details-container ul li {
  font-size: 14px;
  padding: 7px 0;
  position: relative;
  padding-left: 30px;
}

.app-details-container .app-details-container ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background: url("../images/grey-tick-icon.png");
  background-size: 100% 100%;
  width: 19px;
  height: 19px;
}

.app-details-container .download-app-container h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.app-details-container .download-app-container hr {
  border-color: #fff;
}

.app-details-container .download-app-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}


.app-details-container .download-app-container .appLogo 
{
background-color: #fff;
border-radius: 10px;
}

@media screen and (max-width: 767.99px) {
  .app-details-container .download-app-container ul {
    display: block;
  }
  .credit-service-contianer .container.my-5, .transport-freight-contianer .container.my-5{margin-top:0 !important}
  .credit-service-contianer .container.my-5 .row.d-flex.align-items-end .col-lg-12.mt-5.mt-lg-0.aos-init.aos-animate{margin-top:0 !important}
.benefits .row.justify-content-center  .my-5 {margin-top:0 !important}
.fleet-tracking-contianer .container.my-5, .listing .container.my-5 {margin-top:0 !important}
.why-go-contianer .container.py-5{padding-top: 0 !important;}
}

.app-details-container .download-app-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  width: 50%;
}

@media screen and (max-width: 991px) {
  .app-details-container .download-app-container ul li {
    width: 100%;
  }
}

.app-details-container .download-app-container ul li .download-app-content {
  padding-left: 25px;
}

.app-details-container .download-app-container ul li .download-app-content h6 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
}

.contact-form .form-group {
  position: relative;
}

.contact-form .form-group .form-control {
  border-color: #c0c0c0;
  border-radius: 0;
  height: 35px;
}

.contact-form .form-group .form-control.textarea {
  height: 100px;
}

.contact-form .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #c0c0c0;
}

.contact-form .form-group .error-msg {
  position: absolute;
  bottom: -10px;
  font-size: 11px;
  text-align: left;
  color: red;
  -webkit-transition: ease-in-out all .3s;
  transition: ease-in-out all .3s;
}

.contact-details h3 {
  font-size: 1.875rem;
  color: #003cff;
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-details h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #707070;
}

.contact-details p, .contact-details a {
  font-size: 1.125rem;
  font-weight: 300;
  color: #707070;
  margin-bottom: 2rem;
  text-decoration: none;
}

.contact-details .social-container a {
  margin-right: 10px;
  font-size: 1.5rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}


@media screen and (max-width: 1450px) 
{
	.service-mandi-container::before {    background-position: 20%;}
}
/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 576.99px) 
{
  #homeBanner .banner-text-right {display: none;}
  .banner-container.home-banner .banner-text h2 {font-size: 2rem; text-align: center !important;}
  .banner-container.home-banner .banner-text {top: 21%;}
}
@media screen and (max-width: 480px) 
{
  .banner-container .banner-bottom-nav {position: fixed;}
}