:root{
	--primary-color			:#222;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #000;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Plus Jakarta Sans", sans-serif;
}
* {
	box-sizing: border-box;
  }

  html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body{
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
	position: relative;
}
.container{
    width: 100%;
    max-width: 1300px;
}
.container-fluid {
    width: 100%;
    padding: 0 160px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    transition: color 0.3s ease;
}
a {
	color: var(--accent-color);
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

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

h1{
    font-size: 48px;
    line-height: 56px;
	font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}
h2{
    font-weight: 600;
	font-size: 40px;
	line-height: 50px;
	color: var(--text-color);
    margin-bottom: 20px;
}
h3{
    font-weight: 700;
	font-size: 28px;
	line-height: 35px;
	color: var(--text-color);
    margin-bottom: 0;    
}
h4{
	font-weight: 600;
	font-size: 24px;
	line-height: 18px;
	color: var(--text-color);
    margin-bottom: 0;
}
h5{
    font-size:20px;
    line-height: 20px;
	font-weight: 600;
	color: #313131;
    margin-bottom: 10px;
}
h6{
    font-size: 18px;
    line-height: 24px;
	font-weight: 400;
	color: var(--text-color);
    margin-bottom: 0;
}
p{
    font-size: 24px;
    line-height: 32px;
	font-weight: 500;
	color: var(--text-color);
    margin-bottom: 30px;
}
figure {
	margin: 0;
}
.align-center {
	text-align: center;
}
section {
	padding: 80px 0;
}




@keyframes zoom{
	0%{
	  transform: scale(1);
	}
	50%{
	  transform: scale(0.8);
	}
	100%{
	  transform: scale(1);
	}
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}
.floatingdiv {
	position: fixed;
	top: 35%;
	right: 10px;
	z-index: 9999;
	width: 45px;
	height: 200px;
  }
  .floatingwhatsapp {   
	  background: var(--accent-color);    
	  width: 45px;
	  height: 45px;
	  text-align: center;
	  line-height: 42px;
	  border-radius: 50%;
	  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
	  display: block;
	  margin-bottom: 10px;
	}
	.floatingwhatsapp img {
	  width: 28px;
	  height: auto;
	}
	.floatingcall {    
	  background: var(--accent-color);
	  width: 45px;
	  height: 45px;
	  text-align: center;
	  line-height: 42px;
	  border-radius: 50%;
	  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
	  color: #fff;
	  font-size: 18px;
	  display: block;
	}
	.floatingcall svg {
	  color: #fff;
	}
	#scrollTopBtn {
	  position: fixed;
	  right: 10px;
	  bottom: 30px;
	  width: 45px;
	  height: 45px;
	  opacity: 0;
	  z-index: 1000;
	  font-size: 18px;
	  border-radius: 50%;
	  color: #fff;
	  background: var(--accent-color);  
	  overflow: hidden;
	  -webkit-transition: all 0.3s ease-in-out;
	  transition: all 0.3s ease-in-out;
	  box-shadow: none;
	  border: none;
	}
	#scrollTopBtn.actived {
	  right: 30px;
	  opacity: 1;
	}
	.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
	.jobPopup .modal-dialog .modal-content .modal-body form select  {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}

/* btns */

.common-btn {
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-weight: 600;
	font-size: 16px;
	line-height: 20px;
    text-transform: capitalize;
    border: none;
    padding: 12px 32px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
	border-radius: 12px;
	height: 42px;
	text-align: center;
	width: 226px;
}
.common-btn:hover{
	background: var(--primary-color);
    color: var(--white-color);
}


/* btns */

/* header */

header.main-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header.main-header .header-sticky{
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
}
header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}
header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
      flex: 1;
      justify-content: center;
    }
}
.navbar{
	padding: 10px 0;
	align-items: center;
	background-color: #000000
}
.navbar-brand{
	padding: 0;
	margin: 0;
}
.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}
.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}
.main-menu ul li{
	margin: 0 4px;
	position: relative;
}
.main-menu ul li a{
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	padding: 10px;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}
.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--white-color);
	opacity: 0.7;
}
.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 240px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}
.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul ul li{
	margin: 0;
	padding: 0;
}
.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
    display: block;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}
.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--white-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}
.cta-btn .call-btn::before {
    background-image: url(../images/icon-phone.svg);
}
.main-menu ul li.highlighted-menu{
    display: none;
}
.logo img {
	height: 60px;
	width: auto;
}
.mob-logo,
.close-mobile-menu {
    display: none;
}
.is-sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 1040;
	border-bottom: 0 !important;
	height: 80px !important;
	max-height: 80px !important;
	background-color:rgba(0, 0, 0, 0.6)!important;
	-webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
	box-shadow: 0 3px 4px rgba(0,0,0,.07);
	-webkit-animation: translateHeader 0.8s;
	animation: translateHeader 0.8s;
  }
  @keyframes translateHeader {
	0% {
	  opacity:0;
	  -webkit-transform:translateY(-100%);
	  transform:translateY(-100%)
	}
	100% {
	  opacity:1;
	  -webkit-transform:translateY(0);
	  transform:translateY(0)
	}
  }
  @keyframes headerAnimation {
	0% {
	  opacity:0;
	  -webkit-transform:translateY(-100%);
	  transform:translateY(-100%)
	}
	100% {
	  opacity:1;
	  -webkit-transform:translateY(0);
	  transform:translateY(0)
	}
  }
  .is-sticky .logo img {
	height: 60px;
  }
  .contact-now-box{
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-now-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box{
	background-color: var(--primary-color);
}

.contact-now-box .icon-box img{
	max-width: 20px;
}

.contact-now-box-content{
	width: calc(100% - 55px);
}

.contact-now-box-content p{
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	font-size: 18px;
}
.contact-now-box .common-btn {
	background: rgba(255, 255, 255, 0.29);
	width: auto;
}
.white-btn {
	background: #FFFFFF !important;
	color: #000 !important;
}
.header-top {
	background-color: #000 !important;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding: 8px 0;
	border-bottom: #f6c566 solid 1px;
}
.header-social-links ul li,
.header-contact-info ul li  {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}
.header-contact-info ul li {
padding: 5px 20px;
}
.header-contact-info ul li:first-child {
	position: relative;	
}
.header-contact-info ul li:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 14px 14px;
  background: linear-gradient(
    120deg,
    transparent,
    #f7c65d,
    #fff699,
    #ba8620,
    transparent
  );
  background-size: 300% 300%;
  animation: goldShine 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.header-social-links ul li a,
.header-contact-info ul li a  {
	font-size: 18px;
	color: #fff;
}
.header-contact-info ul li a {
	font-size: 16px;
	color: #fff;
}
.header-contact-info ul li svg {
	color: #fff;
	margin-right: 5px;
}
.header-scrolled .header-top {
	display: none;
}

/* banner */

.hero-section {
	position: relative;
	margin-top: 0;
	padding:184px 0 88px;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}
.hero-wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 108px;
}
.hero-image {
	width: calc(55.4% - 54px);
}
.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 40px;
}
.hero-content {
	width: calc(44.6% - 54px);
}
.hero-content h1 {
	margin:0 0 25px;
}
.hero-content p {
	margin:0 auto 45px;
}
.hero-form {
    width: 468px;
    padding: 0;
    margin: 0 0;
}
.hero-form label,
.contact-form label {
    font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #9B9B9B;
	margin-bottom: 5px;
	display: block;
}
.hero-form .input-box {
    background: #F6F6F6;
    border-radius: 8px;
    padding: 12px;
	padding-left: 36px;
    margin-bottom: 20px;
    border: none;
	outline: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}
.hero-form  .input-box i,
.hero-form  .input-box svg {
    margin-right: 10px;
    color: #333;
    font-size: 16px;
	position: absolute;
	left: 15px;
	width: 16px;
	height: 16px;
}
.hero-form  .input-box input,
.hero-form  .input-box select {
    border: none;
    background: none;
    width: 100%;
    font-weight: 500;
	font-size: 16px;
	line-height: 22px;
    outline: none;
    color: #575757;
}
.pickup-location {
	background: url(../images/circle.svg) no-repeat center center;
}
.pickoff-location {
	background: url(../images/rectangle.svg) no-repeat center center;
}
.date {
	background: url(../images/calendar.svg) no-repeat center center;
}
.time {
	background: url(../images/clock.svg) no-repeat center center;
}
.car {
	background: url(../images/car.svg) no-repeat center center;
}
.user {
	background: url(../images/user.svg) no-repeat center center;
}
.arrow-up {
	background: url(../images/arrow-up.svg) no-repeat center center;
}


.form-row {
    display: flex;
	flex-direction: row;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 16px;
}
.form-row .form-feild {
	width: calc(50% - 8px);
}
.col {
    width: 100%;
}

/* Buttons */
.hero-form  .buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.hero-form  .btn-black {
    background: #000;
    color: #fff;
	width: 100%;
	height: 50px;
	border-radius: 12px;
}

.hero-form .btn-grey {
    background: #eee;
    color: #000;
	width: 100%;
	height: 50px;
	border-radius: 12px;
}
/* scrolling script */


.section-title {
	margin-bottom: 64px;
	text-align: center;
}
.section-title h2 {
	margin-bottom: 15px;
}
.section-title p  {
	margin-bottom: 0;
   font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	color: #686868;
}
.clients-logo {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 64px;
}

/* service section */

.choose-us-section {
	position:relative
}
.choose-us-section .col-md-3 {
	padding: 0 8px;
}
.choose-us-item {
	padding: 24px 24px 32px;
	background: #F3F3F3;
	border-radius: 24px;
	text-align: center;
}
.choose-us-icon  {
	margin-bottom: 20px;
}
.choose-us-item h4 {
	letter-spacing: -2%;
	margin-bottom: 18px;
}
.choose-us-item p {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #646464;
	margin-bottom: 0;
}

/* service */

.service-section {
	position:relative;
	padding: 120px 0;
}
.service-section h4.category-title {
	text-align: center;
	margin-bottom: 15px;
}
.service-list  {
	background: #F7F7F7;
	border-radius: 48px;
	padding: 16px;
}
.service-section .col-md-3 {
	padding: 0 8px;
}
.service-item {
	padding: 24px 16px 16px;
	border: 1px solid #DCDCDC;
	border-radius: 32px;
}
.service-item:hover {
	background-color: #fff;
	border: 1px solid #fff;
}
.service-image  {
	margin-bottom: 16px;
	text-align: center;
}
.service-item h4 {
	letter-spacing: -1%;
	margin-bottom: 24px;
}
.service-item h3 {
	letter-spacing: -1%;
	margin-left: auto;
	margin-top: -50px;
	float: right;
}
.service-item p {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #646464;
	margin-bottom: 0;
}
.service-item ul li {
	list-style: disc;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #646464;
	margin-bottom: 8px;
	margin-left: 18px;
}
.service-item .common-btn  {
	margin-top: 20px;
	width: 100%;
	height: 50px;
}
.service-list .common-btn.bordered-btn {
	margin: 32px auto 0;
	border: 2px solid #010101;
	border-radius: 12px;
	text-align: center;
	padding: 16px 24px;
	background-color: transparent;
	color: #000;
	height: 50px;
	width: 226px;
	display: table;
}
/* About section */

.tracking-section {
	position: relative;
}
.tracking-content {
	padding-right: 32px;
}
.tracking-content h3 {
	color: #585757;
	margin-bottom: 20px;
	font-weight: 600;
}
.tracking-content h2 {
	font-size: 48px;
	line-height: 56px;
	margin-bottom: 10px;
}
.tracking-content p {
	color: #585757;
	margin-bottom: 24px;
	max-width: 820px;
}
.tracking-image {
	text-align: center;
	border-radius: 32px;
	border: #EDEDED solid 3px;
	overflow: hidden;
}
.tracking-image img {
	height: 100%;
}

/* cta  */

.cta-section {
  padding: 120px 0;
  background-color: #EBEBEB;
}
.cta-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top; 
  border-radius: 40px;
  text-align: center;
  padding: 32px;
  min-height: 454px;
  display: flex;
  align-items: center;
}
.cta-content {
  max-width: 570px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 5;
}
.cta-img h2{
font-weight: 700;
color: #FFFFFF;
margin-bottom: 12px;
text-transform: none;
}
.cta-img p {
font-weight: 600;
color: #FFFFFF;
max-width: 660px;
margin: 0 0 26px;
}

/* faq */

.our-faqs {
	padding-bottom: 120px;
	background-color: #EBEBEB;
}
.our-faqs h2 {
	text-transform: capitalize;
}

.faq-accordion .accordion-item{
    background: #FCFCFC;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 8px;
}
.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
}
.faq-accordion .accordion-header .accordion-button{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}
.faq-accordion .accordion-body{
	padding-right: 35px;
}
.faq-accordion .accordion-body p{
	margin: 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 25px;
	color: #464646;
}

/* footer */

.main-footer{
	padding: 96px 0 0;
	background: var(--accent-color);
}
.footer-logo {
	margin-bottom: 56px;
}
.footer-logo img {
	width: 300px;
}
.main-footer .footer-header{
	margin-bottom: 30px;
}
.footer-social-link-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}
.footer-header .footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 48px;
}
.footer-social-links ul li{
	display: inline-flex;
	margin-right: 0;
}
.footer-social-links ul li:last-child{
	margin-right: 0;
}
.footer-social-links ul li a{
	display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
	color: var(--white-color);
}
.footer-social-links ul li a svg {
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}
.footer-social-links ul li a:hover svg {
	opacity: 0.7;
}
.main-footer h3{
	font-weight: 700;
	font-size: 26px;
	line-height: 33px;
	color: #D4D3D3;
	margin-bottom: 20px;
}
.main-footer h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.main-footer strong {
	font-weight: 700;
	font-size: 16px;
	line-height: 28px;
	text-transform: capitalize;
	color: #FFFFFF;
	opacity: 0.82;
	display: block;
	margin-bottom: 12px;
}
.footer-header ul {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 16px;
}
.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}
.footer-links ul li:last-child{
	margin-bottom: 0;
}
.footer-links ul li:hover{
	color: var(--primary-color);
}
.footer-links ul li a{
	display: block;
	color: #FFFAFA;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	opacity: 0.5;
}
.footer-links ul li a:hover{
	opacity: 1;
}
.footer-copyright{
	border-top: 1px solid #919191;
	text-align: left;
	margin-top: 40px;
	padding: 16px 0px;
}
.footer-copyright p {
	font-weight: 400;
font-size: 16px;
line-height: 18px;
color: #DBDBDB;
opacity: 0.7;
margin: 0;
}
.footer-copyright-text p,
.designed-text p {
	color: var(--white-color);
	margin: 0;
}
.designed-text p {
	display: flex;
	justify-content: end;
	align-items: center;
}
.designed-text {
	text-align: right;
}
.footer-copyright .company-logo {
	float: right;
	margin-left: 10px;
	opacity: 1;
}

/* vehicle page section */

.vehicle-page-section {
	position: relative;
	padding: 164px 0 120px;
	background-color: #F7F7F7;
}
.vehicle-page-section .section-title h1,
.booking-page-section .section-title h1,
.blog-page-section h1,
.tour-page-section h1 {
	font-weight: 600;
	font-size: 40px;
	line-height: 20px;
	color: #000000;
	margin-bottom: 15px;
}
.vehicle-page-section .section-title {
	max-width: 880px;
	margin: 0 auto;
	margin-bottom: 32px;
}
.vehicle-page-section .section-title p,
.booking-page-section .section-title p {
	font-size: 24px;
	line-height: 32px;
}
.vehicle-item {
	background: #FFFFFF;
	border-radius: 32px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 32px 24px 24px 32px;
	gap: 80px;
	margin-bottom: 24px;
}
.vehicle-item:last-child {
	margin-bottom: 0;
}
.vehicle-image {
	width: calc(43% - 40px);
}
.vehicle-content {
	width: calc(57% - 40px);
}
.vehicle-content ul li {
	font-weight: 500;
	font-size: 20px;
	line-height: 25px;
	padding:5px 0 5px 35px;
	letter-spacing: -0.01em;	
	color: #646464;
	margin-bottom: 10px;
}
.vehicle-content p {
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 24px;
	color: #646464;
}
.passenger {
	background: url(../images/passenger.svg) no-repeat left center;
}
.suitcase {
	background: url(../images/suitcase.svg) no-repeat left center;
}
.cabin {
	background: url(../images/cabin.svg) no-repeat left center;
}
.pet {
	background: url(../images/pet.svg) no-repeat left center;
}
.vehicle-content h3 {
	margin-bottom: 25px;
}
.vehicle-content .price {
font-weight: 700;
font-size: 32px;
line-height: 40px;
color: #000000;
letter-spacing: -0.01em;
text-transform: capitalize;
float: right;
margin-top: -64px;
}
.vehicle-content .common-btn {
	width: 100%;
	height: 50px;
}

.custom-service {
	padding: 120px 0;
	background-color: #EBEBEB;
	position: relative;
}
.custom-service-box {
	background: #FFFFFF;
	border-radius: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 32px;
	gap: 16px;
}
.custom-service-content {
	width: calc(36.5% - 8px);
}
.custom-service-image {
	width: calc(63.5% - 8px);
}
.custom-service-content h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 64px;
}
.custom-service-content p {
	color: #585757;
}
.custom-service-content .common-btn {
	height: 50px;
}

/* service page section */

.inner-banner {
	padding: 118px 13px 0px;
	background: #FFFFFF;
}
.inner-benner-image {
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 40px;
	position: relative;
	min-height: 403px;
	display: flex;
	align-items: flex-end;
}
.banner-content {
	max-width: 1600px;
	margin: 0 auto 40px;
	text-align: center;
	position: relative;
	z-index: 5;
}
.banner-content h1,
.blog-details-text h1 {
	font-weight: 600;
	font-size: 40px;
	line-height: 20px;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.banner-content p {
	font-weight: 500;
	font-size: 28px;
	line-height: 28px;
	color: #FFFFFF;
	margin-bottom: 0;
}
.service-page-section {
	padding: 16px 0 40px;
	background: #FFFFFF;
	position: relative;
}
.service-page-list,
.blog-page-list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 16px;
	align-self: stretch;
}
.service-page-list .service-item,
.blog-item {
	background: #F7F7F7;
	border-radius: 32px;
	padding: 16px 16px 86px;
	width:calc(33.3% - 11px);
	border: none;
	position: relative;
}
.service-page-list .service-item .common-btn {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	width: auto;
}
.service-page-list .service-image {
	margin-bottom: 0;
}
.service-page-list .service-image img,
.blog-item img {
	border-radius: 16px;
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.service-page-section .nav-tabs {
	background: #F0F0F0;
	border-radius: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 16px;
	gap: 28px;
	max-width: 942px;
	border: none;
	margin: 0 auto 24px;
}
.service-page-section .nav-tabs .nav-link {
	padding: 14px 24px 16px;
	font-weight: 500;
	font-size: 20px;
	line-height: 17px;
	text-align: center;
	text-transform: capitalize;
	color: #999999;
	border-radius: 24px;
	border: none !important;
}
.service-page-section .nav-tabs .nav-link.active {
	background: #000000;
	border: 1px solid #DFDFDF;
	box-shadow: 0px 46px 18px rgba(163, 159, 159, 0.01), 0px 26px 15px rgba(163, 159, 159, 0.05), 0px 11px 11px rgba(163, 159, 159, 0.09), 0px 3px 6px rgba(163, 159, 159, 0.1);
	color: #fff;
}
.service-page-section .section-title {
	margin-bottom: 32px;
}
.service-page-section .section-title h3,
.booking-page-section h3,
.blog-text h3,
.about-text h3,
.blog-details-conclusion h3 {
	font-weight: 600;
	font-size: 32px;
	line-height: 20px;
	color: #000000;
	text-transform: capitalize;
	margin-bottom: 20px;
}

/* bookings page section */

.booking-page-section {
	padding: 164px 0 120px;
	background: #F7F7F7;
	position: relative;
}
.booking-page-section p,
.blog-text p {
	color: #686868;
}
.booking-content-left p {
	max-width: 650px;
}
.steps-list {
	background: #EBEBEB;
	border: 2px solid #D6D2D2;
	border-radius: 32px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	padding: 48px 24px;
	gap: 0;
}
.step-icon {
	margin-bottom: 16px;
}
.step-item  {
	border-right: 2px solid #D6D2D2;
	padding:0 24px;
	text-align: center;
	width: 33.33%;
}
.step-item:last-child {
	border-right: none;
}
.step-item p {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #686868;
	margin: 0;
}
.booking-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 0px;
	gap: 80px;
}
.booking-form {
	background: #FFFFFF;
	border: 2px solid #E6E6E6;
	box-shadow: 0px 118px 47px rgba(120, 120, 120, 0.01), 0px 66px 40px rgba(120, 120, 120, 0.05), 0px 30px 30px rgba(120, 120, 120, 0.09), 0px 7px 16px rgba(120, 120, 120, 0.1);
	border-radius: 36px;
	padding: 32px;
	width: calc(35.8% - 40px);
}
.booking-content-left {
	width: calc(64.2% - 40px);
}

.quote-now-form {
	background: #FFFFFF;
	border: 2px solid #E6E6E6;
	box-shadow: 0px 118px 47px rgba(120, 120, 120, 0.01), 0px 66px 40px rgba(120, 120, 120, 0.05), 0px 30px 30px rgba(120, 120, 120, 0.09), 0px 7px 16px rgba(120, 120, 120, 0.1);
	border-radius: 36px;
	padding: 32px;
	width: 100%;
}

/* blog */

.blog-page-section {
	padding: 164px 0 160px;
	position: relative;
}
.blog-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	padding: 0px;
	gap: 64px;
	margin-bottom: 32px;
}
.blog-page-image {
	width: calc(60% - 32px);
	border-radius: 32px;
}
.blog-page-image img {
	width: 100%;
	height: auto;
	border-radius: 32px;
}
.blog-text {
width: calc(40% - 32px);
}
.blog-content h4 {
	margin-bottom: 16px;
	letter-spacing: -2%;
	line-height: 31px;
}
.service-content p,
.blog-content p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #686868;
	margin-bottom: 16px;
}
.blog-page-section h1 {
	line-height: 44px;
	margin-bottom: 48px;
}
.blog-image {
	position: relative;
}
.blog-image .category {
	position:absolute;
	top:26px;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 10px;
	right: 26px;
	color: #003265;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	text-align: center;;
}
.blog-bottom-wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0px;
	gap: 16px;
	position:absolute;
	bottom:16px;
	left:16px;
	right: 16px;
}
.blog-date {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #686868;
}
.read-more-btn {
	font-weight: 600;
	font-size: 20px;
	line-height: 29px;
	color: #686868;
	text-decoration-line: underline;
}
.blog-item {
	margin-bottom: 16px;
	padding: 16px 16px 36px;
}
/* about page  */

.about-page-section {
	position: relative;
	padding: 64px 0 120px;;
}
.about-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 80px;
	flex-wrap: wrap;
}
.about-choose-us {
	margin-bottom: 80px;
}
.about-page-image,
.about-choose-us-list {
	width: calc(55% - 40px);
}
.about-page-image img {
	width: 100%;
	height: auto;
	border-radius: 24px;
}
.about-text {
	width: calc(45% - 40px);
}
.about-text p {
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	color: #686868;
	margin-bottom: 0;
}
.commitment-wrap {
	margin: 80px 0;
}
.commitment-wrap .about-text p,
.about-choose-us .about-text p {
	margin-bottom: 23px;
}
.about-text ul {
	margin-left: 26px;
}
.about-text ul li  {
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	color: #686868;
	margin-bottom: 0;
	list-style: disc;
}
.about-choose-us-list .col-md-6 {
	padding: 4px;
}
/* contact page */

.contact-content-wrap,
.contact-content {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex-wrap: wrap;
	padding: 0px;
	gap: 32px;
}
.contact-content {
	margin-top: 24px;
}
.contact-content-left,
.contact-form,
.map {
	width: calc(51.7% - 16px);
}
.contact-content-left,
.contact-details {
	width: calc(48.3% - 16px);
}
.contact-img img {
	width: 100%;
	height: auto;
	border-radius: 32px;
	object-fit: cover;
}
.contact-form,
.contact-details {
	padding: 32px;
	background: #FFFFFF;
	border-radius: 36px;
}
.contact-form input,
.contact-form textarea {
	background: #F6F6F6;
	border-radius: 8px;
	padding: 16px;
	height: 57px;
	border: none;
	box-shadow: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #686677;
	width: 100%;
}
.contact-form textarea {
	height: 105px;
	width: 100%;
}
.contact-form .form-group {
	margin-bottom: 16px;
}
.contact-form .common-btn {
	width: 100%;
	height: 50px;
	margin-top: 16px;
}
.map {
	border: 3px solid #DCDCDC;
	border-radius: 32px;
	overflow: hidden;
}
.map iframe {
	margin-bottom: -6px;
}
.contact-item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	padding: 0px;
	gap: 24px;
	margin-bottom: 40px;
}
.contact-details p {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	margin: 0;
}
.contact-icon {
	width: 64px;
	height: 64px;
	background: #EFEFEF;
	border-radius: 50px;
	padding: 16px;
	color: #292D32;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
}
.contact-text h4 {
	font-weight: 600;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.contact-text p {
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
	color: #4A4A4A;
	margin-bottom: 0;
}
.contact-text.address p {
	max-width: 352px;
}
.contact-item.location {
	margin-bottom: 15px;
}
.contact-form label {
	line-height: 25px;
	margin-bottom: 8px;
}

/* tour-page-section */

.tour-page-section {
	position: relative;
	padding: 164px 0 120px;
	background-color: #fff;
}
.tour-page-section h1 {
	text-transform: capitalize;
}
.tour-page-section .section-title p {
	max-width: 1024px;
	margin: 0 auto;
}
.tour-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	padding: 0px;
	gap: 52px;
	margin-bottom: 32px;
}
.tour-image {
	width: calc(64% - 26px);
}
.tour-image  img {
	width: 100%;
	height: auto;
	border-radius: 32px;
}
.tour-content {
	width: calc(36% - 26px);
}
.tour-content h3 {
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.tour-content p {
	font-weight: 500;
	font-size: 20px;
	line-height: 29px;
	color: #686868;
	margin-bottom: 12px;
}
.tour-content p i {
	font-size: 18px;
}
.tour-content p:last-of-type {
	margin-bottom: 0;
}
.tour-cta-section .cta-content {
	max-width: 670px;
}

/* blog details page */

/*.blog-details-wrap {*/
/*	display: flex;*/
/*	flex-direction: row;*/
/*	align-items: center;*/
/*	flex-wrap: wrap;*/
/*	padding: 0px;*/
/*	gap: 64px;*/
/*}*/
/*.blog-details-page-image,*/
/*.blog-details-text {*/
/*	width:100%;*/
/*}*/
.blog-details-page-image {
    float: left;
    margin-right: 30px;
}
.blog-details-page-image img,
.blog-details-text figure img {
	border-radius: 32px;
}
.blog-details-text figure {
    margin-bottom: 30px;
}
.blog-details-text p,
.blog-details-text ul li,
.blog-details-text ol li {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	color: #686868;
	margin-bottom: 24px;
}
.blog-details-text ul li,
.blog-details-text ol li {
	margin-bottom: 6px;
	list-style: disc;
}
.blog-details-text ul,
.blog-details-text ol {
    margin-left: 24px;
    margin-bottom: 20px;
}
.blog-details-text ol li {
	list-style: decimal;
}
.blog-details-text table td,
.blog-details-text table th {
	border: 1px solid #DCDCDC;
	padding: 12px 16px;
	text-align: left;
}
.blog-details-text h3 {
    margin-bottom: 15px;
}
.blog-details-text h3 img {
    width: 30px;
    height:auto;
    margin-right: 10px;
}
.blog-details-text .date {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #686868;
	margin-bottom: 24px;
	background: none;
}
.blog-details-text h1 {
	color: #000;
	margin-bottom: 24px !important;
}
.social-icons span {
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	text-transform: capitalize;
	color: #000000;
}
.social-icons ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 16px;
}
.social-icons ul li a {
	color: #000000;
	font-size: 18px;
}
.blog-details-text .category {
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	color: #003265;
	padding: 10px;
	background: #E9F3FD;
border-radius: 8px;
margin-bottom: 24px;
display: table;
}
.blog-details-page-list {
	display: flex;
flex-direction: row;
align-items: stretch;
flex-wrap: wrap;
padding: 0px;
gap: 24px;
margin-top: 32px;
margin-bottom: 40px;
}
.blog-details-item {
	width: calc(33.3% - 16px);
	margin-bottom: 16px;
}
.blog-details-image img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	margin-bottom: 24px;
}
.blog-details-item h4 {
	margin-bottom: 16px;
}
.blog-details-item p,
.blog-details-conclusion p,
.blog-details-conclusion ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #686868;
	margin: 0;
}
.blog-details-conclusion ul li {
	list-style: disc;
	margin-bottom: 8px;
	margin-left: 20px;
}
.blog-details-conclusion ul {
	margin-bottom: 32px;
}
.blog-details-conclusion p:last-of-type {
	margin: 0;
}

/* login */

.login-wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 56px;
}
.login-img,
.login-form {
	width: calc(50% - 28px);
}
.login-img img {
	border-radius: 32px;
}
.login-form p {
	color: #000;
	margin: 18px 0;
	font-weight: 600;
}
.login-form {
	padding: 120px 56px;
	text-align: center;
	max-width: 640px;
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
	padding: 18px 12px 18px 20px;
	background: #E8E8E8;
	border: 1px solid #CBCAD7;
	border-radius: 12px;
	height: 52px;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	color: #7F7F7F;
	width: 100%;
}
.login-form .form-group {
	margin-bottom: 24px;
}
.login-form .common-btn {
	width: 100%;
	height: 53px;
}
.login-form p small {
	font-weight: 400;
	font-size: 16px;
	color: #686868;
}
.login-form p small a {
	color: #090909;
	text-decoration: underline;
	margin-left: 5px;
}
/* Bottom Call Bar */
.floating-div {
  position: fixed;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9998;
}
.whatsapp-div {
	position: absolute;
	right: 10px;
	bottom: 73px;	
	text-align: center;
}
.whatsapp-div img {
	width: 50px;
	height: auto;
}
.call-bar {
  position: fixed;
  bottom: 5px;
  left: 8px;
  right: 8px;
  display: flex;
  background: #0f1f17;
  /* border-top: 1px solid rgba(255, 215, 130, 0.4); */
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
  border-radius:14px;
  overflow: hidden;
}
.gold-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 14px 14px;
  background: linear-gradient(
    120deg,
    transparent,
    #f7c65d,
    #fff699,
    #ba8620,
    transparent
  );
  background-size: 300% 300%;
  animation: goldShine 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Animation */
@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* Buttons */
.call-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  align-content: center;
  z-index: 1000;
}

/* Call Button */
.call-btn {
  background: linear-gradient(135deg, #1f6f43, #144b2e);
  border-right: 1px solid rgba(255, 215, 130, 0.3);
}
.call-btn i, 
.call-btn svg {
  margin-right: 8px;
  font-size: 18px;
}
/* Quote Button */
.quote-btn {
  background: linear-gradient(135deg, #caa85c, #8d6a2a);
  color: #1a1a1a;
  max-width: 35%;
}

/* Mobile only */
@media (min-width: 768px) {
  .call-bar,
  .floating-div  {
    display: none;
  }
}
.payments {
	margin-top: 20px;
}
.payments ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}
  /* media query */

   @media only screen and (max-width: 1850px){	
    .container-fluid {
      padding: 0 100px;
    }
	h1,
	.custom-service-content h2 {
		font-size: 45px;
		line-height: 50px;
	} 
	.hero-content p {
		margin: 0 auto 35px;
	}
	.cta-section,
	.service-section,
	.custom-service {
		padding: 100px 0;
	}
	.our-faqs {
		padding-bottom: 100px;
	}
	.section-title {
		margin-bottom: 56px;
	}
	.main-footer {
		padding: 80px 0 0;
	}
	.step-item {
		padding: 0 20px;
	}
  }
@media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 70px;
    }   
    section {
      padding: 70px 0;
    }
	.main-footer h3 {
		font-size: 24px;
  		line-height: 30px;
	}
	 .contact-img {
		height: 100%;
	 } 
	 .contact-img img {
		width: auto;
		height: 100%;
	 }
	 .contact-item {
		margin-bottom: 26px;
	 }
	 .contact-text h4 {
		font-size: 20px;
	 }
	 .contact-text p,
	 .contact-details p {
		font-size: 18px;
  		line-height: 26px;
	 }
} 
@media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 60px;
    }   
	h1,
	.custom-service-content h2 {
		font-size: 42px;
		line-height: 48px;
	}
	h2 {
  		font-size: 36px;
  		line-height: 44px;
	}
	h3 {
		font-size: 26px;
		line-height: 32px;
	}
	h4 {
		font-size: 22px;
	}
	.section-title {
		margin-bottom: 50px;
	}
	.section-title p {
  		font-size: 24px;
  		line-height: 36px;
	}
	.clients-logo {
		gap: 56px;
	}	
	.hero-section {
		padding: 170px 0 70px;
	}
	.hero-content h1 {
		margin: 0 0 15px;
	}
	.hero-content p {
		margin: 0 auto 25px;
	}
	.hero-wrap {
		gap: 80px;
	}
	.hero-image {
		width: calc(55.4% - 40px);
	}
	.hero-content {
		width: calc(44.6% - 40px);
	}
	.hero-image img {
		width: auto;
		height: 100%;
		border-radius: 40px;
	}
	.choose-us-icon img {
		height: 150px;
		width: auto;
	}
	  .main-footer h3 {
		font-size: 22px;
		line-height: 29px;
	}
	.cta-section,
	.service-section {
		padding: 80px 0;
	}
	.our-faqs {
		padding-bottom: 80px;
	}
	.banner-content p {
		font-size: 26px;
  		line-height: 30px;
	}
	.inner-benner-image {
		min-height: 380px;
	}
	.booking-content,
	.about-wrap {
		gap: 60px;
	}
	.booking-content-left {
	width: calc(64.2% - 30px);
	}
	.booking-form {
		width: calc(35.8% - 30px);
	}
	.quote-now-form {
		width: 100%;
	}
	.step-item p {
		font-size: 17px;
		line-height: 22px;
	}
	.about-page-section {
		padding: 50px 0 100px;
	}
	.about-page-image, .about-choose-us-list {
		width: calc(55% - 30px);
	}
	.about-text {
	width: calc(45% - 30px);
	}
	.about-choose-us {
		margin-bottom: 60px;
		}
		.commitment-wrap {
			margin: 60px 0;
		}
		.about-text p,
		.about-text ul li {
			font-size: 18px;
  			line-height: 30px;
		}
		.blog-content h4 {
			line-height: 28px;
		}
		.login-form {
			max-width: 560px;
		}
} 
 @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    } 
	h1,
	.custom-service-content h2 {
		font-size: 40px;
		line-height: 46px;
	}  
	  h3 {
    font-size: 24px;
    line-height: 30px;
  }  
  .vehicle-page-section .section-title h1, .booking-page-section .section-title h1, .blog-page-section h1, .tour-page-section h1 {
	font-size: 36px;
  line-height: 20px;
  }
  .banner-content p {
	font-size: 24px;
  }
  .steps-list {
	padding: 40px 18px;
  }
  .step-item p {
	font-size: 16px;
  }
  .blog-page-section h1 {
	line-height: 40px;
	margin-bottom: 40px;
  }
}
 @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    } 
	.hero-wrap {
		gap: 60px;
	}
	.hero-image {
		width: calc(55.4% - 30px);
	}
	.hero-content {
		width: calc(44.6% - 30px);
	}
	h1,
	.custom-service-content h2 {
		font-size: 38px;
		line-height: 44px;
	}
	.hero-form .input-box {
		margin-bottom: 15px;
	}
	  .hero-section {
    padding: 150px 0 60px;
  }
  section,
  .cta-section, .service-section, .custom-service {
    padding: 60px 0;
  }
   h2 {
    font-size: 34px;
    line-height: 42px;
  }
   .section-title {
    margin-bottom: 40px;
  }
   .clients-logo {
    gap: 40px;
  }
  .choose-us-item p {
	font-size: 20px;
  line-height: 24px;
  }
   h3 {
    font-size: 22px;
    line-height: 28px;
  }
   h4 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .service-item ul li,
  .faq-accordion .accordion-body p,
  .vehicle-content ul li,
  .vehicle-content p {
	font-size: 18px;
	line-height: 24px;
  }
  
  p,
  .vehicle-page-section .section-title p, .booking-page-section .section-title p {
  font-size: 22px;
  line-height: 30px;
  }
  .cta-img {
	min-height: 400px;
  }
  .our-faqs {
    padding-bottom: 60px;
  }
  .faq-accordion .accordion-header .accordion-button {
  font-size: 22px;
  line-height: 28px;
  }
   .main-footer {
    padding: 40px 0 0;
  }
   .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo img {
	width: 300px;
  }
  .main-footer h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .tracking-content h2 {
  	font-size: 44px;
  	line-height: 50px;
  }
  .vehicle-page-section .section-title h1, .booking-page-section .section-title h1, .blog-page-section h1, .tour-page-section h1 {
	font-size: 34px;
  line-height: 20px;
  }
  .vehicle-content .price {
	font-size: 30px;
  }
  .vehicle-page-section,
  .booking-page-section,
  .blog-page-section,
  .tour-page-section {
	padding: 150px 0 100px;
  }
  .inner-benner-image {
		min-height: 350px;
	}
	.banner-content p {
		max-width: 90%;
		margin: 0 auto;
	}
	.service-item h4 {
		margin-bottom: 15px;
	}
	.service-page-list .service-item {
		padding: 16px 16px 70px;
	}
	.step-item {
    padding: 0 12px;
  }
   .booking-content,
   .about-wrap {
    gap: 40px;
  }
   .booking-content-left {
    width: calc(64.2% - 20px);
  }
  .booking-form {
    width: calc(35.8% - 20px);
	padding: 24px;
  }
  .quote-now-form {
    width: 100%;
	padding: 24px;
  }
  .contact-text h4 {
		font-size: 18px;
	 }
	 .contact-text p,
	 .contact-details p {
		font-size: 16px;
  		line-height: 24px;
	 }
	 .about-page-section {
		padding: 40px 0 80px;
	}
	.about-page-image, .about-choose-us-list {
		width: calc(55% - 20px);
	}
	.about-text {
	width: calc(45% - 20px);
	}
	.about-choose-us {
	margin-bottom: 50px;
	}
	.commitment-wrap {
		margin: 50px 0;
	}
	.about-text p,
	.about-text ul li {
		font-size: 16px;
		line-height: 28px;
	}
	.blog-image .category {
		top: 15px;
		right: 15px;
	}
	.blog-content h4 {
		margin-bottom: 10px;
		line-height: 26px;
	}
	.blog-page-section h1 {
    line-height: 38px;
    margin-bottom: 35px;
  }
  .read-more-btn {
	font-size: 18px;
  }
  .tour-item {
	gap: 40px;
  }
  .tour-image {
  width: calc(64% - 20px);
}
.tour-content {
  width: calc(36% - 20px);
}
.tour-content h3 {
	margin-bottom: 10px;
}
.tour-content p {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 10px;
}
.login-wrap {
	gap: 40px;
}
.login-img, .login-form {
  width: calc(50% - 20px);
}
}
@media only screen and (max-width: 1300px){
.service-section .col-md-3 {
  padding: 0 4px;
}
.service-item {
  padding: 24px 10px 16px;
  border-radius: 24px;
}
.service-list {
	border-radius: 36px;
}
.choose-us-item {
  padding: 20px 15px 25px;
}
.choose-us-icon {
  margin-bottom: 15px;
}
.hero-wrap {
    gap: 40px;
}
.hero-image {
	width: calc(55.4% - 20px);
}
.hero-content {
	width: calc(44.6% - 20px);
}
  .container-fluid {
    padding: 0 15px;
  }
  h1,
  .custom-service-content h2 {
    font-size: 37px;
    line-height: 44px;
  }
  .main-menu ul li a {
	font-size: 16px;
	padding: 10px 5px;
  }
  .service-page-section .section-title h3, .booking-page-section h3, .blog-text h3, .about-text h3, .blog-details-conclusion h3 { 
	font-size: 28px;
  }
  .map iframe {
	height: 100% !important;
  }
}
@media only screen and (max-width: 1200px){
	.navbar {
  		padding: 10px 0;
	}
	.common-btn {
		padding: 11px 20px;
	}
	.service-item .common-btn {
		height: 44px;
	}
	.is-sticky .logo img,
	.logo img {
		height: 50px;
	}
	.hero-wrap {
		gap: 30px;
	}
	.hero-section {
		padding: 130px 0 50px;
	}
	.hero-image {
		width: calc(55.4% - 15px);
	}
	.hero-content {
		width: calc(44.6% - 15px);
	}
	 h1,
	 .custom-service-content h2 {
		font-size: 34px;
		line-height: 40px;
	}
	.hero-content p {
    margin: 0 auto 15px;
  }
   p,
     .vehicle-page-section .section-title p, .booking-page-section .section-title p {
    font-size: 20px;
    line-height: 28px;
  }
   .choose-us-item p {
    font-size: 18px;
    line-height: 22px;
  }
   .section-title {
    margin-bottom: 35px;
  }
  .section-title h2 {
  margin-bottom: 10px;
}
.service-list .common-btn.bordered-btn {
  margin: 25px auto 0;
  height: 44px;
  width: 200px;
  padding: 12px 24px;
}
 .tracking-content h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .main-footer h4 {
	font-size: 18px;
  line-height: 24px;
  }
  .footer-links ul li a {
	font-size: 15px;
  }
    .main-footer h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-copyright {
	margin-top: 30px;
  }
  .footer-copyright p {
	font-size: 14px;
  }
    section, .cta-section, .service-section, .custom-service {
    padding: 50px 0;
  }
    .vehicle-page-section,
	.booking-page-section,
	.blog-page-section,
	.tour-page-section {
	padding: 140px 0 80px;
  }
   .vehicle-page-section .section-title h1, .booking-page-section .section-title h1, .blog-page-section h1, .tour-page-section h1 {
    font-size: 32px;
    line-height: 20px;
  }
   .vehicle-content .price {
    font-size: 28px;
  }
   .inner-benner-image {
    min-height: 320px;
  }
  .service-page-section .section-title h3, .booking-page-section h3, .blog-text h3, .about-text h3, .blog-details-conclusion h3 {
	font-size: 26px;
	margin-bottom: 15px;
  }
    .booking-content,
	.about-wrap {
    gap: 30px;
  }
    .booking-content-left {
    width: calc(64.2% - 15px);
  }
    .booking-form {
    width: calc(35.8% - 15px);
    padding: 20px 15px;
  }
  .quote-now-form {
    width: 100%;
    padding: 20px 15px;
  }
   .steps-list {
    padding: 30px 10px;
  }
    .step-item {
    padding: 0 10px;
  }
  h5 {
  font-size: 18px;
  line-height: 20px;
  }
  .step-item p {
    font-size: 14px;
  }
  .contact-icon {
	width: 50px;
	height: 50px;
	line-height: 18px;
  }
   .contact-text p, .contact-details p {
    font-size: 15px;
    line-height: 24px;
  }
  .contact-text h4 {
	margin-bottom: 5px;
  }
  .about-page-section {
	padding: 40px 0 70px;
  }
  .about-page-image, .about-choose-us-list {
		width: calc(55% - 15px);
	}
	.about-text {
	width: calc(45% - 15px);
	}
	.about-choose-us {
		margin-bottom:40px;
		}
		.commitment-wrap {
			margin: 40px 0;
		}
		.about-text p,
		.about-text ul li {
			font-size: 15px;
  			line-height: 26px;
		}
	.blog-page-section h1 {
    line-height: 36px;
    margin-bottom: 30px;
  }
  .blog-wrap,
  .blog-details-wrap {
	gap: 50px;
  }
  .blog-page-image {
  width: calc(60% - 25px);
  }
  .blog-text {
  width: calc(40% - 25px);
}
.blog-details-page-image, 
.blog-details-text {
	width: calc(50% - 25px);
}
.blog-details-text .category,
.blog-details-text h1,
.blog-details-text .date,
.blog-details-text p {
	margin-bottom: 15px !important;
}
.blog-details-text p,
.blog-details-text ul li,
.blog-details-text ol li  {
	font-size: 18px;
	line-height: 26px;
}
.blog-details-item h4 {
  margin-bottom: 10px;
}
.tour-item {
	gap: 30px;
  }
  .tour-image {
  width: calc(64% - 15px);
}
.tour-content {
  width: calc(36% - 15px);
}
 .tour-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 7px;
  }
  .tour-content p i {
  font-size: 16px;
}
.login-form {
  padding: 40px 40px;
}
}
@media only screen and (max-width: 1100px){
	.contact-now-box .common-btn {
		padding: 11px 18px;	
		font-size: 15px;
	}
	.is-sticky .logo img, .logo img {
    height: 50px;
  }
  .main-menu ul li {
  margin: 0 2px;
}
 .main-menu ul li a {
    font-size: 14px;
 }
  .navbar {
    padding: 10px 0;
  }
   h1 {
    font-size: 31px;
    line-height: 36px;
  }
   h2,
   .custom-service-content h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .hero-form {
  width: 410px;
  }
  .hero-form .buttons {
	margin-top: 15px;
  }
    .section-title p {
    font-size: 20px;
    line-height: 28px;
  }
  .choose-us-item h4 {
	margin-bottom: 12px;
  }
   .choose-us-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .service-list .col-md-3 {
    flex: 0 0 auto;
    width: 50%;
  }
  .service-list .col-md-3:first-child,
  .service-list .col-md-3:nth-child(2) {
	margin-bottom: 16px;
  }
   .tracking-content h2 {
    font-size: 36px;
    line-height: 41px;
  }
  .cta-img {
	padding: 32px 20px;
	min-height: 350px;
  }
  .cta-img p {
	max-width: 500px;
  }
   .footer-links ul li a {
    font-size: 13px;
  }
   .main-footer h4 {
    font-size: 17px;
    line-height: 23px;
  }
    .faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    line-height: 26px;
  }
  .hero-form .input-box {
	padding: 12px;
	padding-left: 32px;
  }
  .service-page-list .service-item{
	padding: 16px 16px 56px;
  }
    .booking-content-left,
	.booking-form {
    width: 100%;
  }
  .booking-content-left,
	.quote-now-form {
    width: 100%;
  }
 .contact-content-wrap, .contact-content {
	gap: 24px;
  }
  .contact-content-left, .contact-details {
	width: calc(48.3% - 12px);
  }
  .contact-form, .map {
  width: calc(51.7% - 12px);
}
.contact-form, .contact-details {
	padding: 24px;
}
.contact-item {
	gap: 12px;
}
 .contact-text p, .contact-details p {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-text.address p {
  max-width: 325px;
}
  .tour-content h3 {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px){
  .hero-image,
  .hero-content {
    width: 100%;
  }
   .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 15px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--white-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--white-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #000;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
	}
	.main-menu ul li a {
	  line-height: 35px !important;
	  padding-left: 15px;
	}
	.mob-logo {
		display: block;
		padding: 15px;
	}
		.mob-logo img {
			height: 30px;
			width: auto;
		}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	} 
	.navbar .submenu li a {
	  padding: 0;
	}
	.outer-menu ul li.submenu :hover > ul {
	  display: none;
	}
	.outer-menu ul li.submenu ul {
	  transform:none !important;
	  position: static;
	  float: none;
	  display: none;
	  padding: 0;
	  box-shadow: none;
	  visibility: visible !important;
	  opacity: 1 !important;
	  transition: max-height 0.3s ease-out;
	  top: 0;
	}
	.outer-menu ul li.submenu.open ul {
	  transition: max-height 0.3s ease-out;
	}
	.navbar .submenu::after {
	  top: 17px;
	}
	.hero-section {
		padding: 100px 0 40px;
	}
	.hero-image img {
		width: 100%;
		height: auto;
	}
	.header-top {
		display: none;
	}
	.is-sticky {
		height: 70px !important;
		max-height: 70px !important;
	}
	 section, .cta-section, .service-section, .custom-service {
		padding: 40px 0;
	}
	.our-faqs {
		padding-bottom: 40px;
	}
	 .clients-logo {
		gap: 30px;
	}
	.choose-us-section .col-md-3 {
		width: 50%;
	}
	.choose-us-section  .col-md-3:first-child,
	.choose-us-section  .col-md-3:nth-child(2) {
		margin-bottom: 16px;
	}
	.choose-us-item {
		height: 100%;
	}
	.tracking-content {
  padding-right: 0;
}
.tracking-section .col-md-7,
.tracking-section .col-md-5 {
	width: 100%;
}
.tracking-image {
	margin-top: 20px;
}
.tracking-image img {
	width: 100%;
	height: auto;
}
.cta-img {
    padding: 32px 20px;
    min-height: 300px;
    border-radius: 32px;
  }
  .cta-img h2 {
	margin-bottom: 5px;
  }
  .cta-img p {
	margin-bottom: 20px;
  }
    .main-footer {
    padding: 30px 0 0;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo img {
	width: 250px;
  }
  .main-footer .footer-header .col-lg-4 {
	width: 100%;
  }
  .main-footer .col-lg-6 {
	width: 70%;
  }
  .main-footer .col-md-2 {
	width: 30%;
  }
  .main-footer .footer-header {
  margin-bottom: 20px;
}
  .vehicle-page-section,
  .booking-page-section,
  .blog-page-section,
  .tour-page-section {
	padding: 100px 0 60px;
  }
  .vehicle-page-section .section-title h1, .booking-page-section .section-title h1, .blog-page-section h1, .tour-page-section h1 {
    font-size: 30px;
    line-height: 20px;
  }
  .inner-banner {
  padding: 90px 13px 0px;
  }
    .inner-benner-image {
    min-height: 300px;
  }
  .banner-content h1, .blog-details-text h1 {
	font-size: 34px;
  }
    .banner-content p {
    font-size: 20px;
	line-height: 28px;
  }
  .service-page-section .nav-tabs .nav-link {
	font-size: 16px;
	padding: 14px 20px 16px;
  }
  .service-page-section .nav-tabs {
	gap: 10px;
  }
  .service-page-section .section-title h3, .booking-page-section h3, .blog-text h3, .about-text h3, .blog-details-conclusion h3 {
    font-size: 27px;
    margin-bottom: 15px;
  }
  .service-page-list .service-item, .blog-item {
	width: calc(50% - 11px);
  }
  .service-page-list .service-image img {
  margin-bottom: 10px;
  }
   .contact-content-left, .contact-details,
   .contact-form, .map,
    .about-page-image, .about-choose-us-list,
	.about-text,
	.blog-page-image,
	.blog-text,
	.blog-details-page-image, .blog-details-text,
	.tour-image, .tour-content {
	width: 100%;
  }
   .map iframe {
    height: 350px !important;
  }
   .contact-img img {
    width: 100%;
    height: auto;
  }
  .about-page-section {
	padding: 40px 0 60px;
  }
.about-choose-us {
margin-bottom:30px;
}
.commitment-wrap {
	margin: 30px 0;
}
.about-page-image {
	order: 1;
}
.about-text {
	order: 2;
}
 .blog-page-section h1 {
    line-height: 34px;
    margin-bottom: 25px;
  }
   .blog-wrap,
   .blog-details-wrap {
    gap: 30px;
	margin-bottom: 0;
  }
  .blog-item {
	margin-bottom: 0;
  }
  .blog-details-item {
	width: calc(50% - 16px);
	margin-bottom: 10px;
	}
	.blog-details-page-list {
		margin-bottom: 20px;
	}
  .tour-item {
    gap: 20px;
  }
   .login-form {
    padding: 00;
  }
}
@media only screen and (max-width: 767px) {
 .clients-logo {
    gap: 30px;
    flex-wrap: wrap;
  }
   .clients-logo img {
	width: auto;
	height: 45px;
   }
    h1,
	.custom-service-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
    h2 {
    font-size: 26px;
    line-height: 32px;
  }
    .tracking-content h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .cta-img {
	min-height: 270px;
  }
  .faq-accordion .accordion-item {
	padding: 20px;
  }
   .main-footer .footer-header .col-lg-6,
   .main-footer .col-md-2 {
    width: 100%;
  }
  .main-footer h4 {
	margin-bottom: 10px;
  }
  .footer-social-links {
	margin-top: 20px;
  }
  .main-footer .col-lg-4,
  .main-footer .col-lg-3,
  .main-footer .col-lg-2 {
	width: 50%;
	margin-bottom: 20px;
  }
  .footer-copyright {
    margin-top: 10px;
  }
  .footer-copyright p {
	text-align: center;
  }
  .designed-text p {
	justify-content: center;
	margin-top: 10px;
  }
  .main-footer h3 {
	margin-bottom: 0;
  }
  p,
    .vehicle-page-section .section-title p, .booking-page-section .section-title p {
    font-size: 18px;
    line-height: 26px;
  }
   .vehicle-page-section,
   .booking-page-section,
   .blog-page-section,
   .tour-page-section {
	padding: 100px 0 50px;
  }
  .vehicle-content .price {
    font-size: 26px;
  }
  .custom-service-box {
	padding: 20px;
  }
  .vehicle-item {
	padding: 24px 15px 24px 15px;
	gap: 20px;
  }
  .vehicle-image,
  .vehicle-content {
	width: 100%;
  }
  .custom-service-content {
	position: relative;
	z-index: 10;
  }
    .banner-content p {
    font-size: 16px;
    line-height: 25px;
  }
  .banner-content h1, .blog-details-text h1 {
    font-size: 28px;
  }
  .inner-benner-image {
    min-height: 250px;
	border-radius: 30px;
  }
  .service-page-list .service-item .common-btn {
	font-size: 15px;
  }
   .service-page-list .service-item {
    padding: 16px 12px 56px;
  }
  .blog-item {
    padding: 16px 12px 30px;
  }
   .service-page-list .service-item, .blog-item {
    width: 100%;
  }
   .service-page-section .nav-tabs .nav-link {
    font-size: 13px;
    padding: 8px 12px 10px;
  }
  .service-page-section .section-title h3, .booking-page-section h3, .blog-text h3, .about-text h3, .blog-details-conclusion h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .step-item {
	width: 100%;
	border-bottom: 2px solid #D6D2D2;
	padding: 10px 0;
	border-right: none;
  }
    .step-item:last-child {
		border: none;
	}
	 .steps-list {
    padding: 10px 10px;
  }
  .about-page-section {
	padding: 40px 0 50px;
  }
  .blog-details-item {
  width: 100%;
  margin-bottom: 0;
}
.tour-image img {
	border-radius: 24px;
}
 .login-wrap {
    gap: 20px;
  }
  .login-img, .login-form {
	width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    line-height: 24px;
  }
   .service-item ul li, .faq-accordion .accordion-body p {
    font-size: 16px;
    line-height: 22px;
  }
    .cta-img {
    min-height: 240px;
  }
   .tracking-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
    .service-list .col-md-3 {
    flex: 0 0 auto;
    width: 100%;
  }
  .service-list .col-md-3:nth-child(3) {
    margin-bottom: 16px;
  }
  .clients-logo img {
    width: auto;
    height: 38px;
  }
   h2 {
    font-size: 24px;
    line-height: 30px;
  }
    h1,
	.custom-service-content h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .footer-header ul {
	flex-wrap: wrap;
  }
  .footer-logo img {
	height: 50px;
	width: auto;
  }
  .custom-service-content {
	font-size: 20px;
  }
  .vehicle-content h3 {
  margin-bottom: 20px;
}
.vehicle-content .price {
	margin-top: -47px;
}
.vehicle-content h3 {
	max-width: 368px;
}
.custom-service-image,
.custom-service-content {
	width: 100%;
}
.custom-service-box {
	flex-wrap: wrap;
}
.banner-content {
	margin-bottom: 20px;
}
  .banner-content p {
    max-width: 96%;
  }
    .banner-content h1, .blog-details-text h1 {
    font-size: 24px;
	margin-bottom: 10px;
  }
  .service-page-section .nav-tabs {
    gap: 10px;
    justify-content: center;
  }
    .service-item h4 {
    margin-bottom: 10px;
  }
  .service-page-section .section-title {
  margin-bottom: 20px;
}
}
@media only screen and (max-width: 500px) {
	.hero-image img {
		border-radius: 30px;
	}
	.hero-wrap {
    gap: 20px;
  }
   h1,
   .custom-service-content h2 {
    font-size: 26px;
    line-height: 32px;
  }
    .hero-content h1 {
    margin: 0 0 10px;
  }
   p,
     .vehicle-page-section .section-title p, .booking-page-section .section-title p {
    font-size: 16px;
    line-height: 24px;
  }
    .hero-form {
    width: 100%;
  }
   h2 {
    font-size: 22px;
    line-height: 28px;
  }
    .section-title p {
    font-size: 16px;
    line-height: 22px;
  }
   .clients-logo img {
    width: auto;
    height: 28px;
  }
   section, .cta-section, .service-section, .custom-service {
    padding: 30px 0;
  }
   .vehicle-page-section,
   .booking-page-section,
   .blog-page-section,
   .tour-page-section {
	padding: 100px 0 40px;
  }
   .section-title {
    margin-bottom: 30px;
  }
  .choose-us-section .col-md-3 {
    height: 100%;
  }
    .choose-us-icon img {
    height: 113px;
    width: auto;
  }
  .choose-us-section .col-md-3:nth-child(3) {
	margin-bottom: 16px;
  }
    .tracking-content h2 {
    font-size: 26px;
    line-height: 26px;
  }
  .tracking-content h3 {
	margin-bottom: 10px;
  }  
   .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    line-height: 22px;
  }
   .service-item ul li, .faq-accordion .accordion-body p {
    font-size: 14px;
    line-height: 21px;
  }
   .cta-img p {
    margin-bottom: 10px;
  }
   .vehicle-page-section .section-title h1, .booking-page-section .section-title h1, .blog-page-section h1, .tour-page-section h1 {
	font-size: 30px;
    line-height: 30px;
   }
     .service-item ul li, .faq-accordion .accordion-body p, .vehicle-content ul li, .vehicle-content p {
    font-size: 16px;
    line-height: 24px;
  } 
   .vehicle-content .price {
    font-size: 22px;
	margin-top: -53px;
  }
   .banner-content h1, .blog-details-text h1 {
    font-size: 22px;
    line-height: 24px;
  }
   .inner-benner-image {
    min-height: 200px;
  }
   .banner-content p {
    font-size: 14px;
    line-height: 20px;
  }
   .service-page-section .nav-tabs {
    gap: 0;
  } 
    .service-page-section .section-title h3, .booking-page-section h3, .blog-text h3, .about-text h3, .blog-details-conclusion h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .form-row .form-feild {
  width: 100%;
}
 .contact-form, .contact-details {
    padding: 24px 15px;
  }
  .contact-text p, .contact-details p {
    font-size: 12px;
    line-height: 21px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
  }
   .contact-text.address p {
    max-width: 280px;
  }
   .contact-text h4 {
    font-size: 16px;
    line-height: 16px;
  }
  .about-page-section {
	padding: 30px 0;
  }
   .about-text p, .about-text ul li {
    font-size: 14px;
    line-height: 24px;
  }
   .booking-content, .about-wrap {
    gap: 20px;
  }
   .read-more-btn {
    font-size: 16px;
  }
  .blog-date {
	font-size: 14px;
  }
   .blog-content p {
	font-size: 15px;
	line-height: 22px;
   }
    .blog-image .category {
    top: 10px;
    right: 10px;
  }
  .tour-content p i {
  font-size: 14px;
}
.tour-image img {
	border-radius: 16px;
}
 .tour-item {
    gap: 10px;
  }
  .login-img img {
  border-radius: 24px;
}
.login-logo img {
	height: 30px;
}
}
@media only screen and (max-width: 400px) {
  .main-footer .col-lg-4, .main-footer .col-lg-3, .main-footer .col-lg-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .main-footer .col-lg-2 {
	margin-bottom: 0;
  }
  .form-row .form-feild {
  width: 100%;
}

p,
  .vehicle-page-section .section-title p, .booking-page-section .section-title p {
    font-size: 14px;
    line-height: 21px;
  }
   .service-page-section .nav-tabs .nav-link {
    font-size: 12px;
    padding: 8px 10px 10px;
  }
  .hero-form .buttons {
	flex-wrap: wrap;
  }
   .hero-form .btn {
    font-size: 14px;
    width: 100%;
  }
  .contact-text {
	width: calc(80% - 6px);
  }
   .contact-text.address p {
    max-width: 208px;
  }
    .contact-text p, .contact-details p {
    font-size: 12px;
    line-height: 21px;
    word-break: break-all;
  }
  .contact-img im,
  .contact-form, .contact-details, .map {
	border-radius: 24px;	
  }
}