/*
	Theme Name: Tempo Traveller
	Created : 
	Updated : 
	Version: 1.0

*/
/* ========================================================================== */
/* ========================================================================== */
							/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */

/*	
	+ Global
		- Padding/Margin
		
	+ Fonts Settings	
		- Open Sans : font-family: 'Open Sans', sans-serif;
		- Robotslab : font-family: 'Roboto Slab', serif;

	+ Header

	+ Footer
	
	+ Page Banner
	
	+ Section Header
	
	+ Responsive		
		- min-width: 1200
		- min-width: 992
		- min-width: 768
		- max-width: 1200
		- min-width: 992 to max-width: 1199		
		- max-width: 991
		- min-width: 768 to max-width: 991
		- max-width: 767
		- max-width: 639
		- max-width: 479
*/

/* ## Global */

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #000;
}
img {
    max-width: 100%;
	height: auto;
}
a {
    outline: 0 !important;
}

/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding{
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

/* - OW pull-left/pull-right */
.ow-pull-left  {
	float: left;
}
.ow-pull-right  {
	float: right;
}

/* -- Section Padding */
.section-padding {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-10 {
	padding-top: 5px;
	padding-bottom: 5px;
}
.padding-20 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-30 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.padding-40 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-50 {
	padding-top: 25px;
	padding-bottom: 25px;
}
.padding-60 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-70 {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-80 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-90 {
	padding-top: 45px;
	padding-bottom: 45px;
}
.padding-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.main-container {
	width: 1920px;
	max-width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}
/* + Header */
.header-section {
	background-color: #fff;
}
.header-section.navbar-fixed-top {
	border-bottom: 1px solid #ccc;
}
.header-section .container {
	position: relative;
}

/* - Top Header */
.top-header {
	text-align: right;
}
.top-header .top-icons {
	float: right;
}
.top-header .top-icons > a {
	font-size: 11px;
	color: #777777;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	display: inline-block;
	padding: 15px 35px;
	margin-right: 40px;
	text-decoration: none;
	text-align: left;
	border-right: 1px solid #e6e6e6;
}
.top-header .top-icons > a img {
	position: absolute;
	left: 0;
	top: 20px;
}
.top-header .top-icons > a span {
	display: block;
}
.top-header .top-icons > a:last-of-type {
	border-right: none
}
.top-header .top-icons ul {
	padding-left: 0;
	float: right;
	margin-bottom: 0;
}
.top-header .top-icons ul li {
	float: left;
	list-style: none;
	border-left: 1px solid #e6e6e6;
}
.top-header .top-icons ul li:last-of-type {
	border-right: 1px solid #e6e6e6;	
}
.top-header .top-icons ul li a {
	float: left;
	width: 60px;
	text-align: center;
	font-size: 15px;
	color: #777777;
	padding: 20px 0;
}
.top-header .top-icons ul li a:hover {
	color: #d81324;
}

/* - Search */
.search-box {
	background-color: #f7f6f7;
	padding: 15px;
	position: absolute;
	right: 15px;
	top: 100%;
	width: 620px;
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.4s ease-in-out 0s;
	z-index: 101;
}
.search-box.active {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	visibility: visible;
}
.search-box form {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
}
.search-box form input {
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	color: #212121;
	font-size: 16px;
	font-style: italic;
	height: auto;
}
.search-box form input:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	border-color: #fff;
}
.search-box span {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
}
.search-box span i {
	font-size: 15px;
	color: #212121;
	float: right;
	margin: 5px;
}

/* + Footer */
.footer-main {
	background-image: url("images/ftr-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	background-color: #000;
}
.footer-main .logo-block {
	padding: 70px 0;
	text-align: center;
	border-bottom: 1px solid #222222;
	margin-bottom: 40px;
}
.footer-main .widget {
	margin-bottom: 50px;
}
.footer-main .widget-title {
	color: #fff;
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	margin-top: 0;
	line-height: 30px;
	padding-left: 50px;
	padding-bottom: 0;
	border-bottom: none;
}
.footer-main .widget-title::before {
	background-color: #d81324;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);	
	width: 32px;
}
.footer-main .widget_link ul {
	padding-left: 50px;
}
.footer-main .widget_link ul li {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}
.footer-main .widget_link ul li a {
	color: #909090;
	position: relative;
	letter-spacing: 0.56px;
	text-transform: capitalize;
	padding-left: 18px;
	text-decoration: none;
}
.footer-main .widget_link ul li a::before {
	content: "\f101";
	font-family:'FontAwesome';
	position: absolute;
	left: 0;
	top: 0px;
}
.footer-main .widget_link ul li a:hover {
	color: #d81324;
}
.footer-main .copyright {
	border-top: 1px solid #222222;
	padding: 23px 0;
	text-align: center;
	background-color: #000;
	color: #909090;
	margin-top: 25px;
}
.footer-main .copyright p {
	margin-bottom: 0;
	letter-spacing: 0.52px;
	text-transform: uppercase;
	font-size: 13px;
}
/* + Page Banner */

/* + Section Header */
.section-header {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
.section-header h3 {
	background-image: url("images/section-header-sep.png");
	background-repeat: no-repeat;
	background-position: bottom center;
	font-family: 'Roboto Slab', serif;
	font-size: 28px;
	color: #222222;
	letter-spacing: 0.56px;
	padding-bottom: 40px;
	margin-bottom: 35px;
	margin-top: 0;
}
.section-header p {
	color: #777777;
	line-height: 26px;
	letter-spacing: 0.42px;
}
.section-header2 h3 {
	background-image: url("images/section-header-sep2.png");
	color: #fff;
}
.section-header2 p {
	color: #fff;
}

/* - Page Banner */ 
.page-banner {
	background-image: url("images/car/all.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}
.page-banner h3 {
	color: #fff;
	font-size: 50px;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 26px;
	margin-top: 0;
	text-transform: uppercase;
}
.page-banner .breadcrumb {
	background-color: transparent;
	margin-bottom: 0;
	padding: 0;
}
.page-banner .breadcrumb li {
	font-size: 15px;
	color: #d81324;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.6px;
}
.page-banner .breadcrumb li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.breadcrumb > li + li::before {
	content: "\f105";
	font-family: FontAwesome;
	padding: 0 10px;
}

/* Pagination */
.ow-pagination {
	display: inline-block;
	width: 100%;
	background-color: transparent;
	margin: 0;
	text-align: center;
}
.ow-pagination ul {
	margin: 0;
}
.ow-pagination ul li {
	display: inline-block;
	margin: 0 4px;
}
.ow-pagination ul li a {
	border: 1px solid #bbbbbb;
	color: #bbbbbb;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 0;
	padding: 0;
	text-align: center;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.ow-pagination .pagination > li:first-child > a,
.ow-pagination .pagination > li:last-child > a {
	border-radius: 0;
}
.ow-pagination ul li a:hover {
	background-color: #d81324;
	border-color: #d81324;
	color: #fff;
}
	
/* ========================================================================== */
/* ========================================================================== */
							/* [ Responsive ] */
/* ========================================================================== */
/* ========================================================================== */

/* -- min-width: 1200 */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

/* -- min-width: 992 */
@media (min-width: 992px) {
	
}

/* -- min-width: 768 */
@media (min-width: 768px) {
	
}

/* -- max-width: 1200px */
@media (max-width: 1200px) {
	
}

/* -- min-width: 992 to max-width: 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
}

/* -- max-width: 991 */
@media (max-width: 991px) {
	/* - Top Header */
	.top-icons {
		padding-left: 0;
		padding-right: 0;
		border-bottom: 1px solid #e6e6e6;
		margin-bottom: 20px;
	}
	.header-section.navbar-fixed-top .top-icons{
		display: none;
	}
	
	.section-header p {
		padding: 0 13%;
	}
}

/* -- min-width: 768 to max-width: 991 */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	
}

/* -- max-width: 767 */
@media (max-width: 767px) {	
	.section-padding,
	.padding-100 {
		padding-bottom: 35px;
		padding-top: 35px;
	}
	.search-box {
		max-width: 100%;
		left: 15px;
		width: auto;
	}
	.section-header p {
		padding: 0 20px;
	}
	
	/* - Page Banner */
	.page-banner h3 { 
		font-size: 40px;
	}
}

/* --  max-width: 639 */
@media (max-width: 639px) {
	/* - Top Header */
	.top-header .top-icons > a {
		padding: 17px;
		margin-right: 0;
		display: none;
	}
	.top-header  .top-icons > a span,
	.top-header  .top-icons > a b {
		display: none;
	}
	.top-header  .top-icons > a img {
		position: relative;
		top: 0;
	}
}

/* --  max-width: 479 */
@media (max-width: 479px) {
	.top-header .top-icons ul li a {
		width: 53px;
	}
	
	/* + Footer */
	.footer-main .row .col-xs-6 {
		width: 100%;
	}
}
.floating-icons {
	position: fixed;
	right: 20px; /* Adjust the distance from the right edge of the viewport */
	bottom: 50%; /* Position it vertically in the center of the viewport */
	transform: translateY(50%);
	z-index: 1000; /* Ensure it appears above other page content */
  }
  
  .icon {
	display: block;
	width: 40px; /* Adjust the icon size as needed */
	height: 40px;
	margin: 10px 0; /* Adjust the spacing between icons as needed */
	text-align: center;
	line-height: 40px; /* Center the icon vertically */
	border-radius: 50%; /* Make the icons circular */
	background-color: #333; /* Icon background color */
	color: #fff; /* Icon color */
	text-decoration: none;
	font-size: 20px; /* Adjust the icon font size */
	transition: background-color 0.3s;
  }
  
  .icon:hover {
	background-color: #444; /* Change background color on hover */
  }
  
  .instagram::before {
	content: "\f16d"; /* Instagram icon Unicode */
	font-family: "Font Awesome 5 Free";
  }
  
  .facebook::before {
	content: "\f39e"; /* Facebook icon Unicode */
	font-family: "Font Awesome 5 Free";
  }
  
  .whatsapp::before {
	content: "\f232"; /* WhatsApp icon Unicode */
	font-family: "Font Awesome 5 Free";
  }
  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:70px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}.phone-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.phone-icon:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.phone-icon img {
    width: 30px;
    height: 30px;
}
  
/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px){


.vc_col-sm-12 {
    width: 100%;
}
}
@media (min-width: 768px){


.vc_col-sm-12, .vc_col-sm-6 {
    float: left;
}
}
.vc_col-sm-12, .vc_col-sm-6 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.vc_column_container {
    width: 100%;
}
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.wpb_content_element {
    margin-bottom: 35px;
}
.wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
}


.wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
}
.external_links {
    margin: 20px auto;
}
.external_links {
  
    flex-wrap: wrap;
}
.wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
}

.external_links ul {
    min-width: 33%;
    text-align: left;
    margin-bottom: 40px;
}
.wpb_text_column ul {
    padding-left: 10px;
}
.new_uls {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}
ul {
    margin-top: 0;
    margin-bottom: 10px;
}
ul {
    box-sizing: border-box;
}
.wpb_text_column ul li {
    list-style: circle !important;
    margin: 10px auto;
}

.listings li, .wpb_wrapper li {
    padding-left: 0;
}
.listings li, .wpb_wrapper li {
    list-style: none !important;
    background: url(https://beta.urbancruise.in/wp-content/uploads/2022/03/13491_check_confirm_ok_yes_icon.png);
    background-position: left top 10px;
    background-repeat: no-repeat;
    padding-left: 40px;
    background-size: 18px;
    margin-bottom: 10px !important;
}
.new_uls li {
    transform: scale(1);
    animation: 2s ease-in 0;
}
.new_uls li {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-end;
}
.new_uls li {
    flex: 0 1 17%;
    justify-content: center;
    justify-content: space-between;
    align-content: center;
    background: rgba(255,255,255,.4);
    text-align: center;
    padding: 4px;
    border-radius: 8px;
    text-transform: uppercase;
    display: flex;
    box-shadow: 1px 1px 1px 1px #73d700;
}
.wpb_text_column :last-child, .wpb_text_column p:last-child {
    margin-bottom: 0;
}

.external_links ul li a {
    color: #707070 !important;
}


.new_uls li img {
    max-width: 80px;
    display: block;
    margin: auto;
}

.right_menu div {
    display: flex;
    gap: 16px;
}

.right_menu {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.right_menu .social-link.dark {
    position: fixed;
    right: 0px;
    top: 40%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.mobile_show{
    display: none;
}
@media (max-width:640px) {
    .mobile_show{
        display: contents;
    }
}


@media (max-width: 640px){
.right_menu .social-link.dark {
    gap: 0px !important;
}}
@media (max-width: 640px){
.right_menu .social-link.dark {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center !important;
    position: relative !important;
}}
@media (max-width: 640px){
.right_menu .social-link.dark {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center !important;
    position: relative !important;
}}
@media (max-width: 640px){
.right_menu .social-link.dark {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
}}

@media (max-width: 640px){
.right_menu .social-link.dark {
    gap: 15px !important;
    border-left: solid 0px #fff;
}}
@media (max-width: 640px){
html .header.fixed div {
    background: transparent;
    height: auto !important;
}}

@media (max-width: 640px){
.right_menu {
    background: #ffc001;
    flex-direction: row;
    width: 100% !important;
    padding: 10px !important;
}}

@media (max-width: 640px){
.right_menu {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 100000000000000000 !important;
    display: block !important;
}}

.chat-icon {
    /* background-color: #25d366; */
    color: #fff;
   width:100px;
   height: 60px;
    border-radius: 10%;
    align-items: center;
    justify-content: center;
    display: flex;
   cursor: pointer;
    position: fixed;
    right: 0px;
    top: 72%;
    animation: bounce 1.5s infinite;
    z-index: 999;
    flex-wrap: wrap;
flex-direction: column;
}

/* Animation for the chat icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Styles for the chat icon text */
.chat-icon span {
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}
.chat-icon  .icon{
    border-radius: 50%;
    
}
.is-sticky .logo {
width: 220px;
height: 100px;
line-height: 100px;
}
.is-sticky .logo, .is-sticky .logo a, .is-sticky .logo img {
-webkit-transition: none;
transition: none; 
}
.is-sticky .logo {
width: 140px;
height: 50px;
line-height: 50px;
}
.logo {
background: #fff; 
border-bottom-left-radius: 20px; 
border-bottom-right-radius: 20px; 
box-shadow: 1px 1px 10px 1px rgba(0,0,0,.22);
}
.logo {
background-color: #ffc001; 
}
.logo {
width: 220px; 
height: 100px;
line-height: 100px; 
background-color: #ffc001; 
position: absolute; 
z-index: 999; 
top: 0; 

}
.logo img {
width: 220px !important;
padding: 10px;
}

.logo img {
max-width: 100%;
height: auto;
}
.fb{
width: 100%;
}
.faq-container {
		
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
  }
  
  .faq-item {
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .faq-item:last-child {
	border-bottom: none;
  }
  
  .faq-question {
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 3px;
	patting-top: 3px;
  }
  
  .faq-answer {
	font-size: 16px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;

	padding-left: 10px;
	padding-right: 10px;
  }
  
  .faq-answer.active {
	border-bottom: 1px solid #e0e0e0;
  }
  
  .icon-container i {
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
  }
  
  .icon-container i.active {
	transform: rotate(90deg);
  }

  input[type=text], select, textarea {
align-items: center;
padding: 12px; /* Some padding */ 
border: 1px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */

resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
.form{
  padding: 60px;
}
  .inventroy-box {
	  transition: transform 0.3s;
  }

  .inventroy-box:hover {
	  transform: scale(1.1); /* Zoom in the box on hover */
  }

  .inventroy-box img {
	  transition: transform 0.3s;
  }

  .inventroy-box:hover img {
	  transform: scale(1.1); /* Zoom in the image on hover */
  }

  .inventroy-content {
	  transition: transform 0.3s;
  }

  .inventroy-box:hover .inventroy-content {
	  transform: scale(1.1); /* Zoom in the content on hover */
  }
  
						  .row-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
}

.row-list li {
padding: 15px;
border-radius: 10px;
margin: 5px;
font-weight: bold;
text-align: center;
  
transition: transform 0.2s;
}

.row-list li:hover {
transform: scale(1.05);
}
.social-media-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
}

.social-media-list li {
margin: 5px;
}

.social-media-list a {
text-decoration: none;
}

  

.social-media-list img:hover {
transform: scale(1.2); /* Enlarge the image on hover */
}
.container1 {
display: grid;
grid-template-columns: auto 1fr; /* Auto for the image, 1fr for the heading */
align-items: center; /* Vertical alignment */
}

.container img {
max-width: 100%;
height: auto; /* Maintain aspect ratio */
}
.form-container {
  background: #f1f1f1;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 400px;
  text-align: center;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.form form {
  display: flex; /* Display the form elements in one row */
  flex-wrap: nowrap; /* Prevent wrapping to the next line */
  justify-content: space-between; /* Add space between the form elements */
}

.input-container {
  flex-basis: calc(33.33% - 10px); /* Distribute the elements in a row with a small gap */
  text-align: left;
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  flex-basis: calc(33.33% - 10px); /* Make the button take up one-third of the row */
  background-color: #007bff;
  color: #fff;
  padding: 10px 0; /* Adjust the padding for the button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
.hero-taxi{
    position:relative;
    background:#06080f;
    padding:120px 0 80px;
    text-align:center;
    overflow:hidden;
}

/* Background image */
.hero-taxi::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:url('images/road-bg.jpg') center/cover no-repeat;
    opacity:.25;
}

/* top text */
.hero-top{
    color:#ffc400;
    font-size:12px;
    letter-spacing:1px;
    margin-bottom:15px;
}

/* heading */
.hero-taxi h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:40px;
}

/* car image */
.hero-car{
    position:relative;
    z-index:2;
}

.hero-car img{
    width:700px;
    max-width:100%;
}

/* badge */
.hero-badge{
    position:absolute;
    right:15%;
    top:55%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:12px;
    backdrop-filter:blur(10px);
}

.hero-badge h3{
    color:#ffc400;
    font-size:32px;
    margin:0;
}

.hero-badge span{
    color:#fff;
    font-size:12px;
}

/* call button */
.hero-call{
    display:inline-block;
    margin-top:20px;
    background:#ffc400;
    color:#000;
    padding:12px 28px;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

.hero-call::after{
    content:"";
    position:absolute;
    right:-12px;
    top:0;
    width:12px;
    height:100%;
    background:#ffc400;
    transform:skewX(-20deg);
}

/* mobile responsive */
@media(max-width:991px){

.hero-taxi h1{
    font-size:32px;
}

.hero-car img{
    width:420px;
}

.hero-badge{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    margin:20px auto;
    display:inline-block;
}

}

@media(max-width:600px){

.hero-taxi{
    padding:80px 0 60px;
}

.hero-taxi h1{
    font-size:24px;
}

.hero-car img{
    width:300px;
}

}

.taxi-marquee{
    position:relative;
    padding:100px 0;
    overflow:hidden;
}

/* common */
.marquee{
    position:absolute;
    width:120%;
	
    left:-10%;
    transform:rotate(-6deg);
    overflow:hidden;
}

.marquee-content{
    display:inline-block;
    white-space:nowrap;
    animation:scroll 20s linear infinite;
    font-weight:600;
    letter-spacing:1px;
    padding:12px 0;
}

/* black strip */
.marquee-black{
    top:40px;
    background:#000;
    color:#fff;
    z-index:1;
}

/* yellow strip */
.marquee-yellow{
    top:80px;
    background:#ffc400;
    color:#000;
    transform:rotate(6deg);
    z-index:2;
}

.marquee-yellow .marquee-content{
    animation-direction:reverse;
}

/* animation */
@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* mobile responsive */
@media(max-width:768px){

.marquee{
    transform:rotate(-4deg);
}

.marquee-yellow{
    transform:rotate(4deg);
}

.marquee-content{
    font-size:12px;
}

}

.rts-tours{
	padding:60px 0;
	background:#f7f7f7;
	}
	
	.rts-header{
	text-align:center;
	margin-bottom:40px;
	}
	
	.rts-header span{
	color:#777;
	font-size:14px;
	}
	
	.rts-header h2{
	font-size:28px;
	font-weight:700;
	}
	
	.rts-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:25px;
	}
	
	.rts-card{
	background:#fff;
	box-shadow:0 5px 15px rgba(0,0,0,0.08);
	}
	
	.rts-card img{
	width:100%;
	height:200px;
	object-fit:cover;
	}
	
	.rts-content{
	padding:15px;
	}
	
	.rts-tag{
	color:#0d6efd;
	font-size:12px;
	}
	
	.rts-content h3{
	font-size:18px;
	margin:5px 0;
	}
	
	.rts-from{
	font-size:12px;
	color:#666;
	}
	
	.rts-rating{
	margin:10px 0;
	color:#f5a623;
	}
	
	.rts-btn{
	background:#ffc400;
	color:#000;
	padding:6px 14px;
	text-decoration:none;
	display:inline-block;
	font-size:13px;
	}
	
	/* Tablet */
	@media(max-width:992px){
	.rts-grid{
	grid-template-columns:repeat(2,1fr);
	}
	}
	
	/* Mobile */
	@media(max-width:600px){
	.rts-grid{
	grid-template-columns:1fr;
	}
	}




	.rts-route-section{
		padding:60px 0;
		background:#f7f7f7;
		}
		
		.rts-title{
		text-align:center;
		margin-bottom:30px;
		}
		
		.rts-route-grid{
		display:grid;
		grid-template-columns:repeat(4,1fr);
		gap:20px;
		}
		
		.rts-route-card{
		display:flex;
		align-items:center;
		background:#fff;
		padding:10px;
		border-radius:8px;
		box-shadow:0 3px 10px rgba(0,0,0,0.08);
		}
		
		.rts-route-card img{
		width:70px;
		height:70px;
		object-fit:cover;
		margin-right:10px;
		border-radius:6px;
		}
		
		.rts-route-card h4{
		font-size:14px;
		margin:0;
		}
		
		.rts-route-card span{
		display:block;
		color:#ffc400;
		font-weight:600;
		font-size:13px;
		margin:3px 0;
		}
		
		.rts-route-card a{
		background:#ffc400;
		color:#000;
		padding:4px 10px;
		font-size:12px;
		text-decoration:none;
		border-radius:4px;
		}
		
		/* responsive */
		@media(max-width:992px){
		.rts-route-grid{
		grid-template-columns:repeat(2,1fr);
		}
		}
		
		@media(max-width:600px){
		.rts-route-grid{
		grid-template-columns:1fr;
		}
		}


		.car-packages{
			padding:60px 0;
			background:#f5f5f5;
			font-family:Arial;
			}
			
			.heading{
			margin-bottom:30px;
			}
			
			.car-grid{
			display:grid;
			grid-template-columns:repeat(3,1fr);
			gap:25px;
			}
			
			.car-card{
			background:#000;
			color:#fff;
			padding:25px;
			text-align:center;
			position:relative;
			}
			
			.car-card.yellow{
			background:#ffd400;
			color:#000;
			}
			
			.car-card img{
			width:100%;
			max-width:180px;
			margin:15px auto;
			display:block;
			}
			
			.car-card ul{
			list-style:none;
			padding:0;
			text-align:left;
			margin:15px 0;
			}
			
			.car-card ul li{
			padding:6px 0;
			border-bottom:1px dashed rgba(255,255,255,.3);
			}
			
			.car-card.yellow ul li{
			border-color:#000;
			}
			
			.car-card button{
			background:#ffd400;
			border:none;
			padding:10px 20px;
			font-weight:bold;
			cursor:pointer;
			}
			
			.car-card.yellow button{
			background:#000;
			color:#fff;
			}
			
			/* Tablet */
			@media(max-width:992px){
			.car-grid{
			grid-template-columns:repeat(2,1fr);
			}
			}
			
			/* Mobile */
			@media(max-width:576px){
			.car-grid{
			grid-template-columns:1fr;
			}
			}



			
			