*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 100);
}

body {
    font-family: 'Gilroy';
	margin: 0;
	padding: 0;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	color: #16122D;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
	line-height: 0;
	font-size: 0;
}

img {
	max-width: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
	padding: 0;
	color: #000000;
    font-weight: bold;
}

p {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

p:last-child {
	padding-bottom: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.image-overlay {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container {
	max-width: 1044px;
	padding: 0 22px;
}

@media(min-width: 768px) {
	.container {
		padding: 0 52px;
	}
}

@media(min-width: 1200px) {
	.container {
		padding: 0 22px;
	}
}

/* font */

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-ExtraBold.woff2') format('woff2'),
        url('../font/Gilroy-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Black.woff2') format('woff2'),
        url('../font/Gilroy-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-UltraLight.woff2') format('woff2'),
        url('../font/Gilroy-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Light.woff2') format('woff2'),
        url('../font/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Regular.woff2') format('woff2'),
        url('../font/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Thin.woff2') format('woff2'),
        url('../font/Gilroy-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-SemiBold.woff2') format('woff2'),
        url('../font/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Medium.woff2') format('woff2'),
        url('../font/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* font end */

/* headre */

.page-headre {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	padding: 15px 0;
	z-index: 999;
}

.page-headre.headre-add {
	background-color: #ffffff;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #CADEFF;
}

.headre-left__col {
	width: 120px;
}

.headre__flex {
	display: flex;
	justify-content: space-between;
}

.headre-right__col {
	width: max-content;
}

.headre-right__col ul {
	position: fixed;
	top: 60px;
	left: -100%;
	width: 300px;
	height: 100%;
	background-color: #0D6EFD;
	z-index: 9999;
	padding: 39px 22px;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 21px 17px #0d6efd;
}

.headre-right__col ul.active {
	left: 0;
}

.headre-right__col ul li {
	color: #ffffff;
	font-weight: 700;
}

.headre-right__col ul li a {
	display: inline-block;
	color: #ffffff;
	margin-bottom: 10px;
}

.headre-right__col ul li:last-child a {
	margin: 0;
}

.btn-primarys {
	border-radius: 5px;
	background: #CADEFF;
	font-size: 12px;
	color: #0D6EFD;
	display: inline-block;
	line-height: 30px;
	padding: 0 16px;
}

.headre-right__col {
	display: flex;
	align-items: center;
}

.toggle-btn {
	width: 25px;
	cursor: pointer;
	margin-left: 10px;
	transition: all 0.3s ease-in-out;
	z-index: 11111;
  }

  .toggle-btn.open {
	margin-top: 7px;
  }
  
  .toggle-btn div {
	width: 100%;
	height: 2px;
	background-color: #000;
	margin-top: 6px;
	transition: all 0.3s ease-in-out;
  }

  .toggle-btn div:first-child {
	margin-top: 0;
  }
  
  .toggle-btn.open .one {
	transform: rotate(44deg) translate(2px, 3px);
	background: #0D6EFD;
  }
  
  .toggle-btn.open .two {
	opacity: 0;
  }
  
  .toggle-btn.open .three {
	transform: rotate(-45deg) translate(9px, -9px);
	background: #0D6EFD;
  }

@media(min-width: 1200px) {
	.headre-left__col {
		width: auto;
	}

	.btn-primarys {
		font-size: 15px;
		line-height: 44px;
		border-radius: 12px;
		padding: 0 27px;
	}

	.toggle-btn {
		display: none;
	}

	.headre-right__col ul {
		position: relative;
		top: 0px;
		left: 0%;
		width: max-content;
		height: auto;
		background-color: transparent;
		box-shadow: none;
		display: flex;
		margin-right: 45px;
		padding: 0;
	}

	.headre-right__col ul li a {
		color: #656565;
		margin: 0 22px;
	}

	.headre-right__col ul li a:hover {
		color: #0D6EFD;
	}

	.headre-right__col ul li {
		color: #656565;
	}

	.headre-right__col ul li:last-child {
		margin-left: 22px;
	}

	.page-headre {
		padding: 34px 0;
	}

	.btn-primarys:hover {
		background: #0D6EFD;
		color: #ffffff;
	}
}


/* headre end */

/* banner */

.banner {
	padding-top: 61px;
	position: relative;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 93px);
	height: 100%;
	background: linear-gradient(126deg, rgba(255, 255, 255, 0.30) 31.7%, rgba(13, 110, 253, 0.30) 109.7%);
}

.banner__left-content {
	padding: 50px 0 20px;
}

.banner__right-image {
	width: 250px;
	margin: 0 auto;
}

.banner__left-content h1 {
	color: #1E1E1E;
	font-size: 35px;
	padding: 0 0 13px;
}

.banner__left-content p {
	font-size: 15px;
	color: #505050;
	font-weight: 500;
	padding: 0 0 19px;
}

.btn-play-store {
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
	width: 120px;
	box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.10);
}

.banner__left-content h3 {
	font-size: 20px;
	padding: 0 0 15px;
	color: #0D6EFD;
}

@media(min-width: 768px) {

	.banner {
		padding: 106px 0 50px;
	}
	
	.banner__flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.banner__left-content {
		padding: 0;
		width: calc(50% - 16px);
	}
	
	.banner__right-image {
		width: 250px;
		width: calc(50% - 16px);
	}
	
}

@media(min-width: 1200px) {

	.banner {
		padding: 50px 0 0;
		padding-top: 145px;
	}

	.banner__left-content h1 {
		font-size: 58px;
		padding: 0 0 13px;
	}

	.banner__left-content {
		width: calc(50% - 16px);
	}

	.banner__right-image {
		width: 250px;
		width: calc(50% - 16px);
	}

	.banner__left-content p {
		font-size: 18px;
		padding: 0 0 30px;
	}

	.btn-play-store {
		width: 180px;
	}

	.banner__left-content ul {
		margin-top: 20px;
	}

	.banner__left-content ul li {
		font-size: 30px;
		margin-right: 24px;
	}

	.btn-play-store:hover {
		transform: scale(1.1);
	}

	.banner__left-content h3 {
		font-size: 29px;
	}

}

/* banner end */

/* cards */

.card-icon {
	padding: 50px 0 0;
}

.card-icon-heading h2 {
	color: #000000;
	padding: 0 0 20px;
	text-align: center;
}

.card-icon-col {
	border-radius: 15px;
	border: 1px solid #D4D4D4;
	background: #FFF;
	box-shadow: 0px 12px 2px 2px rgba(0, 0, 0, 0.04);
	padding: 22px;
	margin-top: 20px;
}

.card-icon-col-img {
	margin-bottom: 61px;
}

.card-icon-col h4 {
	color: #000;
	padding-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
}

.card-icon-col p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #A6A6A6;
}

@media(min-width: 768px) {
	.card-icon {
		padding: 75px 0 0;
	}

	.card-icon-heading {
		width: 435px;
		margin: 0 auto;
	}

	.card-icon-heading h2 {
		font-size: 41px;
	}
}

@media(min-width: 1200px) {
	.card-icon {
		padding: 102px 0 0;
	}

	.card-icon-col {
		margin-top: 0;
		padding: 41px 26px 58px; 
	}

	.card-icon-heading h2 {
		padding: 0 0 70px;
	}
}

/* cards end */

/* image-text */

.image-text {
	padding: 50px 0;
}

.image-text-content {
	padding: 40px 0 0;
}

.image-text-content h2 {
	padding: 0 0 15px;
}

.image-text-content p {
	color: #A6A6A6;
	padding: 0 0 20px;
	font-size: 14px;
}

.bg-blues {
	border-radius: 10px;
	background: #0D6EFD;
	box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.10);
	color: #FFF;
}

.image-text-reverse {
	padding: 25px 0;
}

.image-text-content ul li {
	color: #A6A6A6;
	font-size: 14px;
	margin: 0 0 10px;
	padding-left: 23px;
	position: relative;
}

.image-text-content ul li::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url(../img/check.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

@media(min-width: 768px) {
	.image-text .row {
		align-items: center;
	}

	.image-text-content {
		padding: 0;
	}

	.image-text-reverse .row {
		flex-direction: row-reverse;
	}
}

@media(min-width: 1200px) {
	.image-text-content h2 {
		font-size: 41px;
		line-height: 52px;
		padding: 0 0 20px;
	}

	.image-text-content {
		padding-left: 70px;
	}

	.image-text-content p {
		font-size: 17px;
		line-height: 26px;
	}

	.image-text {
		padding: 100px 0 50px;
	}

	.image-text-reverse {
		padding: 50px 0;
	}

	.image-text-reverse .image-text-content {
		padding: 0 70px 0 0;
	}

	.image-text-content ul li {
		font-size: 17px;
	}

	.image-text-content ul li::before {
		top: 7px;
	}

	.image-text-content ul {
		padding-bottom: 44px;
	}
}

/* image-text end */

/* footer */

.page-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.48);
	padding: 15px 0;
}

.footer-left p {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	padding: 0 0 8px;
}

.footer-link {
	display: flex;
	justify-content: center;
}

.footer-link li a {
	display: inline-block;
	color: #1E1E1E;
	margin: 0 5px;
	font-size: 14px;
	font-weight: 400;
}

.social-icons {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.social-icons li a {
	display: inline-block;
	color: #1E1E1E;
	margin: 0 5px;
	font-size: 22px;
	font-weight: 400;
}

@media(min-width: 1200px) {
	.footer-right {
		display: flex;
		justify-content: end;
		align-items: center;
	}

	.social-icons {
		margin-top: 0;
		margin-left: 20px;
	}

	.footer-left p {
		padding: 0;
	}

	.page-footer {
		padding: 26px 0;
	}
}

/* footer end */

.returnLorry-available {
	padding: 50px 0;
}

.returnLorry-available_wrapper {
	border-radius: 48px;
	background: linear-gradient(102deg, #82D1FD 12.9%, #2064C7 87.75%);
	padding: 36px 35px 0;
}

.returnLorry-available-text h2 {
	color: #FFF;
	font-size: 25px;
	padding: 0 0 10px;
}

.returnLorry-available-text p {
	color: #FFF;
	font-size: 14px;
	padding: 0 0 15px;
}

.returnLorry-available-text {
	padding-bottom: 30px;
}

.returnLorry-available-text h5 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #FFF;
	line-height: 1em;
	padding: 0 0 16px;
}

@media(min-width: 768px) {
	.returnLorry-available_wrapper {
		padding: 64px 56px 0;
	}

	.returnLorry-available_wrapper .row {
		align-items: center;
	}
}

@media(min-width: 1200px) {
	.returnLorry-available-image {
		width: 343px;
		margin: 0 0 0 auto;
	}

	.returnLorry-available_wrapper {
		padding: 74px 90px 0;
	}

	.returnLorry-available-text h2 {
		font-size: 52px;
		padding: 0 0 22px;
	}

	.returnLorry-available-text p {
		font-size: 17px;
		padding: 0 0 31px;
	}
}

.how-our-tracker {
	background-color: #4832BB;
	padding: 50px 0;
}

.how-our-tracker-hedling h2 {
	text-align: center;
}

.how-our-tracker-col {
	text-align: center;
	margin-top: 30px;
}

.how-our-tracker-number {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FF8182;
	border-radius: 50%;
	color: #FFF;
	font-weight: 700;
	font-size: 22px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.how-our-tracker-col h3 {
	color: #FFF;
	font-size: 22px;
	font-weight: 700;
	padding: 0 0 20px;
}

.how-our-tracker-col p {
	color: #D2D2D2;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.how-our-tracker-hedling h2 {
	color: #ffffff;
}

.how-our-tracker-hedling span {
	text-decoration: underline;
	color: #F67E82;
}

@media(min-width: 1200px) {
	.how-our-tracker {
		padding-bottom: 102px;
		margin-top: 50px;
	}

	.how-our-tracker-col {
		text-align: center;
		margin-top: 0;
		position: relative;
	}

	.how-our-tracker-col::before {
		content: '';
		position: absolute;
		top: 17px;
		right: -94px;
		width: 171px;
		height: 28px;
		background-image: url(../img/white-arrow-right.png);
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}

	.how-our-tracker .col-md-4:last-child .how-our-tracker-col::before {
		display: none;
	}

	.how-our-tracker-hedling {
		padding-bottom: 66px;
	}

	.how-our-tracker-hedling h2 {
		font-size: 41px;
	}
}