html{overflow-x: hidden;}
body{padding-top: 64px;}
.l{box-shadow: 0 0 2px red, inset 0 0 2px red;}
.g{box-shadow: 0 0 2px green, inset 0 0 2px green;}
::-webkit-scrollbar{width: 6px; background: transparent; height: 6px;}
::-webkit-scrollbar-track{border-radius:0px;}
::-webkit-scrollbar-thumb{border-radius:0px; background-color: #bababa; border-radius: 10px;}
::-webkit-scrollbar-thumb:hover{background-color:#337AB7;}
.container{
  width: 100%;
  max-width: 1296px;
}
.icon{
  stroke: unset;
  stroke-width: 0px;
  transition: inherit;
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.1em;
  transform-origin: center;
}
.icon-1x{transform:scale(1.1)}.icon-2x{transform:scale(1.2)}.icon-3x{transform:scale(1.3)}.icon-4x{transform:scale(1.4)}
.icon-5x{transform:scale(1.5)}.icon-6x{transform:scale(1.6)}.icon-7x{transform:scale(1.7)}.icon-8x{transform:scale(1.8)}
.navbar{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba(255,255,255,1);
}
.navbar.active{
	box-shadow: 0px 1px 4px rgba(0,0,0,0.25);
}
.navbar-light .navbar-nav .nav-link {
  color: #394a58;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{
	color: #337AB7;
}
.navbar-light .btn-secondary{
	background-color: #337AB7;
	border-color: #337AB7;
	color: #ffffff;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.navbar-light .btn-secondary:hover{
	color: #fff;
	background-color: #337AB7;
}
.navbar-brand{
	padding-top: 7px;
	padding-bottom: 7;
}
.navbar-brand img{
	width: 120px;
	transition: 300ms;
}
/*.navbar-light .active a , .navbar-light .active a:focus{
	color: #337ab7!important;
	font-weight: bold!important;
}*/
.navbar-light.active .navbar-brand img{width: 100px;}
.dropdown-item:focus, .dropdown-item:hover {
  color: #111;
  background-color: #dddddd;
}
.dropdown-item.active, .dropdown-item:active {
	color: #ffffff;
  background-color: #337AB7;
}
.dropdown-menu-center {
  right: auto;
  left: 50%;
  transform: translate(-50%, 0);
  transform-origin: top;
  animation: dropanim 200ms linear;
}
@keyframes dropanim{
	from{transform: translate(-50%, 0) scale(0.4);}
	to{transform: translate(-50%, 0) scale(1);}
}

.common-heading{
	position: relative;
	margin: 0;
	padding-bottom: 15px;
	text-align: center;
	color: #394a58;
	font-size: 40px;
}
.common-heading:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 120px;
	height: 2px;
	background: #337AB7;
}
.common-heading:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 12px;
	background: #fff;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -5px;
	border-left: 3px solid #337AB7;
	border-right: 3px solid #337AB7;
	border-radius: 2px;
}
.banner-text{
	min-height: 120px;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
  position: relative;
  text-align: center;
  z-index: 1;
  color: #ffffff;
  padding: 20px 0;
}
.banner-text:before {
  content: "";
  position: absolute;
  background: rgba(57, 74, 88, 0.75);
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
.banner-text h2{
  font-weight: 600;
  text-transform: uppercase;
}
.banner-text p{
	font-size: 18px;
  line-height: 26px;
  padding-top: 10px;
  font-weight: lighter;
  letter-spacing: 0.6px;
}
.process-box{
	display: inline-block;
	width: 100%;
	max-width: 320px;
	margin-top: 50px;
	color: #394a58;
}
.process-box .icon{
	font-size: 60px;
}
.process-box h4{
	font-size: 20px;
	padding: 20px 0 15px 0;
	margin: 0; 
}
.process-box p{
	font-size: 15px;
}
.moving-line{
	width: 80%;
  height: 100px;
  display: block;
  margin: 20px auto;
}
.moving-line path{
  stroke-width: 4px;
  stroke: #808080;
  fill: transparent;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 0 10 0 10; 
  animation: dash 15s linear infinite;
}
@keyframes dash {
	0%{stroke-dashoffset: 0;}
	100%{stroke-dashoffset: -500;}
}
.process-list{
	list-style-type: none;
	padding: 50px 0;
	color: #394a58;
}
.process-listimg{
	position: relative;
	border-radius: 50%;
	background: #fff;
	width: 200px;
	height: 200px;
}
.process-listimg:after{
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	left: -10px;
	top: -10px;
	border-radius: 50%;
	box-shadow: 0 0 2px #394a58;
}
.process-listimg img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	position: absolute;
	object-fit: cover;
	object-position: center;
	transition: 1s;
	border-radius: 50%;
}
.process-listimg:hover img{
	transform: scale(1.1);
}
.process-listtext{
	width: calc(100% - 250px) ;
}
.process-listtext h5{
	font-size: 22px;
  text-transform: uppercase;
}
.process-listtext p{
	font-size: 17px;
  margin-top: 10px;
}
.process-list li:nth-child(1),
.process-list li:nth-child(5),
.process-list li:nth-child(9){
	padding-right: 100px;
}
.process-list li:nth-child(3) .process-listtext,
.process-list li:nth-child(7) .process-listtext{
	padding-left: 100px;
}
/*Begin - Job Roles Style*/
.jobroles-accordion .card-header{
	padding: 12px 20px;
	border: none;
	color: #337AB7;
	font-size: 15px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	font-weight: 600;
}
.jobroles-accordion .card-header:hover{
	background: rgba(0,0,0,0.08);
}
.jobroles-accordion .card-header:before,
.jobroles-accordion .card-header.collapsed:before{
  content: "\+";
  font-family: "Arial";
  width: 25px;
  height: 25px;
  line-height: 28px;
  font-size: 30px;
  font-weight: 400;
  color: red;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -12.5px;
  right: 15px;
  transform: rotate(135deg);
  transition: all 0.3s ease 0s;
}
.jobroles-accordion .card-header.collapsed:before{
  color: #337AB7;
  transform: rotate(0);
}
.jobroles-accordion .card-header:after{
  content: "";
  width: 1px;
  height: 100%;
  background: #ececec;
  position: absolute;
  top: 0;
  right: 55px;
}
/*End - Job Roles Style*/
.height-inherit{
	min-height: inherit;
}
.terms-policy-paragraph{
	color: #555;
}
.terms-policy-paragraph h4{
	font-size: 20px;
}
.terms-policy-paragraph h5{
	font-size: 17px;
}


/*Start | Footer Design*/
footer{
	background: #f8f8f8;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding-top: 25px;
}
footer h5{
	font-size: 20px;
	margin: 0;
	padding: 25px 0 10px 0;
	color: rgba(0,0,0,0.65);
}
.social-links{
	list-style-type: none;
	padding: 10px 0;
}
.social-links a{
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 33px;
	border-radius: 50%;
	text-align: center;
	border: 1px solid #999;
	color: #999;
	margin-right: 5px;
	transition: 100ms;
}
.icon-facebook:hover{background:#3B5999; border-color:#3B5999;}
.icon-twitter:hover{background:#1CA0F2; border-color:#1CA0F2;}
.icon-linkedin:hover{background:#0077B4; border-color:#0077B4;}
.icon-youtube:hover{background:#D92523; border-color:#D92523;}
.social-links a:hover{color:#fff;}
.footer-links{
	list-style-type: none;
	padding: 0;
}
.footer-links li{margin-bottom: 0px;}
.footer-links a{
	display: inline-block;
	min-width: 120px;
	font-size: 13px;
	color: rgba(0,0,0,0.55);
	padding-bottom: 11px;
}
.footer-app{
	display: inline-block; margin: 4px;
}
.footer-app img{
	filter: grayscale(100%);
	opacity: 0.4;
	border-radius: 4px;
	transition: 500ms;
}
.footer-app:hover img{
	opacity: 1;
	filter: grayscale(0);
}
.copyright{
	position: relative;
	display: block;
	list-style-type: none;
	text-align: center;
	margin: 15px 0 0 0;
	background: #ddd;
	color: rgba(0,0,0,0.4);
	font-size: 14px;
	padding: 20px 0;
	font-weight: bold;
}
.copyright li{
	display: inline-block;
	margin: 5px 3px;
}
.copyright li:nth-child(2n + 2){
	color: rgba(0,0,0,0.2);
}
.copyright li a{
	display: inline-block;
	text-decoration: none;
	color: rgba(0,0,0,0.4);
}
.copyright li a:hover{
	color: rgba(0,0,0,1);
}
.go-to-top{
	position: fixed;
	width: 44px;
	height: 44px;
	z-index: 1000;
	bottom: -100px;
	right: 20px;
	border-radius: 0px 0px 0 0;
	background: #337AB7;
	cursor:pointer;
	text-align: center;
	font-size: 20px;
	line-height: 42px;
	color: #fff;
	text-shadow: 0px 1px 1px #000;
	transition: 500ms;
	box-shadow: 0px 1px 6px #eee;
	border-radius: 4px;
}
.go-to-top:before{
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
	top: 18px;
	left: 16px;
	transition: 500ms;
}
.go-to-top:hover:before{
	top: 14px;
}
.go-to-top:hover{
	box-shadow: 0px 2px 16px #ffffff;
}
.go-to-top.active{
	bottom: 20px;
}
/*End | Footer Design*/
.navbar-light .navbar-toggler{
	width: 42px;
	height: 40px;
	text-align: center;
	padding: 0;
  border: 1px solid #337AB7;
  border-radius: .2rem;
  outline: none;
  cursor: pointer;
}
.navbar-light .navbar-toggler.collapsed:before{
	content: '\2630';
	font-family: "Arial", sans-serif;
	color: #000;
	font-weight: 900;
	font-size: 25px;
}
.navbar-light .navbar-toggler:before{
	content: '\00D7';
	font-family: "Arial", sans-serif;
	font-weight: 400;
	font-size: 35px;
	color: red;
	opacity: 0.65;
}
.card-casestudy .card-title{
	font-size: 1.4rem;
	font-weight: 600;
	color: #337AB7;
}
.card-casestudy:hover{
	box-shadow: 0 .5rem 1.2rem rgba(0,0,0,.15);
	transition: all 350ms;
}
.font-bold{font-weight: 600;}
.btn-outline-theme{color: #337AB7; border-color: #337AB7;}
.btn-outline-theme:hover{color: #fff;background: #337AB7;}
.btn-outline-theme.focus, .btn-outline-theme:focus{box-shadow: 0 0 0 0.2rem rgba(51,122,183,.5);}
.error-field{
	color: #c8453c;
}
/*start video css*/
.banner-section{
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 60px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-section .carousel-item {
  min-height: calc(100vh - 60px);
}
.about-img-box{
  position: relative;
  overflow: hidden;
  min-height: calc(50vh - 60px);
}
.about-img{
  position: absolute;
  object-fit: cover;
  left: 0;
  right: 0;
}
.about-img:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.search-box {
  position: relative;
  z-index: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}
.banner-section .carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #337ab7;
}
.banner-section video{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.search-box .btn-demo {
  display: inline-block;
  max-width: 250px;
  margin-top: 30px;
  background: transparent;
  border: 1px solid #337ab7;
  color: #337ab7;
  margin-bottom: 12px;
  transition: all 0.5s ease;
}
.search-box .btn-demo:hover {
  background: #fff;
  color: #808080;
}
.height-inherit {
  min-height: inherit;
}
.search-box span.carrierheading{
  display: block;
  font-size: 2.5rem;
}
/*end video css*/
.middle-box .icon {
  width: 4em !important;
  height: 4em !important;   
}
.middle-box{
  padding-top: 50px;
  padding-bottom: 50px;
}
.middle-box svg{
	color: #808080;
}
.middle-box a:hover .icon {
	color: #337AB7;
	fill: #337AB7;
}
.middle-box a{
	transition: all 0.5s  ease;
	padding: 20px 10px;
	display: block;
	margin: 30px 0px;
}
.middle-box a:hover {
	text-decoration: none;
	box-shadow: 0px 3px 25px 0 rgba(12, 25, 40, 0.15);
}
.title-box {
	font-size: 22px;
	line-height: 28px;
	font-weight: 300;
	text-transform: uppercase;
	max-width: 210px;
	margin: 0 auto;
	margin-top: 15px;
	margin-bottom: 15px;
	min-height: 70px;
	color: #808080;
}
.content-box{
	color: #808080;
	font-size: 14px;
}
.work-optimization{
	padding: 80px 0px;
	background: #f6f6f6;
	position: relative;
}
.color-white{
	color: #eee;
}
.color-gray{
	color: #808080;
}
.ipad-box{
	background-image: url(../images/ipad.jpg);
	background-position: center;
	background-size: 62%;
	background-repeat: no-repeat;
	min-height: 445px;
}
.left-box p, .right-box p{
	padding-top: 100px;
	font-weight: 600;
}
.partners-box{
	padding: 50px 0px;
}
.logos-box a {
	display: inline-block;
	margin: 15px;
	padding: 10px;
	transition: 500ms;
	min-height: 55px
}
.logos-box a:hover{
	box-shadow: 0px 3px 25px 0 rgba(12, 25, 40, 0.15);
}
.demo-box {
	background: #333;
	padding: 30px 0px;
}
.demo-box p {
	font-size: 25px;
	color: #fff;
	margin-top: 5px;
	margin-bottom: 0px;
	text-align: center;
}
.btn-demo {
	background: #fff;
	padding: 10px 15px;
	color: #333;
	font-size: 17px;
	font-weight: 500;
}
.heading-color{
	color: rgba(0,0,0,0.65);
	font-size: 20px;
}
.industry-blk img {
	border-radius: 136px;
	margin-bottom: 30px;
	border: 1px solid #909090;
	padding: 10px;
	box-shadow: 0px 3px 25px 0 rgba(12, 25, 40, 0.15);
	transition: 500ms;
}
.industry-blk:hover img{
	box-shadow: none;
}
.industry-lmore {
	border: 1px solid #ccc;
	padding: 9px 12px;
	color: #808080;
	display: inline-block;
	margin-top: 15px;
}
.img-zoom {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	padding: 0px;
	overflow: hidden;
	display: inline-block;
}

/*Start new css*/
body{
  color: #394a58;
}
.middle-blk{
  padding: 50px 0px;
}
.middle-blk h2 {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.about-content ul{
  padding-left: 0px;
}
.about-content ul li {
  list-style: none;
  margin-bottom: 15px;
}
.banner-text-content{
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 35%;
  bottom: 50%;
}
.carousel-control-next-icon{display: none;}
.carousel-control-prev-icon{display: none;}
.what-we-do{
  padding: 50px 0px;
}
.we-do-box {
  padding: 54px 25px;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
  max-width: 340px;
  background: #fefefe;
  box-shadow: 0 10px 20px 0 #eee;
  min-height: 460px;
}
.we-do-box h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.we-do-box p {
  font-size: 15px;
  margin-bottom: 20px;
}
.we-do-box a {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  max-width: 169px;
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  border: 1px solid #435360;
  padding: 11px 21px;
  color: #3a4a58;
  margin: auto;
  background: #ffffff;
}
.we-do-box img {
  max-width: 200px;
}
.we-do-box a:hover {
  background: #3a4a58;
  color: #fff;
  text-decoration: none;
}
.owl-next > span {
  border: 1px solid #ccc;
  width: 40px !important;
  height: 40px !important;
  display: inline-block !important;
  line-height: 28px !important;
  text-align: center;
  box-shadow: 0px 0px 8px 0px #cdcdcdee;
  font-size: 35px;
  border-radius: 50px;
}
.owl-prev > span {
  border: 1px solid #ccc;
  width: 40px !important;
  height: 40px !important;
  display: inline-block !important;
  line-height: 28px !important;
  text-align: center;
  box-shadow: 0px 0px 8px 0px #cdcdcdee;
  font-size: 35px;
  border-radius: 50px;
   margin-right: 10px;
}
.owl-nav {
  max-width: 120px;
  margin: auto;
  margin-top: 29px;
}
.owl-next:focus{
  outline: none;
}
.owl-prev:focus{
  outline: none;
}
.logos-box {
  margin-top: 20px;
}
.banner-heading{
  color: #337ab7;
  font-size: 31px;
  max-width: 482px;
}
.retail-section {
  position: relative;
  overflow: hidden;
  min-height: calc(45vh - 60px);
  background-size: cover!important;
  background-repeat: no-repeat !important;
  background-position-x: center!important;
}
.retail-section:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.retail-section video{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.retail-content-box{padding: 60px 0px;}
.retail-section .search-box .btn-demo {border: 1px solid #ffffff; color: #ffffff;}
.retail-section .search-box .btn-demo:hover{border: 1px solid #337ab7;}
.search-box .btn-demo:hover{background: #337ab7;color: #fff;}
.tab-slider-box .btn.btn-block.btn-demo:hover{background: #3a4a58; color: #fff;}
.tab-slider-box .btn.btn-block.btn-demo:hover .icon{color: #fff;}
.contact-map form {
  background: #337ab7a6;
  padding: 50px 15px;
  box-shadow: 0px 0px 10px 0px #2b5880;
}
.talk-success-box h2 {padding-bottom: 35px;}
.video-content{display: none;}
.contact-map h2, .contact-map p{color: #337ab7;}
.analytics-img{padding: 12px; background:#fff; box-shadow: 0 10px 20px 0 #a4a4a4;}
.dispatch-data .we-do-box{min-height: 540px;}
.we-do-box ul { padding-left: 12px; margin-bottom: 30px; min-height: 180px;}
.we-do-box ul li{ list-style: none; text-align: left; font-size: 14px; margin-bottom: 13px;  position: relative;  line-height: 18px;}
.dispatch-data .icon{position: absolute; left: -23px; top: 5px;}
.dispatch-data.trucker-box .we-do-box { min-height: 585px;}
.dispatch-data.trucker-box .we-do-box ul { padding-left: 12px; margin-bottom: 30px; min-height: 240px;}
section.what-we-do.dispatch-data.trucker-box img{max-width: 130px;}
section.what-we-do.dispatch-data img{max-width: 130px;}
/*end New css*/

/*Animation banner css*/
.first-animated-box{text-align: right; position: relative;}
.div-box{position: absolute; right: 3%; top: 7%; text-align: right; left: 0;}
.div-box { min-height: calc(100vh - 60px); max-width: 45%; margin-left: auto;}
.div-box img{width: auto; max-width: 100% }
.first-img{ transition: 700ms;  opacity: 0;  visibility: hidden;}
.first-img.first-truck{
  opacity: 1;
  visibility: visible;
  animation: 1.5s ease-out 1s 1 totop; 
  animation-duration: 1.5s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: totop;
  transition: 600ms;
  position: absolute;
  top:0%;
  width: 65%;
}
@keyframes totop {
  0%{transform: translateX(200%)}
  100%{transform: translateX(0)}
}
.bottom-img{
  right: 0;
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
}
@keyframes tobottom {
  0%{transform: translateY(200%)}
  100%{transform: translateY(0)}
}
.bottom-img.second-truck{
  opacity: 1;
  visibility: visible;
  animation: 1s ease-out 0s 1 tobottom; 
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: tobottom;
  transition: 600ms;
  text-align: center;
  position: absolute;
  left: -30%;
  top: 20%;
  margin: auto;
  width: 30%;
}
/*third truck*/
.left-img{
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
}
.left-img.third-truck{
  opacity: 1;
  visibility: visible;
  animation: 1s ease-out 0s 1 toleft; 
  animation-duration: 1s;
  animation-timing-function: ease-in; 
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: toleft;
  transition: 600ms;
  position: absolute;
  top: 10%;
  right: 0;
  width: 35%;
}
@keyframes toleft{
  0%{transform: translateX(120%)}
  100%{transform: translateX(0)}
}
/*fourth-img*/
.right-img{
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
}
.right-img.four-truck{
  opacity: 1;
  visibility: visible;
  animation: 1s ease-out 0s 1 toright; 
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: toright;
  transition: 600ms;
  position: absolute;
  top: 53%;
  left: 0px;
  width: 70%;
}
@keyframes toright {
  0%{transform: translateX(-100%)}
  100%{transform: translateX(0)}
}
/*five-img*/
.center-img{
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
}
.center-img.five-truck{
  opacity: 1;
  visibility: visible;
  animation: 1s ease-out 0s 1 tocenter;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: tocenter;
  transition: 600ms;
  position: absolute;
  top: 38%;
  left: 0px;
  right: 0px;
  text-align: center;
  width: 25%;
  margin: auto;
}
@keyframes tocenter {
  0%{transform: scale(0.6)}
  100%{transform: scale(1)}
}
/*end atl css*/

/*start atr css*/
.blue{color: #337AB7;}
.gray{color: #808080;}
.products-box h6{ 
	font-size: 17px;
	color: #808080; 
	line-height: 27px;
}
.products-box a{
	max-width: 300px;
	color: #337AB7;
	border:1px solid #337AB7;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
	display: block;
	margin-top: 25px;
}
.products-box a:hover{
	background: #337AB7;
	color: #fff;
}
.card-product{
	border: 1px solid #fff;
	border-radius: 0px;
	padding: 20px 0px;
	margin-top: 30px;
}
.card-product .card-header{
	background: none;
	border-bottom: none;
	color: #337AB7;
	font-size: 25px;
}
.erp-plateformsec{padding-top: 100px; padding-bottom: 100px;}
.erp-plate h4{
	color: #337AB7;
	font-size: 40px;
	font-weight: 600;
}
.erp-plate p{
	font-size: 23px;
	padding-top: 10px;
	color: #808080;
}
.plateform-box{
	text-align: center;
	box-shadow: 0px 0px 1.5px #ddd;
	margin-top: 40px;
	padding-bottom: 15px;
	padding: 15px;
}
.plateform-box h5{
	font-size: 18px;
	color: #337AB7;
	text-transform: uppercase;
	margin: 0px;
	padding: 30px 0px 5px 0px;
}
.plateform-box img{
	width: 100%;
}
.plateform-box p{
	font-size: 15px;
	color: #808080;
}
.plateform-box a{
	min-width: 200px;
	color: #337AB7;
	border:1px solid #337AB7;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 14px;
	box-sizing: border-box;
}
.plateform-box a:hover{
 background: #337AB7;
 color: #fff;
}
.products-categ{
	padding: 15px 15px 15px 90px;
	position: relative;
	margin-bottom: 30px;
}
.products-categ h4{
	color: #fff;
}
.products-categ h5{
	color: #fff;
	font-weight: 600;
}
.products-categ p{
	color: #fff;
	font-size: 15px;
}
.products-categ svg{
	font-size: 40px;
	position: absolute;
	left: 35px;
	color: #fff;
	top: 18px;
}
.dispatch-section{
	padding: 80px 0px;
}
.dispatch-box{text-align: center; padding-top: 20px; padding-bottom: 20px;}
.dispatch-box img{width: 100px; margin-bottom: 20px;}
.dispatch-box h5{
	color: #fff;
  font-size: 18px; 
  line-height: 28px;
}
.btn-signupdis{
	width: 100%;
	color: #fff;
	border: 1px solid #fff;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	margin-top: 30px;
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
}
.btn-signupdis:hover{
 background: #337AB7;
 color: #fff;
 text-decoration: none;
}
.banner-products-b{
	min-height: 500px!important;
	background-position: center!important;
	background-size: cover!important;
	margin-top: -70px!important;
}
.carousel-control-next-icon{
	background-image: url("../images/product/right-arrow.svg");
	position: absolute;
	left: 150px;
	width: 40px;
	height: 40px;
	border: 1px solid #337AB7;
	box-shadow: inset 0px 0px 2px #337AB7;
	border-radius: 6px;
}
.carousel-control-prev-icon{
	background-image: url("../images/product/left-arrow.svg");
	position: absolute;
	right: 150px;
	width: 40px;
	height: 40px;
	border: 1px solid #337AB7;
	box-shadow: inset 0px 0px 2px #337AB7;
	border-radius: 6px;
}
.common-para{
	color: #3a4a58;
	line-height: 26px;
	font-size: 15px;
	font-weight: normal;
}
.all-product{
	background: url(../images/product/marketplace.jpg);
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 70px 0px;
	position: relative;
	z-index: 1;
}
.all-product:after{
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	bottom: 0px;
	background: rgba(0,0,0,0.8);
	z-index: -1;
}
.contactform-section{
  padding-bottom: 50px;
  border-bottom: 5px solid #f9f9f9;
}
.contactform-section h3{
  color: #337AB7;
  font-size: 30px;
  text-align: center;
  font-weight: normal;
}
.contactform-section form{
  display: block;
  padding: 0px 15px 30px 15px;
}
.contactform-section form input, .contactform-section form select{height: 50px; border-radius: 3px; border-color: #ccc; box-shadow: none; color: #666;}
.contactform-section form input:focus, .contactform-section form select:focus, .contactform-section form textarea:focus{
	box-shadow: none;
	border-color: #ccc;
	background: rgba(238,238,238,0.4);
}
.contactform-section form textarea{border-radius: 2px; border-color: #ddd; box-shadow: none; color: #999;}
.contact-form .form-group span{
  display: none;
  text-align: left;
  color: red;
  width: 100%;
  height: 20px;
  font-size: 14px;
  padding-top: 4px;
  padding-left: 17px;
  opacity: 0.8;
}
.office-address{
  padding: 19px 15px 19px 100px;
  font-size: 17px; 
  line-height: 30px; 
  color: black;
  position: relative;
}
.office-address h5{
  font-size: 20px;
  color: #337AB7;
} 
.office-address a{ color: black; font-weight: 500; }
.office-address a:hover{color: #337AB7}

.office-address p{
	font-size: small;
	line-height: 20px;
}
.office-address p span{
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	left: 70px;
	color: #337AB7;
	font-size: 0px;
	top: 20px;
	text-align: center;
	line-height: 40px;
}
.office-address svg{
	color: #3299CC;
	font-size: 25px;
}
.btn-commons{
	background: #337AB7;
	color: #fff;
	padding: 10px 35px;
	font-size: 17px;
}
.btn-commons:hover{
	color: #fff;
	opacity: 0.9;
}
::placeholder {
  color: #666!important;
 
}
:-ms-input-placeholder{ /* Internet Explorer 10-11 */
 color: #666!important;
}

::-ms-input-placeholder{/* Microsoft Edge */
 color: #666!important;
}
.jobroles{
	padding-bottom: 70px;
}
.listpost h5{
	color: #337AB7;
	font-size: 18px;
	font-weight: 600;
}
.listpost p{
	color: #808080;
	font-size: 15px;
}
.listpost small{
	font-weight: bold;
	color: #337AB7;
}
.carrer-section{
	padding-bottom: 70px;
}
.resume-carrer{
	background-color: #eee;
	border-radius: 3px;
	padding: 10px;
	text-align: center;
	color: #777;
}
.resume-carrer a{
	color: #337AB7;
	font-weight: 600;
}
.awrads-box{
	box-shadow: inset 0px 0px 2px #ddd;
	text-align: center;
	padding: 30px 15px;
}
.awrads-box img{
	width: 140px!important;
	height: 80px!important;
	padding: 5px;
	margin: 0px auto;
	display: block;
}
.awrads-box h5{
	font-size: 20px;
	color: #337AB7;
	text-transform: uppercase;
	margin: 0px;
	padding: 20px 0px 5px 0px;
}
.awrads-box p{
	color: #808080;
	margin-bottom: 0px;
	font-size: 14px;
}
.abouts-box{
	text-align: center;
	margin-top: 40px;
	padding-bottom: 15px;
	padding: 10px;
}
.abouts-box h5{
	font-size: 20px;
	color: #337AB7;
	margin: 0px;
	padding: 15px 0px 5px 0px;
}
.abouts-box img{width: 100%;}
.abouts-box p{
	font-size: 15px;
	color: #808080;
}
.abouts-box a{
	display: block;
	border: 1px solid #337AB7;
	background: #337AB7;
	width: 30px;
	height: 30px;
	line-height: 28px;
	border-radius: 50%;
	text-align: center;
	margin: 0px auto;
	color: #fff;
	font-size: 12px;
}
.abouts-box a:hover{
	opacity: 0.7;
}
.about-us-border {
	display: block;
	padding-top: 25px;
	text-decoration: none!important;
	transition: 500ms;
	-webkit-transition:500ms;
}
.about-us-border img {
  transition: 1s;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0px auto;
  border: 1px solid #ddd;
  padding: 5px;
}

.about-us-border:hover{
	box-shadow: inset 0px 0px 2px #ddd;
	transition: 500ms;
	-webkit-transition:500ms;
}
.about-us-border:hover img {
  transform: scale(1.1);
}
.product-midllebox{
	background: url(../images/ipad.jpg);
	background-position: center;
	background-size: 50%;
	background-repeat: no-repeat;
	position: relative;
	padding: 50px 0px;
}
.product-midllebox:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(100, 112, 131, 0.87);
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	
}
/*css for map slider*/
.rotateslider-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
}
.rotateslider-container .rotateslider-item {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0.6);
  -ms-transform: translateY(-50%) translateX(-50%) scale(0.6);
  transform: translateY(-50%) translateX(-50%) scale(0.6);
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rotateslider-container .rotateslider-item.next {
  left: 80%;
  opacity: 0.5;
}
.rotateslider-container .rotateslider-item.prev {
  left: 20%;
  opacity: 0.5;
}
.rotateslider-container .rotateslider-item.now {
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.rotateslider-container .arrow {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 70px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  cursor: pointer;
  color: #fff;
  text-align: center;
}
.rotateslider-container .arrow.left { left: 0; }
.rotateslider-container .arrow.right { right: 0; }
.js-rotateslider-arrow svg{
  font-size: 32px;
}
/*carrer page css*/
.category-small-box {
	width: 300px;
  display: inline-block;
  background-color: #eee;
  border-radius: 3px;
  margin: 0px 0 20px 20px;
  padding: 20px;
  text-align: center;
  color: #777;
  vertical-align: top;
  min-height: 124px;
  text-decoration: none!important;
}
.category-small-box span {
  font-size: 14px;
  color: #337AB7;
  border-radius: 3px;
  background:#e2e3e5;
  display: block;
  width: 50px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.category-small-box h4 {
  font-size: 16px;
  color: #808080;
  transition: 0.4s;
  line-height: 22px;
  margin-top: 6px;
}
.category-small-box img {
  width: 40px;
  margin: 0px auto;
}
/*end atl css*/


.rotateslider-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
}
.rotateslider-container .rotateslider-item {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0.6);
  -ms-transform: translateY(-50%) translateX(-50%) scale(0.6);
  transform: translateY(-50%) translateX(-50%) scale(0.6);
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rotateslider-container .rotateslider-item.next {
  left: 80%;
  opacity: 0.5;
}
.rotateslider-container .rotateslider-item.prev {
  left: 20%;
  opacity: 0.5;
}
.rotateslider-container .rotateslider-item.now {
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.rotateslider-container .arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 70px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  color: #999;
  font-size: 35px;
}
.rotateslider-container .arrow.left { left: 0; }
.rotateslider-container .arrow.right { right: 0; }


/*========================*/
/*Start | Responsive css*/
/*========================*/
@media (min-width: 1300px) and (max-width: 3072px){
	.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0.8rem;
    margin-right: 0.8rem
	}
	.navbar-expand-gl .navbar-nav .nav-item:last-child .nav-link{
		margin-right: 0;
	}
}
@media (min-width: 1199px) and (max-width: 1409px){
	.navbar-light .navbar-nav .nav-link {
  	color: #232323;
  	font-size: 14px;
	}
}
@media(max-width: 1200px){
	.products-box{
		padding: 20px 15px 100px 15px;
		margin-top: 30px;
	}
}
@media(max-width: 1024px){
	.dropdown-hover.show .dropdown-toggle{
	  pointer-events: none!important;
	}
	.dropdown-menu-center {
  	right: auto;
  	left: 0;
  	transform: none;
  	animation: none;
	}
	.banner-heading {
    color: #337ab7;
    font-size: 18px;
    max-width: 279px;
	}
	.search-box .btn-demo {
    max-width: 162px;
    margin-bottom: 12px;
    transition: all 0.5s ease;
    font-size: 15px;
	}
	.we-do-box img{
		width: 100%;
	}
	.we-do-box{padding: 24px 16px;}
  .we-do-box {
    padding: 54px 25px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    max-width: 330px;
    margin: auto;
    margin-bottom: 20px;
	}
}
@media (max-width: 991px){
  html, body{overflow-x: hidden;}
  .div-box{max-width: 100%;}
  .about-img{position: relative;}
	.about-img:before{
	  position: relative;
	  background:transparent;
	}
	.about-img-box .search-box h1{color: #767171;}
	.about-img-box .search-box p{color: #767171;}
	.about-img-box .height-inherit{min-height: auto;}
	.about-img-box .search-box{margin-top: 35px;}

	 .banner-section:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
	}
	.banner-heading{color: #fff;}
	.search-box .btn-demo{color: #fff; border: 1px solid #fff;}



}
@media(max-width: 768px){
	.moving-line{width: 90%;}
	.process-listimg {
 	  width: 90px;
    height: 90px;
	}
	.process-listimg:after {
    content: '';
    width: 100px;
    height: 100px;
    left: -5px;
    top: -5px;
  }
  .process-listimg img {
    width: 90px;
    height: 90px;
    max-width: 90px;
  }
  .process-list li:nth-child(1), .process-list li:nth-child(5), .process-list li:nth-child(9){padding-right: 20px;}
	.process-listtext{width: calc(100% - 110px);}
	.banner-text{padding: 30px 0;}
	.common-heading{font-size: 27px;}
 
	
	.banner-section .carousel-indicators li{background-color: #ffffff;}
	.ipad-box{background-size: 75%; min-height:185px;}
	.rotateslider-item img {width: 250px;}
}
@media (max-width:767px){
  .industries-box .col{
  	flex-grow: unset !important; flex-basis: initial !important; width: 100%; max-width: 300px; margin: auto;
  }
  .left-box p, .right-box p{
    display: none;
  }
}
@media(max-width: 480px){
	.moving-line{
		width: 74%;
		height: 60px;
	}
	.rotateslider-item img { width: 200px;}
	.process-list li:nth-child(3) .process-listtext, .process-list li:nth-child(7) .process-listtext {
    padding-left: 0px;
    margin-right: -38px;
	}
	.process-list li:nth-child(1) .process-listimg, .process-list li:nth-child(5) .process-listimg, .process-list li:nth-child(9) .process-listimg{
    margin-left: 10px;
	}
	.banner-text h2{
  	font-size: 24px;
  }
	.banner-text p{
		font-size: 15px;
  	line-height: 22px;
	}
	.footer-app img{max-width: 130px;}
	.social-links a {
    width: 26px;
    height: 26px;
    line-height: 24px;
    margin-right: 1px;
  }
  .go-to-top.active {
    bottom:0px;
	}
	.copyright{
		padding-bottom: 36px;
	}
  .logos-box a{
    padding: 10px !important;
    margin: 10px !important;
  }
}
/*End responisve css*/