@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
textarea,
input {
	padding: 0;
	margin: 0;
	line-height: 1.3;
	font-weight: 400;
	color: #000000;
	font-family: "Inter", sans-serif;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 400;
}

p {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

a {
	display: inline-block;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.container {
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}

/*-_-_Header_CSS_Start_-_-*/
header#header {
	position: sticky;
	top: 0;
	padding: 0;
	background: #ffffff;
	border: 0;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.5);
	width: 100%;
}

.home-page header#header {
	position: fixed;
	box-shadow: unset;
	background: transparent;
}

header#header.darkHeader,
.home-page header#header.darkHeader {
	background: #ffffff;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.5);
	position: sticky;
}

#header .navbar {
	padding: 33.5px 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	float: unset;
}

#header .navbar .logo {
	max-width: 231px;
	width: 100%;
	margin-right: 15px;
}

#header .navbar .logo img {
	width: 100%;
	max-height: 67px;
	max-width: unset;
	height: auto;
	padding: 0 !important;
}

#header .toggle-navbar {
	display: none;
	border: 0;
	background: transparent;
	cursor: pointer;
}

#header .navbar-collapse {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
}

.navbar-collapse .navbar-nav {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-right: 48px;
}

.navbar-collapse .navbar-nav>li {
	margin-right: 22px;
	position: relative;
}

.navbar-collapse .navbar-nav>li:last-child {
	margin-right: 0;
}

.navbar-collapse .navbar-nav>li>a.nav-link {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	font-weight: 700;
	color: #006994;
	font-family: "Montserrat Alternates", sans-serif;
	padding: 18px 0;
	display: inline-block;
	margin: 0;
}

.navbar-collapse .navbar-nav>li>a.nav-link i {
	font-size: 16px;
}

.home-page header .navbar-collapse .navbar-nav>li>a.nav-link {
	color: #ffffff;
}

.home-page header.darkHeader .navbar-collapse .navbar-nav>li>a.nav-link {
	color: #006994;
}

.navbar-collapse .navbar-nav>li .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	padding: 10px;
	min-width: 260px;
	border-radius: 8px;
	display: block;
	border: 0;
}

.navbar-collapse .navbar-nav>li .dropdown-menu li a {
	font-size: 20px;
	line-height: 1.5;
	color: #37454D;
	font-weight: 400;
	padding: 5px 10px;
	font-family: "Karla", sans-serif;
}

.navbar-collapse .navbar-nav>li .dropdown-menu li a:hover {
	color: #FA8128;
}

.navbar-collapse .navbar-right {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.navbar-collapse .navbar-right>li {
	margin-right: 20px;
	position: relative;
}

.navbar-collapse .navbar-right>li:first-child {
	margin-right: 48px;
}

.navbar-collapse .navbar-right>li:last-child {
	margin-right: 0;
}

.navbar-collapse .navbar-right>li>a.login-modal-link,
.navbar-right .currency-dropdown .show-currency {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #006994;
	padding: 18px 0 !important;
	display: inline-block;
	font-weight: 700;
	font-family: "Montserrat Alternates", sans-serif;
	margin: 0;
	border: 0;
}

.navbar-collapse .navbar-right>li .dropdown-toggle {
	padding: 0;
}

.navbar-collapse .navbar-right .dropdown .bi-person.userIcn {
	margin: 0;
	margin-right: 5px;
}

.navbar-right .currency-dropdown .show-currency {
	color: #FA8128;
}

.navbar-right .currency-dropdown .show-currency i {
	font-size: 16px;
}

.home-page header .navbar-collapse .navbar-right>li>a.login-modal-link {
	color: #ffffff;
}

.home-page header.darkHeader .navbar-collapse .navbar-right>li>a.login-modal-link {
	color: #006994;
}

.navbar-right .currency-dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	padding: 10px 0;
	min-width: 200px;
	border-radius: 8px;
	border: 0;
	display: none;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar-right .currency-dropdown:hover>ul {
	opacity: 1;
	visibility: visible;
}

.navbar-right .currency-dropdown .dropdown-menu li {
	min-width: unset;
}

.navbar-right .currency-dropdown .dropdown-menu li a {
	font-size: 16px;
	line-height: 1.25;
	padding: 4px 20px;
	font-weight: 600;
	color: #006994;
	font-family: "Montserrat Alternates", sans-serif;
}

.navbar-collapse .navbar-right>li .sign-out,
.navbar-collapse .navbar-right>li .sign-up-modal-link {
	font-size: 20px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-family: "Karla", sans-serif;
	padding: 18px 44.5px;
	background: #FA8128;
	display: inline-block;
	border-radius: 5.2px;
	text-align: center;
}

/*-_-_Header_CSS_End_-_-*/

/*-_-_Banner_CSS_Start_-_-*/
.banner {
	padding: 303px 0 212px;
}

.banner .banner-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.banner-row .banner-content-col {
	width: calc(100% - 522px);
	max-width: 850px;
	padding-top: 90px;
}

.banner .banner-content-col h1 {
	color: #ffffff;
	margin-bottom: 20.5px;
}

.banner-content-col p {
	font-size: 25.5px;
	line-height: 1.5;
	color: #ffffff;
}

.banner-row .banner-form-col {
	width: 522px;
}

.banner .trip-form {
	border: 1px solid #FA8128;
	background: rgba(255, 255, 255, 0.2);
	padding: 33.5px 30px;
	border-radius: 20px;
	backdrop-filter: blur(15px);
}

.trip-form h3 {
	font-size: 32px;
	line-height: 1.25;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 32px;
}

.trip-form .form-group {
	margin-bottom: 32px;
}

.trip-form .input-wrap {
	position: relative;
	border-radius: 10px;
}

.trip-form input {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	height: 53px;
	width: 100%;
	padding: 0 20px;
	border: 1px solid #FA8128 !important;
	font-family: "Montserrat Alternates", sans-serif;
	background: #ffffff !important;
	border-radius: 10px;
	color: #37454D;
	box-shadow: unset !important;
}

.trip-form input::placeholder {
	color: #37454D;
}

.trip-form .travL {
	position: relative;
}

.trip-form .travL .txtL {
	font-size: 20px;
	line-height: 51px;
	letter-spacing: 0.5px;
	height: 53px;
	width: 100%;
	padding: 0 20px;
	border: 1px solid #FA8128;
	font-family: "Montserrat Alternates", sans-serif;
	background: #ffffff;
	border-radius: 10px;
	color: #37454D;
	box-shadow: unset !important;
	cursor: pointer;
}

.trip-form .travL .txtL span {
	font-family: "Montserrat Alternates", sans-serif;
}

.trip-form .travL .txtL::after {
	display: none;
}

.trip-form .travlNo {
	width: 100%;
	margin: 0;
	max-width: 100%;
	text-align: left;
	border-radius: 10px;
	display: none;
	box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 50%);
	position: absolute;
	background: #ffffff;
	padding: 10px 12px;
	justify-content: space-between;
	align-items: center;
}

.trip-form .travlNo.show {
	display: flex;
}

.trip-form .travlNoInner {
	display: flex;
	align-items: center;
}

.trip-form span.tb {
	color: #000000;
	text-align: left;
	display: inline-block;
	width: auto;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	padding-right: 15px;
}

.trip-form span.bt {
	border: 1px solid #000;
	height: auto;
	display: inline-flex;
	align-items: center;
	color: #000;
	font-size: 20px;
	line-height: 1;
	margin-top: 0;
	text-align: center;
}

.trip-form .value-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0px;
	width: 38px;
	height: 38px;
	border-radius: 0;
	font-size: 18px;
}

.trip-form input#number {
	text-align: center;
	border: 0 !important;
	border-radius: 0;
	width: 38px;
	height: 38px;
	padding: 0;
	text-align: center;
	outline: unset !important;
	font-size: 18px;
}

.trip-form a.addPass {
	display: block;
	margin: 0px 0px 0px;
	padding: 10px 18px;
	background: #d08239;
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	border-radius: 6px;
	height: auto;
}

.trip-form .next-trip-btn {
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0.5px;
	color: #ffffff;
	background: #FA8128;
	border-radius: 10px;
	padding: 22.5px 20px;
	border: 0;
	width: 100%;
}

.ui-datepicker,
.ui-datepicker * {
	box-sizing: border-box;
}

#ui-datepicker-div.ui-datepicker {
	width: auto;
	margin: 0;
}

.ui-datepicker .ui-datepicker-header {
	border: 0;
	background: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ui-datepicker-header.ui-helper-clearfix:before,
.ui-datepicker-header.ui-helper-clearfix:after {
	display: none;
}

.ui-datepicker-header a.ui-corner-all {
	width: 22px;
	height: 22px;
	margin: 0;
	position: static;
}

.ui-datepicker-header .ui-datepicker-prev {
	order: 1;
	background-size: 15px !important;
	background-position: center !important;
}

.ui-datepicker-header .ui-datepicker-title {
	order: 2;
	font-size: 16px;
	line-height: 22px;
	color: #212529;
	font-weight: 700;
	margin: 0;
	padding: 5px 0;
}

.ui-datepicker-header .ui-datepicker-next {
	order: 3;
	background-size: 15px !important;
	background-position: center !important;
}

.ui-datepicker table.ui-datepicker-calendar {
	font-size: 16px;
	line-height: 22px;
	margin: 0;
}

table.ui-datepicker-calendar thead th {
	font-size: 16px;
	line-height: 22px;
	padding: 0;
	color: #212529;
	font-weight: 700;
	min-width: 40px;
}

table.ui-datepicker-calendar thead th span {
	display: inline-block;
}

table.ui-datepicker-calendar tbody td a {
	font-size: 16px;
	line-height: 22px;
	border-radius: 4px;
	color: #212529;
	padding: 1px 0 0;
	min-width: 40px;
}

table.ui-datepicker-calendar tbody td a.ui-state-default {
	border: 0;
	background: transparent;
}


table.ui-datepicker-calendar tbody td.ui-datepicker-today a {
	color: #212529;
}

table.ui-datepicker-calendar tbody td a.ui-state-active {
	background: #FA8128;
	color: white;
}

table.ui-datepicker-calendar tbody td.ui-datepicker-unselectable.ui-state-disabled span {
	border: 0;
	background: transparent;
	color: #999;
	cursor: not-allowed;
	text-decoration: line-through;
	padding: 0;
}

/*-_-_Banner_CSS_End_-_-*/

/*-_-_Content_CSS_Start_-_-*/
.content h1,
.banner h1 {
	font-size: 56px;
	line-height: 1.25;
	color: #051721;
	font-weight: 700;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	margin: 0;
}

.content h2 {
	font-size: 48px;
	line-height: 1.25;
	color: #051721;
	font-weight: 700;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	margin: 0;
}

.content h3 {
	font-size: 32px;
	line-height: 1.25;
	color: #051721;
	font-weight: 700;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	margin: 0;
}

.content h4 {
	font-size: 24px;
	line-height: 1.25;
	color: #051721;
	letter-spacing: 0.5px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Montserrat Alternates", sans-serif;
	margin: 0;
}

.why-use-wrap {
	padding: 130px 0 65px;
}

.why-use-wrap .why-use-content {
	text-align: center;
}

.why-use-content>h2 {
	margin: 0 0 18px;
}

.why-use-content>p {
	font-size: 20px;
	line-height: 1.5;
	color: #37454D;
	letter-spacing: 0.5px;
	max-width: 788px;
	margin: 0 auto 48px;
}

.why-use-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	margin: 0 -12px;
	row-gap: 105px;
}

.why-use-row .why-use-col {
	width: 33.33%;
	padding: 0 12px;
}

.why-use-inner {
	padding: 20px 0;
}

.why-use-inner .why-use-icon {
	width: 105px;
	height: 105px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(254, 148, 10, 0.15);
	margin: 0 auto 49px;
}

.why-use-inner .why-use-icon img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

.why-use-inner h4 {
	margin-bottom: 17px;
}

.why-use-inner p {
	font-size: 24px;
	line-height: 1.75;
	color: #0C111F;
}

.how-works-wrap {
	padding: 65px 0 130px;
}

.how-works-wrap .how-works-content {
	text-align: center;
}

.how-works-content h2 {
	margin: 0 0 16px;
}

.how-works-content p {
	font-size: 20px;
	line-height: 1.5;
	color: #37454D;
	letter-spacing: 0.5px;
	margin-bottom: 48px;
}

.how-works-content iframe {
	width: 100%;
	height: auto;
	border-radius: 30px;
	aspect-ratio: 1600 / 728;
	box-shadow: 0 24px 40px 0 rgba(0, 0, 0, 0.1);
}


.testimonials-wrap {
	background: url(../images/testimonial-bg.png) center center no-repeat;
	background-size: cover;
}

.testimonials-content {
	padding: 137.5px 0 136.5px;
	margin: 0 auto;
	max-width: 1299px;
	text-align: center;
}

.testimonials-content h6 {
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	font-family: "Karla", sans-serif;
	margin-bottom: 3px;
}

.testimonials-content h3 {
	color: #ffffff;
	margin-bottom: 64px;
}

.testimonial-slider {
	margin: 0 auto;
	max-width: 873px;
	padding-bottom: 78px;
}

.testimonial-slider .testimonial-content {
	text-align: center;
}

.testimonial-content .rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 38px;
}

.testimonial-content .rating ion-icon {
	color: #FA8128;
	font-size: 24px;
	line-height: 1;
}

.testimonial-content p {
	font-size: 24px;
	line-height: 43px;
	color: #ffffff;
}

.testimonial-content span {
	font-size: 20px;
	line-height: 1.5;
	color: #ffffff;
	margin-top: 10px;
	display: inline-block;
}

.testimonial-slider .slick-arrow {
	width: 44px;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}

.testimonial-slider .slick-arrow path {
	transition: 0.4s all ease;
}

.testimonial-slider .slick-arrow:hover path {
	stroke: #FE940A;
}

.testimonial-slider .slick-arrow::before {
	display: none;
}

.testimonial-slider .slick-arrow.slick-prev {
	left: -210px;
}

.testimonial-slider .slick-arrow.slick-next {
	right: -210px;
}

.testimonial-slider .slick-dots {
	bottom: 0;
	width: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14px;
}

.testimonial-slider .slick-dots li {
	width: auto;
	height: auto;
	margin: 0 5px;
}

.testimonial-slider .slick-dots li button {
	width: 10px;
	height: 10px;
	background: #ffffff;
	padding: 0;
	border-radius: 50%;
	transition: 0.4s all ease;
}

.testimonial-slider .slick-dots li button::before {
	display: none;
}

.testimonial-slider .slick-dots li.slick-active button {
	width: 14px;
	height: 14px;
	background: #FA8128;
}

.popular-wrap {
	padding: 130px 0 65px;
}

.popular-wrap .popular-content {
	text-align: center;
}

.popular-wrap .popular-content>h2 {
	max-width: 788px;
	margin: 0 auto 16px;
}

.popular-wrap .popular-content>p {
	font-size: 20px;
	line-height: 1.5;
	color: #37454D;
	letter-spacing: 0.5px;
	max-width: 788px;
	margin: 0 auto 48px;
}

.popular-slider {
	margin: 0 -12px;
}

.popular-slider .slick-arrow {
	width: 28px;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}

.popular-slider .slick-arrow path {
	transition: 0.4s all ease;
	stroke: #006994;
}

.popular-slider .slick-arrow:hover path {
	stroke: #FE940A;
}

.popular-slider .slick-arrow::before {
	display: none;
}

.popular-slider .slick-arrow.slick-prev {
	left: -70px;
}

.popular-slider .slick-arrow.slick-next {
	right: -70px;
}

.popular-slide {
	position: relative;
	margin: 0 12px;
	border-radius: 26px;
	overflow: hidden;
}

.popular-slide>img {
	width: 100%;
	aspect-ratio: 788 / 739;
}

.popular-slide .popular-inner {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 40px;
	min-height: 370px;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .75), rgba(0, 0, 0, .75));
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	align-items: center;
}

.popular-slide .popular-inner h2 {
	color: #ffffff;
	max-width: 510px;
	margin: 0 auto 10.5px;
}

.popular-slide .popular-inner p {
	font-size: 21px;
	max-width: 510px;
	line-height: 25px;
	color: #ffffff;
	letter-spacing: 0.5px;
	margin: 0 auto 21px;
	font-family: "Montserrat", sans-serif;
}

.popular-wrap .popular-content a {
	border-radius: 5px;
	font-size: 18.5px;
	line-height: 22px;
	font-weight: 500;
	color: #FA8128;
	background: #ffffff;
	display: inline-flex;
	font-family: "Montserrat", sans-serif;
	align-items: center;
	padding: 20px 22px;
}

.popular-wrap .popular-content a i {
	font-size: 22px;
	line-height: 1;
	color: #FA8128;
	margin-right: 8px;
}

.newsletter-wrap {
	padding: 65px 0 130px;
}

.newsletter-wrap .newsletter-row {
	display: flex;
	flex-wrap: wrap;
	border-radius: 42px;
	overflow: hidden;
}

.newsletter-row .newsletter-img {
	width: 42.32%;
	font-size: 0;
}

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

.newsletter-row .newsletter-content {
	background: #F3F3F3;
	width: 57.68%;
	padding: 37px 45px;
}

.newsletter-content .newsletter-inner {
	max-width: 725px;
}

.newsletter-content .newsletter-inner h3 {
	text-align: center;
	margin-bottom: 53px;
}

.newsletter-content .newsletter-inner p {
	text-align: center;
	font-size: 20px;
	line-height: 1.5;
	color: #37454D;
	letter-spacing: 0.5px;
	max-width: 670px;
	margin: 0 auto 53px;
}

.newsletter-content .newsletter-inner form {
	position: relative;
}

.newsletter-content .newsletter-inner input {
	height: 85px;
	width: 100%;
	border-radius: 50px;
	border: 0;
	background: #ffffff;
	padding: 0 240px 0 32px;
	color: #37454D;
	font-size: 20px;
	line-height: 1.5;
	box-shadow: 0 11px 21px 0 rgba(0, 0, 0, 0.08);
}

.newsletter-content .newsletter-inner input::placeholder {
	color: #808080;
}

.newsletter-content .newsletter-inner button {
	color: #F6F6F6;
	font-size: 24px;
	line-height: 64px;
	font-weight: 600;
	background: #FA8128;
	border-radius: 35px;
	padding: 0 42.67px;
	outline: unset !important;
	border: 0;
	position: absolute;
	letter-spacing: 0.5px;
	top: 50%;
	right: 12px;
	z-index: 1;
	transform: translateY(-50%);
}

.newsletter-content .newsletter-inner .alert {
	margin: 20px 0 0;
}

/*-_-_Content_CSS_End_-_-*/

/*-_-_Footer_CSS_Start_-_-*/
.footer {
	background: #FA8128;
	padding: 225px 0 0;
	position: relative;
	overflow: hidden;
}

.footer .footer-top {
	padding-bottom: 24px;
}

.footer-top .footer-logo {
	display: block;
	max-width: 232px;
	margin: 0 auto 32px;
}

.footer-top .footer-logo img {
	width: 100%;
}

.footer-top .social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.footer-top .social-links li {
	margin-right: 24px;
}

.footer-top .social-links li:last-child {
	margin-right: 0;
}

.footer-top .social-links li a {
	width: 44px;
	height: 44px;
	border-radius: 25px;
	border: 2.4px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-top .social-links li a i {
	font-size: 20px;
	line-height: 1;
	color: #ffffff;
}

.footer-top .footer-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.footer-top .footer-links li {
	margin-right: 24px;
}

.footer-top .footer-links li:last-child {
	margin-right: 0;
}

.footer-top .footer-links li a {
	font-size: 20px;
	line-height: 1.25;
	color: #FCFCFC;
	font-weight: 700;
	letter-spacing: 0.5px;
	font-family: "Montserrat Alternates", sans-serif;
}

.footer::before {
	content: "";
	background: url('../images/footer-bg.png') center top no-repeat;
	background-size: cover;
	left: 50%;
	transform: translateX(-50%);
	top: -2px;
	width: 1920px;
	height: 202px;
	position: absolute;
}

.footer .copyright {
	border-top: 1px solid #ffffff;
}

.footer .copyright p {
	padding: 16px 0 24px;
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	font-family: "Roboto", sans-serif;
}

/*-_-_Footer_CSS_End_-_-*/


/*-_-_Pick-City_CSS_Start_-_-*/
#main.content {
	padding: 0;
}

.form-sec-wrap {
	padding: 60px 0 110px;
}

.form-sec-wrap h1 {
	font-size: 48px;
	text-align: center;
	margin-bottom: 48px;
}

.form-top-bar {
	display: flex;
	align-items: flex-start;
	margin-bottom: 88px;
	overflow-x: auto;
}

.form-top-bar li {
	flex: 1;
	text-align: center;
	position: relative;
	min-width: 250px;
}

.form-top-bar li::before {
	content: "";
	width: 100%;
	height: 2px;
	left: 50%;
	top: 31.2px;
	position: absolute;
	background: #EBEBEB;
}

.form-top-bar li:last-child::before {
	display: none;
}

.form-top-bar li .form-count {
	font-size: 26px;
	line-height: 1;
	color: #404145;
	letter-spacing: 0.5px;
	width: 64.8px;
	height: 64.8px;
	border-radius: 50px;
	background: #ffffff;
	border: 1px solid #FA8128;
	margin: 0 auto 31.4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-family: "Montserrat Alternates", sans-serif;
	position: relative;
}

.form-top-bar li.active .form-count {
	border: 0;
	background: linear-gradient(#FA8128, #D25900);
}

.form-top-bar li .form-count i {
	font-size: 32px;
	line-height: 1;
	color: #ffffff;
}

.form-top-bar li p {
	font-size: 20px;
	line-height: 1.5;
	color: #051721;
	letter-spacing: 0.5px;
}

.sticy_pos {
	position: sticky;
	z-index: 99;
	bottom: 0;
	width: 100%;
	background: #ffffff;
	padding: 20px 0;
	gap: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.sticy_pos .btn-prev,
.sticy_pos .btn-next,
.my-trip-plan-btn .btn-prev,
.my-trip-plan-btn .btn-next {
	font-size: 20px;
	line-height: 50px;
	color: #ffffff;
	font-weight: 400;
	min-width: 247px;
	border-radius: 5.2px;
	text-align: center;
	padding: 0 15px;
	border: 0;
	outline: unset !important;
}

.my-trip-plan-btn .btn-prev,
.my-trip-plan-btn .btn-next {
	font-weight: 600 !important;
	font-family: "Montserrat Alternates", sans-serif;
}

.sticy_pos .btn-prev,
.my-trip-plan-btn .btn-prev {
	background: #FA8128;
}

.sticy_pos .btn-next,
.my-trip-plan-btn .btn-next  {
	background: #006994;
}

.destination-wrap {
	text-align: center;
	margin-bottom: 58px;
}

.destination-wrap span {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #37454D;
	margin-bottom: 4px;
	display: block;
}

.destination-wrap h3 {
	font-size: 38px;
	line-height: 1.25;
	letter-spacing: 0.5px;
	color: #051721;
	margin-bottom: 4px;
}

.destination-wrap p {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #37454D;
}

#pick-up-city-form .row {
	row-gap: 44px;
	margin-bottom: 28px;
}

.select-city .pick-city-box {
	position: relative;
	border: 0 !important;
	border-radius: 18px !important;
	display: block;
	height: auto !important;
	overflow: hidden;
	box-shadow: unset !important;
}

.select-city .pick-city-box img {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	aspect-ratio: 518 / 497;
	border-radius: 0;
}

.select-city .pick-city-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
	z-index: 1;
}

.select-city .pick-city-box .select-city-content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px;
	width: 100%;
	z-index: 1;
	text-align: center;
}

.select-city .pick-city-box h4 {
	font-size: 28px;
	line-height: 1.25;
	padding: 0;
	color: #ffffff;
	position: static;
	text-align: left;
	background: transparent;
	text-transform: capitalize;
}

.select-city .pick-city-box p {
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	text-align: left;
	margin-bottom: 19px;
}

.select-city .pick-city-box .select-city-btn {
	position: static;
	background: #ffffff;
	font-size: 19px;
	line-height: 22px;
	color: #FA8128;
	padding: 14px 20px;
	width: 100%;
	border: 0;
	border-radius: 5px;
}

.select-city .pick-city-box .info-cities {
	position: static;
	font-size: 18px;
	line-height: 22px;
	color: #ffffff;
	height: 0;
	overflow: hidden;
	transition: 0.4s all ease;
	padding: 0;
	box-shadow: unset;
	background: transparent;
	width: auto;
	display: inline-block;
}

.select-city .pick-city-box:hover .info-cities {
	height: auto;
	overflow: unset;
	margin-top: 18px;
}

.select-city .number {
	background: #FA8128;
	padding: 15px;
	border-radius: 0px 0px 18px 18px;
	display: none;
	position: relative;
	z-index: 2 !important;
}

/* .select-city .citiesS.showCount .pick-city-box { */
.select-city .pick-city-box.selected-label {
	border-radius: 18px 18px 0px 0px !important;
}

.select-city .pick-city-box.selected-label + .number {
/* .select-city .citiesS.showCount .number { */
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}

.number .minus-day,
.number .add-day {
	font-size: 30px;
	line-height: 1.3;
	width: 44px;
	height: 44px;
	background: #ffffff;
	color: #000;
	border-radius: 4px;
	padding: 0px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	text-align: center;
}

.number .pm {
	height: 44px;
	width: calc(100% - 100px);
	text-align: center;
	font-size: 20px;
	border: 0;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 1.5px;
}

.number span.oneN,
.number span.twoN {
	position: absolute;
	right: 109px;
	top: 50%;
	cursor: pointer;
	color: #999797;
	transform: translateY(-50%);
	font-size: 19px;
	line-height: 1.2;
}

.number span {
	cursor: pointer;
}

#sss {
	display: block;
	text-align: center;
}

#sss .modal-title {
	color: #416AA8;
	font-size: 25px;
}

.f12 {
	font-size: 12px !important;
}

.badal {
	background-image: url('front-assets/assets/img/badal.png');
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	margin-right: 130px;
	height: 110px;
}

.morecontent span {
	display: none;
}

.morelink {
	display: block;
	float: right;
	text-decoration: underline !important;
}

.more {
	display: block;
	display: -webkit-box;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	-webkit-line-clamp: inherit;
	-webkit-box-orient: vertical;
	overflow: initial;
	text-overflow: initial;
}

/*-_-_Pick-City_CSS_End_-_-*/

/*-_-_Card_CSS_Start_-_-*/
.form-wrap .row {
	row-gap: 44px;
	margin-bottom: 28px;
}

.select-card .select-card-box {
	position: relative;
	border-radius: 18px;
	display: block;
	overflow: hidden;
	transition: 0.4s all ease;
	border: 5px solid transparent;
	box-shadow: unset;
}

.select-card .select-card-box.active {
	border-color: #FA8128;
}

.select-card .cardImg {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	aspect-ratio: 788 / 497;
}

.select-card .select-card-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
	z-index: 1;
}

.select-card .select-card-content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px;
	width: 100%;
	z-index: 1;
}

.select-card .select-card-content h4 {
	font-size: 28px;
	line-height: 1.25;
	padding: 0;
	color: #ffffff;
	background: transparent;
	text-transform: capitalize;
}

.select-card .select-card-content p {
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	margin-bottom: 19px;
}

.select-card .select-card-content .select-btn {
	display: block;
	background: #ffffff;
	font-size: 19px;
	line-height: 22px;
	color: #FA8128;
	padding: 14px 20px;
	width: 100%;
	border: 0;
	border-radius: 5px;
	text-align: center;
}

.select-card .select-card-box.active .select-card-content .select-btn {
	background: #FA8128;
	color: #ffffff;
}
/*-_-_Card_CSS_End_-_-*/

/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
.trip-summary-form .cards-wrapper {
	margin-bottom: 32px;
}

.total-day-slider.swiper-container {
	border: 0;
	box-shadow: unset;
	margin-bottom: 40px;
}

.total-day-slider.swiper-container h1 {
	margin-bottom: 0;
}

.total-day-slider.swiper-container h1 span {
	color: #051721;
}

.place-detail-wrap {
	padding: 32px 40px;
	margin-bottom: 48px;
	box-shadow: 0 4px 16px 0 rgba(17, 34, 17, 0.05);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 16px;
}

.city-data-wrap {
	border-radius: 0;
	box-shadow: unset;
	pointer-events: none;
}

.city-data-wrap .carousel-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.city-data-wrap .city-img {
	width: 104px;
	height: auto !important;
	display: none;
	order: 1;
}

.city-data-wrap .city-img img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 10px;
	object-fit: cover;
}

.city-data-wrap .city-data.carousel-item {
	display: none;
	padding-left: 20px;
	float: unset;
	width: auto;
	margin: 0;
	order: 2;
}

.city-data-wrap .city-data .destination {
	font-size: 16px;
	line-height: 19px;
	color: #37454D;
	margin-bottom: 8px;
	display: block;
}

.city-data-wrap .city-data .city-name {
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 0.5px;
	color: #006994;
	font-weight: 600;
    font-family: "Montserrat Alternates", sans-serif;
	text-transform: capitalize;
}

.city-data-wrap .date-wrap {
	display: none;
	padding-left: 33px;
	margin-left: 33px;
	border-left: 1px solid #A9C3C3;
	order: 3;
}

.city-data-wrap .date-wrap .day-no {
	font-size: 12px;
	line-height: 1.25;
	color: #37454D;
	margin-bottom: 12px;
	display: block;
	text-transform: capitalize;
}

.city-data-wrap .date-wrap p {
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0.5px;
	color: #051721;
}


.city-data-wrap .city-data.carousel-item.active,
.city-data-wrap .city-data.carousel-item.active + .city-img,
.city-data-wrap .city-data.carousel-item.active + .city-img + .date-wrap{
	display: block;
}

.place-detail-wrap .total_budget {
	width: auto;
	text-align: right;
}

.total_budget p {
	font-size: 16px;
	line-height: 1.25;
	color: #37454D;
    font-weight: 400;
	white-space: nowrap;
	margin-bottom: 7px;
}

.total_budget h5 {
	font-size: 36px;
	line-height: 1.25;
	color: #051721;
    font-weight: 700;
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.5px;
	white-space: nowrap;
}

.total_budget h5 span {
	color: #051721;
}

.cards-wrapper .sub-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.cards-wrapper .sub-heading h3 {
	color: #051721;
}

.cards-wrapper .sub-heading p {
	font-size: 32px;
    line-height: 1.25;
    color: #006994;
    font-weight: 700;
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.5px;
    margin: 0;
	width: auto;
	text-align: right;
}

.cards-wrapper .sub-heading p span {
    color: #006994;
}

.cards-wrapper .swiper-wrap {
	position: relative;
}

.cards-wrapper .swiper-button-prev, 
.cards-wrapper .swiper-button-next {
	font-size: 45px;
	line-height: 1;
}

.cards-wrapper .swiper-button-prev, 
.cards-wrapper .swiper-rtl .swiper-button-next {
    left: -50px;
    right: auto;
	color: #818181 !important;
}

.cards-wrapper .swiper-button-next, 
.cards-wrapper .swiper-rtl .swiper-button-prev {
    right: -50px;
    left: auto;
	color: #818181 !important;
}

.cards-wrapper .swiper-container {
	box-shadow: unset;
	border-radius: 0;
}

.cards-wrapper .swiper-container .swiper-slide {
	padding: 4px 12px 16px;
	max-height: unset;
}

.trip-card-wrap {
	border-radius: 20px;
	box-shadow: 0 4px 16px 0 rgba(17, 34, 17, 0.05);
	width: 100%;
}

.trip-card-wrap .card-img {
	position: relative;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.trip-card-wrap .card-img img {
	width: 100%;
    aspect-ratio: 517 / 298.5;
    height: auto !important;
    object-fit: cover;
	border-radius: 0;
}

.trip-card-wrap .card-img .card-tag {
    position: absolute;
	top: 19px;
    left: 24px;
	padding: 4px 8px;
    background: rgba(250, 129, 40, 0.8);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	font-weight: 500;
	border-radius: 5px;
	color: #fff;
	max-width: calc(100% - 100px);
	text-align: left;
}

.trip-card-wrap .card-img .accomodation-info,
.trip-card-wrap .card-img .activity-info,
.trip-card-wrap .card-img .food-info,
.trip-card-wrap .card-img .transport-info {
	top: 19px;
    right: 24px;
    padding: 8.5px 9.5px;
    border-radius: 8px;
    background: #FA8128;
    position: absolute;
    display: flex;
}

.trip-card-wrap .card-img .accomodation-info i,
.trip-card-wrap .card-img .activity-info i,
.trip-card-wrap .card-img .food-info i,
.trip-card-wrap .card-img .transport-info i {
	font-size: 17px;
	line-height: 1;
	color: #ffffff;
}

.trip-card-wrap .card-content {
	padding: 24px;
	background: #ffffff;
	text-align: left;
	border-radius: 0 0 20px 20px;
}

.card-content .card-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 24px;
	margin-bottom: 24px;
}

.card-content .card-inner h5 {
	font-size: 20px;
	line-height: 1.25;
	color: #112211;
    font-weight: 700;
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.5px;
	min-height: 55px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-bottom: 16px;
}

.card-content .card-inner h5:last-child {
	margin-bottom: 0;
}

.card-content .card-inner .card-price {
	text-align: right;
}

.card-inner .card-price p {
	font-size: 12px;
	line-height: 1.5;  
	letter-spacing: 0.5px;
	white-space: nowrap;
	color: rgba(17, 34, 17, 0.75);
}

.card-inner .card-price h6 {
	font-size: 22px;
	line-height: 28px;  
	color: #006994;
    font-weight: 700;
	white-space: nowrap;
    font-family: "Montserrat Alternates", sans-serif;
}

.card-inner .card-price h6 span {
	font-size: 14px; 
	color: #006994;
	white-space: nowrap;
}

.card-inner .card-price h6 .fare {
	display: inline;
}

.card-content .reviews-wrap {
	display: flex;
	align-items: flex-start;
}

.card-content .reviews-wrap .rating {
	border: 1px solid #FA8128;
	min-width: 40px;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 500;
	color: #112211;
	padding: 0.75px;
	border-radius: 4px;
	font-family: "Montserrat Alternates", sans-serif;
	display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.card-content .reviews-wrap p {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	font-family: "Montserrat Alternates", sans-serif;
	color: rgba(17, 34, 17, 0.75);
	padding-left: 4px;
	padding-top: 4px;
	width: calc(100% - 40px);
}

.card-content .reviews-wrap p span {
	font-size: 12px;
	line-height: 1.25;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	color: rgba(17, 34, 17, 0.75);
}

.card-content .extra-list {
	display: flex;
	flex-wrap: wrap;
	min-height: 24px;
	margin-bottom: 24px;
	gap: 10px;
}

.card-content .extra-list li {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: #37454D;
	letter-spacing: 0.5px;
	width: calc(50% - 5px);
	display: flex;
	align-items: flex-start;
}

.card-content .extra-list li img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 8px;
}

.card-content .extra-list li .duration {
	margin: 0;
}

.card-content hr {
	background: rgba(17, 34, 17, 0.25);
    margin: 0 0 24px;
}

.card-content .insert-cost {
	margin-bottom: 24px;
}

.card-content .insert-cost:last-child {
	margin-bottom: 0;
}

.card-content .insert-cost h6 {
	font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
	font-family: "Inter", sans-serif;
	margin-bottom: 12px;
}

.card-content .insert-cost input {
    font-size: 20px;
	line-height: 1.5;
	color: #000000;
	letter-spacing: 0.5px;
	text-align: center;
	padding: 0 15px;
	width: 100%;
	border-radius: 5px;
	height: 52px;
	font-family: "Inter", sans-serif;
	border: 2px solid #fa8128;
}

.card-content  a.addTotrip,
.card-content  a.addTotrip#btPad {
    background: #fa8128;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 16px;
	line-height: 1.5;
    border-radius: 0;
    box-shadow: unset;
    cursor: pointer;
    display: block;
	text-align: center;
	margin: 0 !important;
}
/*-_-_Trip-Summary-Form_CSS_End_-_-*/

/*-_-_Book-Page_CSS_Start_-_-*/
.form-book-wrap.form-sec-wrap {
	padding: 60px 0;
}

.book-row {
	margin: 0 -12px;
	row-gap: 48px;
}

.book-row .book-col {
	padding: 0 12px;
}

.book-swiper-wrap {
	position: relative;
	margin-bottom: 48px;
}

.book-swiper-wrap .swiper-container {
    border-radius: 15px;
    box-shadow: 0px 5px 20px 0px rgba(17, 34, 17, 0.05);
}

.book-swiper-wrap .swiper-slide {
	padding: 10px 20px;
	position: relative;
}

.book-swiper-wrap .swiper-slide::after {
	content: "";
	background: #37454D;
	height: calc(100% - 40px);
	transform: translateY(-50%);
	top: 50%;
	left: calc(100% - 1px);
	width: 2px;
	position: absolute;
	z-index: 2;
}

.book-swiper-wrap .swiper-slide:last-child::after {
	display: none;
}

.book-swiper-wrap .swiper-slide button {
	font-size: 20px;
	line-height: 40px;
	color: #051721;
	background: transparent;
	border: 0;
	outline: unset !important;
	width: 100%;
	padding: 17.1px 0 12.1px;
	border-bottom: 5px solid transparent;
}

.book-swiper-wrap .swiper-slide button.active {
	border-color: #FA8128;
}

.book-swiper-wrap .swiper_prev,
.book-swiper-wrap .swiper_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.book-swiper-wrap .swiper_prev {
	left: -65px;
}
	
.book-swiper-wrap .swiper_next {
	right: -65px;
}

.book-swiper-wrap .swiper_prev i,
.book-swiper-wrap .swiper_next i {
	font-size: 36px;
	line-height: 1;
	color: #000000;
}

.select-wrap {
	display: none;
	margin-bottom: 24px;
}

.select-wrap label {
	font-size: 14px;
	line-height: 17px;
	font-family: "Montserrat Alternates", sans-serif;
	color: #1C1B1F;
	margin-bottom: 6px;
}

.select-wrap select {
	border-radius: 8px;
	padding: 0 16px;
	border: 1px solid rgba(17, 34, 17, 0.25);
	box-shadow: 0 1px 2px 0 rgba(17, 34, 17, 0.05);
	height: 46px;
	font-size: 12px;
	line-height: 1.5;
	color: #051721;
	width: 100%;
}
/*-_-_Book-Page_CSS_End_-_-*/

/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
.popular-trips.form-sec-wrap {
	padding: 68px 0 129px;
}

.popular-trips.form-sec-wrap h1 {
	text-align: left;
	margin-bottom: 33px;
}

.tc-wrap {
	margin-bottom: 41px;
}

.tc-wrap:last-child {
	margin-bottom: 0;
}

.tc-wrap > h4 {
	display: flex;
	align-items: center;
	text-transform: unset;
	margin-bottom: 24px;
}

.tc-wrap > h4 .tc-edit {
	width: 30px;
	height: 30px;
	background: transparent;
	border-radius: 50%;
	outline: unset !important;
	margin-left: 19px;
	border: 0;
}

.tc-wrap > h4 .tc-edit img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.trip-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 32px 40px;
	column-gap: 24px;
	row-gap: 24px;
	border-radius: 24px;
	box-shadow: 0 4px 16px 0 rgba(17, 34, 17, 0.05);
}

.trip-card .tc-item .tc-content {
	position: relative;
	padding-right: 34px;
	margin-right: 33px;
}

.trip-card .tc-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 20px;
}

.trip-card .tc-item .tc-content:last-child {
	padding: 0;
	margin: 0;
}

.trip-card .tc-item .tc-content::after {
	content: "";
	background: #A9C3C3;
	width: 1px;
	height: 48px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border-radius: 0.5px;
	position: absolute;
}

.trip-card .tc-item .tc-content:last-child:after {
	display: none;
}

.trip-card .tc-content.tc-name {
	display: flex;
	align-items: center;
}

.trip-card .tc-content.tc-name img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
}

.trip-card .tc-content .tc-inner {
	padding-left: 24px;
}

.trip-card .tc-content .tc-inner:first-child {
	padding-left: 0;
}

.trip-card .tc-content.tc-name span {
	font-size: 20px;
	line-height: 1.2;
	color: rgba(55, 69, 77, 0.75);
	font-family: "Karla", sans-serif;
	display: block;
	margin-bottom: 8px;
}

.trip-card .tc-content h5 {
	font-size: 24px;
    line-height: 1.25;
	font-weight: 700;
	letter-spacing: 0.5px;
	font-family: "Montserrat Alternates", sans-serif;
	color: #006994;
}

.trip-card .tc-content > span {
	font-size: 16px;
	line-height: 19px;
	color: rgba(55, 69, 77, 0.75);
	font-family: "Karla", sans-serif;
	display: block;
	margin-bottom: 8px;
}

.trip-card  .tc-content p {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #051721;
}

.tc-btn-wrap {
	display: flex;
	align-items: center;
	column-gap: 24px;
}

.tc-btn-wrap .view-detail-btn {
	font-size: 16px;
	line-height: 19px;
	color: #FAFBFC;
	font-weight: 500;
	font-family: "Karla", sans-serif;
	border-radius: 4px;
	padding: 14.5px 16px;
	letter-spacing: 0.75px;
	background: #FA8128;
	border: 0;
	text-align: center;
	white-space: nowrap;
}


.tc-btn-wrap .delete-btn {
	font-size: 16px;
	line-height: 19px;
	color: #FAFBFC;
	font-weight: 500;
	font-family: "Karla", sans-serif;
	border-radius: 4px;
	padding: 14.5px 16px;
	letter-spacing: 0.75px;
	background: #006994;
	border: 0;
	text-align: center;
	outline: unset !important;
}
/*-_-_Popular-Trips-Page_CSS_End_-_-*/

/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
.my-trip-plan-wrap.form-sec-wrap #banner{
	background-image: unset;
    height: auto;
    width: 100%;
    display: block;
}

.my-trip-plan-wrap.form-sec-wrap h1 {
	text-align: left;
	margin: 0;
}

.my-trip-plan-wrap .my-trip-plan-row {
	align-items: flex-start;
	margin-bottom: 48px;
}

.my-trip-plan-wrap .my-trip-plan-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.my-trip-plan-wrap .total-budget {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.total-budget h5 {
	font-size: 24px;
	line-height: 1.25;
	color: #051721;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	font-weight: 600;
	max-width: 192px;
	margin-right: 15px;
	text-align: left;
}

.total-budget .total-price {
	font-size: 20px;
	line-height: 1.2;
	color: #006994;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	font-weight: 600;
} 

.my-trip-plan-wrap .mytrip-plan-heading-wrap {
	position: relative;
	border-radius: 15px;
	box-shadow: 0 5px 20px 0 rgba(17, 34, 17, 0.05);
	padding: 20px 0;
	margin-bottom: 48px;
}

.my-trip-plan-wrap .mytrip-plan-heading-wrap::before {
	content: "";
	background: #fff;
	left: 0;
	top: 50%;
	width: 5px;
	height: calc(100% - 40px);
	transform: translateY(-50%);
	position: absolute;
	z-index: 1;
}

.my-trip-plan-wrap .mytrip-plan-heading-wrap::after {
	content: "";
	background: #fff;
	right: 0;
	top: 50%;
	width: 5px;
	height: calc(100% - 40px);
	transform: translateY(-50%);
	position: absolute;
	z-index: 1;
}

.my-trip-plan-wrap .swiper-container {
	border-radius: 0;
	box-shadow: unset;
}

.my-trip-plan-wrap .mytrip-plan-heading-wrap .swiper-container {
	pointer-events: none;
}

.mytrip-plan-heading-wrap .swiper-button-prev, 
.mytrip-plan-heading-wrap .swiper-button-next {
    font-size: 45px;
    line-height: 1;
}

.mytrip-plan-heading-wrap .swiper-button-prev,
.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
    left: -50px;
    right: auto;
    color: #818181 !important;
}

.mytrip-plan-heading-wrap .swiper-button-next,
.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
    right: -50px;
    left: auto;
    color: #818181 !important;
}

.mytrip-plan-heading .swiper-slide {
	text-align: center;
	flex-direction: column;
	border-right: 2px solid #37454D;
}

.date-card {
	display: none;
	border-radius: 15px;
	box-shadow: 0 5px 20px 0 rgba(17, 34, 17, 0.05);
	padding: 20px 0;
	margin: 0 auto 48px;
    width: 90%;
}

.date-card h5 {
	font-size: 18px;
    line-height: 22px;
    color: #006994;
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.date-card p {
	font-size: 12px;
    line-height: 1.5;
    color: #006994;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.public-plan .date-card .select-date,
.public-plan .mytrip-plan-heading-wrap .select-date {
	display: none;
}

.user-plan .date-card .day-no,
.user-plan .mytrip-plan-heading-wrap .day-no {
	display: none;
}

.mytrip-plan-heading .swiper-slide h5 {
	font-size: 24px;
	line-height: 1.25;
	color: #006994;
	font-family: "Montserrat Alternates", sans-serif;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-bottom: 12px;
}

.mytrip-plan-heading .swiper-slide p {
	font-size: 16px;
	line-height: 1.5;
	color: #006994;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.mytrip-plan.swiper-container {
	width: calc(100% + 25px);
	margin: 0 -12.5px;
}

.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
	margin-bottom: 48px;
}

.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
	margin-bottom: 16px;
}

.my-trip-plan-wrap .mytrip-plan .mytrip-plan-heading-mobile {
	display: none;
}

.my-trip-plan-wrap .mytrip-plan .swiper-slide {
	padding: 0 12.5px;
	display: block;
	max-height: 100%;
}
/*-_-_Popular-Trips-Page_CSS_End_-_-*/

/*-_-_Detail-Page_CSS_Start_-_-*/
.detail-wrap .detail-content {
	padding: 60px 0 120px;
}

.detail-content .detail-inner-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.detail-inner-wrap .detail-inner h2 {
	font-size: 24px;
    line-height: 1.25;
    color: #112211;
    font-weight: 600;
	letter-spacing: 0.5px;
    font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 16px;
}

.detail-inner-wrap .detail-inner p {
	display: flex;
	font-size: 14px;
    line-height: 18px;
    color: rgba(17, 34, 17, 0.75);
    font-weight: 500;
    font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 8px;
}

.detail-inner-wrap .detail-inner p i {
	font-size: 18px;
	line-height: 1;
	color: #FA8128;
	margin-right: 5px;
}

.detail-inner .reviews-wrap {
    display: flex;
    align-items: flex-start;
}

.detail-inner .reviews-wrap .rating {
    border: 1px solid #FA8128;
    min-width: 40px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    color: #112211;
    padding: 0.75px;
    border-radius: 4px;
    font-family: "Montserrat Alternates", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.detail-inner .reviews-wrap p {
	font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: rgba(17, 34, 17, 0.75);
    padding-left: 4px;
    padding-top: 4px;
	margin: 0;
    width: calc(100% - 40px);
}

.detail-inner-wrap .card-price {
	text-align: right;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
}

.detail-inner-wrap .card-price h6 {
	font-size: 32px;
    line-height: 1.25;
    color: #006994;
    font-weight: 700;
    white-space: nowrap;
    font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 16px;
}

.detail-inner-wrap .card-price h6 span {
	font-size: 16px;
    color: #006994;
    white-space: nowrap;
}

.detail-inner-wrap .card-price .share-btn {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #FA8128;
	border-radius: 4px;
	background: transparent;
	outline: unset !important;
	transition: 0.4s all ease;
}

.detail-inner-wrap .card-price .share-btn:hover {
	background: #FA8128;
	color: #ffffff;
}

.card-price .share-btn i {
	font-size: 16px;
	line-height: 1;
	color: #000000;
}

.gallery-wrap a:first-child {
	grid-area: image1;
	display: block;
}

.gallery-wrap a:nth-child(2) {
	grid-area: image2;
	display: block;
}

.gallery-wrap a:nth-child(3) {
	grid-area: image3;
	display: block;
}

.gallery-wrap a:nth-child(4) {
	grid-area: image4;
	display: block;
}

.gallery-wrap a:nth-child(5) {
	grid-area: image5;
	display: block;
}

.gallery-wrap {
	display: grid;
	grid-template-areas:
		'image1 image1 image1 image1 image1 image1 image2 image2 image2 image4 image4 image4'
		'image1 image1 image1 image1 image1 image1 image3 image3 image3 image5 image5 image5';
	flex-wrap: wrap;
	row-gap: 7.5px;
	column-gap: 8px;
	margin-bottom: 48px;    
	grid-template-columns: repeat(12, 1fr);
}

.gallery-wrap a {
	font-size: 0;
	line-height: 1;
	position: relative;
	display: none;
}

.gallery-wrap a img {
	width: 100%;
	aspect-ratio: 394/271;
	object-fit: cover;
	height: 100%;
} 

.gallery-wrap a:first-child img {
	width: 100%;
	aspect-ratio: 796/550;
	border-radius: 8px 0 0 8px;
} 

.gallery-wrap a:nth-child(4) img {
	border-top-right-radius: 8px;
} 

.gallery-wrap a:nth-child(5) img {
	border-bottom-right-radius: 8px;
} 

.gallery-wrap a:nth-child(5)::before {
	content: "";
	background: rgba(0, 0, 0, 0.40);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius: 8px 0 0 8px;
}

.gallery-wrap a:nth-child(5)::after {
	content: "View all photos";
	position: absolute;
	right: 16px;
	bottom: 16px;
	font-size: 14px;
	line-height: 48px;
	font-weight: 600;
	color: #ffffff;
	background: #FA8128;
	border-radius: 4px;
	padding: 0 16px;
	z-index: 2;
	white-space: nowrap;
}

.detail-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.detail-row .detail-content-wrap {
	width: calc(100% - 517px);
	padding-right: 24px;
}

.detail-row .detail-content-wrap.width-100 {
	width: 100%;
}

.detail-content-wrap .overview-wrap,
.detail-content-wrap .available-rooms-wrap, 
.detail-content-wrap .more-info-wrap {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(17, 34, 17, 0.25);
}

.detail-content-wrap .overview-wrap h4,
.detail-content-wrap .available-rooms-wrap h4, 
.detail-content-wrap .more-info-wrap h4,
.detail-content-wrap .reviews-wrap h4 {
	font-size: 24px;
	color: #112211;
	text-transform: capitalize;
	margin-bottom: 16px;
}

.overview-wrap p {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(17, 34, 17, 0.75);
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.overview-wrap p:last-child {
	margin-bottom: 0;
}

.overview-wrap ul {
    padding-left: 32px;
    list-style-type: disc;
	margin-bottom: 20px;
}

.overview-wrap ol {
    padding-left: 32px;
    list-style-type: decimal;
	margin-bottom: 20px;
}

.overview-wrap ul li,
.overview-wrap ol li {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(17, 34, 17, 0.75);
	letter-spacing: 0.5px;
}

.overview-wrap ul li::first-letter,
.overview-wrap ol li::first-letter {
	text-transform: capitalize;
}

.overview-wrap p span,
.overview-wrap ul li span,
.overview-wrap ol li span {
	color: inherit !important;
}

.available-rooms-wrap ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid rgba(17, 34, 17, 0.25);
	row-gap: 24px;
	column-gap: 15px;
}

.available-rooms-wrap ul li:last-child {
	padding-bottom: 0;
	border: 0;
}

.available-rooms-wrap ul li .room-des {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.available-rooms-wrap ul li .room-des img {
	width: 48px;
	height: 48px;
	border-radius: 4px;
	object-fit: cover;
}

.available-rooms-wrap ul li .room-des p {
	padding-left: 16px;
	width: calc(100% - 48px);
	font-size: 18px;
	line-height: 1.5;
	color: #151515;
	letter-spacing: 0.5px;
}

.available-rooms-wrap ul li h6 {
	text-align: right;
	font-size: 24px;
	line-height: 43px;
	color: #151515;
    font-family: "Inter", sans-serif;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.available-rooms-wrap ul li h6 span {
	font-size: 18px;
	line-height: 1.5;
	color: #151515;
	letter-spacing: 0.5px;
}

.detail-row .booking-form-wrap {
	padding-top: 46px;
	width: 517px;
}

.request-book-btn {
	font-size: 16px;
	line-height: 1.5;
	padding: 0 16px;
	color: #ffffff;
	border-radius: 8px;
	border: 1px solid #FA8128;
	background: #FA8128;
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	font-family: "Inter", sans-serif;
	height: 44px;
	width: 100%;
	display: none;
}

.booking-request-form {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
}

.booking-request-form h3 {
	font-size: 32px;
    line-height: 1.25;
    color: #112211;
    font-weight: 700;
	text-align: center;
    letter-spacing: 0.5px;
    font-family: "Montserrat Alternates", sans-serif;
	padding: 9px 0;
	margin-bottom: 24px;
}

.booking-request-form .form-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px 32px;
}

.booking-request-form .form-row .col-6,
.booking-request-form .form-row .col-12 {
	padding: 0 12px;
}

.booking-request-form .form-row .form-group {
	margin-bottom: 24px;
}

.booking-request-form .form-row .form-group:last-child {
	margin-bottom: 0;
}

.booking-request-form label {
	font-size: 14px;
	line-height: 17px;
	color: #1C1B1F;
	display: block;
	font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 6px;
}

.booking-request-form input,
.booking-request-form select {
	font-size: 12px;
	line-height: 1;
	padding: 0 16px;
	color: #1C1B1F;
	border-radius: 8px;
	border: 1px solid rgba(17, 34, 17, 0.25);
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	font-family: "Poppins", sans-serif;
	height: 41px;
	width: 100%;
}

.booking-request-form input::placeholder {
	color: #757575;
}

.booking-request-form textarea {
	font-size: 12px;
	line-height: 1;
	padding: 12px 16px;
	color: #1C1B1F;
	border-radius: 8px;
	border: 1px solid rgba(17, 34, 17, 0.25);
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	font-family: "Poppins", sans-serif;
	height: 131px;
	width: 100%;
}

.booking-request-form input:focus,
.booking-request-form select:focus,
.booking-request-form textarea:focus {
	border-color: rgba(17, 34, 17, 1);
}

.booking-request-form button {
	font-size: 16px;
	line-height: 1.5;
	padding: 0 16px;
	color: #ffffff;
	border-radius: 8px;
	border: 1px solid #FA8128;
	background: #FA8128;
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	font-family: "Inter", sans-serif;
	height: 48px;
	width: 100%;
}

.more-info-accordion .accordion-item {
	margin-bottom: 16px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .16);
}

.more-info-accordion .accordion-button {
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0.5px;
	color: #151515;
	font-family: "Montserrat Alternates", sans-serif;
	font-weight: 600;
	padding: 35px 30px;
	border: 0;
	box-shadow: unset;
	transition: 0.4s all ease;
}

.more-info-accordion .accordion-button::after {
	width: 26px;
    height: 26px;
    background-image: url(../images/plus-icon.svg);
    background-size: contain;
}

.more-info-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(-135deg);
}

.more-info-accordion .accordion-button:not(.collapsed) {
	font-size: 24px;
	padding: 22px 30px 12px;
	background: transparent;
}

.more-info-accordion .accordion-body {
	padding: 0 30px 18px;
	border-radius: 0 0 10px 10px;
}

.more-info-accordion .accordion-body ol {
	padding-left: 25px;
	list-style-type: decimal;
}

.more-info-accordion .accordion-body ol ol {
	list-style-type: lower-alpha;
}

.more-info-accordion .accordion-body ul {
	padding-left: 25px;
	list-style-type: disc;
}

.more-info-accordion .accordion-body ol li,
.more-info-accordion .accordion-body ul li,
.more-info-accordion .accordion-body p {
	font-size: 18px;
	line-height: 1.5;
	color: #151515;
	letter-spacing: 0.5px;
	font-family: "Inter", sans-serif;
}

.more-info-accordion .accordion-body ol li::first-letter,
.more-info-accordion .accordion-body ul li::first-letter {
	text-transform: capitalize;
}

/* .more-info-accordion .accordion-body ol li::marker,
.more-info-accordion .accordion-body ul li::marker {
	display: inline-block !important;
} */

.more-info-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.reviews-wrap .review-rating {
	display: flex;
	align-items: center;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(17, 34, 17, 0.25);
}

.review-rating .review-by {
	padding-left: 16px;
}

.review-rating .review-by p {
	font-size: 24px;
	line-height: 1.792;
	color: #151515;
	font-family: "Inter", sans-serif;
	margin-bottom: 8px;
}

.review-rating .review-by span {
	font-size: 16px;
	line-height: 1.5;
	color: #151515;
	letter-spacing: 0.5px;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

.reviews-wrap .review-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 24px 0;
	border-bottom: 1px solid rgba(17, 34, 17, 0.25);
}

.review-list li img {
	width: 45px;
	height: 45px;
	object-fit: cover;
	border-radius: 50%;
}

.review-list li .review-des {
	width: calc(100% - 45px);
	padding-left: 16px;
	padding-right: 36px;
	position: relative;
}

.review-list li .review-des h6 {
	font-size: 14px;
	line-height: 17px;
	color: #151515;
	font-weight: 600;
	font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 8px;
}

.review-list li .review-des h6 span {
	font-weight: 400;
}

.review-list li .review-des .flag-btn {
	background: unset;
	border: 0;
	outline: unset !important;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0	;
}

.review-list li .review-des .flag-btn i {
	font-size: 17.5px;
	line-height: 1;
	color: rgba(250, 129, 40, 0.75);
}

.review-list li .review-des .flag-btn:hover i {
	color: rgba(250, 129, 40, 1);
}

.review-list li .review-des p {
	font-size: 15px;
	line-height: 22.5px;
	letter-spacing: 0.5px;
	font-family: "Inter", sans-serif;
	color: #112211;
}

.custom-pagination {
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 24px;
}

.custom-pagination button {
	width: 24px;
	height: 24px;
	border: 0;
	outline: unset !important;
	background: transparent;
}

.custom-pagination button img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.custom-pagination span {
	font-size: 14px;
	line-height: 17px;
	color: #112211;
}

/*-_-_Detail-Page_CSS_End_-_-*/

/*-_-_Trip-Summary-Details-Modal_CSS_Start_-_-*/
.trip-summary-details-modal.modal {
	padding: 0 !important; 
}

.trip-summary-details-modal .modal-header {
	padding: 20px 15px;
}

.trip-summary-details-modal .modal-title {
	font-size: 24px;
    line-height: 1.25;
    color: #051721;
    font-weight: 700;
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.5px;
    margin: 0;
}

.trip-summary-details-modal .modal-header .close {
	width: 28px;
    height: 28px;
    font-size: 20px;
	line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 2px;
    border-radius: 50%;
}

.trip-summary-details-modal .modal-body {
	background: transparent;
	border-radius: 0;
	padding: 20px;
}

.trip-summary-details-modal .trip_summary_img {
	padding-bottom: 20px;
}

.trip-summary-details-modal .trip_summary_content p {
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 5px;
}

.trip-summary-details-modal .trip_summary_content p:last-child {
	margin-bottom: 0;
}

.trip-summary-details-modal .accomodation-carousel-inner-box .carousel-item {
	background-position: center center !important;
}
/*-_-_Trip-Summary-Details-Modal_CSS_End_-_-*/

/*-_-_Calculate-Fare_CSS_Start_-_-*/
.cal-fare-dropdown {
	position: relative;
	line-height: 1;
}

.cal-fare-dropdown .dropdown-toggle {
	font-size: 12px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #fff;
	background: #FA8128;
	border: 0;
	padding: 8.5px 31.5px;
	border-radius: 5px;
}

.cal-fare-dropdown .dropdown-menu {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
    width: 348px;
	transform: unset !important;
	inset: 100% 0 auto auto !important;
	border: 0;
}

.cal-fare-dropdown .dropdown-menu .form-group {
	line-height: 1;
	margin-bottom: 20px;
}

.cal-fare-dropdown .dropdown-menu label {
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	color: #1C1B1F;
	font-family: "Montserrat Alternates", sans-serif;
	margin-bottom: 6px;
}

.cal-fare-dropdown .dropdown-menu select {
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
	padding: 0 15px;
	height: 44px;
	border: 1px solid rgba(17, 34, 17, 0.25);
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	color: #757575;
	font-family: "Poppins", sans-serif;
}

.cal-fare-dropdown .dropdown-menu button {
	background: #fa8128;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
    box-shadow: unset;
    cursor: pointer;
    display: block;
    text-align: center;
	width: 100%;
	border: 0;
	font-family: "Inter", sans-serif;
}

.calculated-row {
	display: flex;
	flex-wrap: wrap;
	margin: -4px -6px 24px;
}

.calculated-row .calculated-col {
	width: 50%;
	padding: 0 6px;
	line-height: 1;
}

.calculated-row .calculated-col label {
	font-size: 16px;
	line-height: 1.25;
	color: #000000;
	font-weight: 500;
	letter-spacing: 0.5px;
	font-family: "Inter", sans-serif;
	margin-bottom: 10px;
	display: block;
}

.calculated-row .calculated-col input {
	font-size: 14px;
	padding: 0 15px;
	border: 1px solid #FA8128;
	border-radius: 5px;
	background: #ffff;
	width: 100%;
	height: 46px;
	text-align: center;
}

/*-_-_Calculate-Fare_CSS_End_-_-*/

.detail-row .detail-content-wrap .booking-form-wrap { 
	display: none;
}

/*-_-_Responsiveness_-_-*/
@media only screen and (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media only screen and (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media only screen and (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media only screen and (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

@media only screen and (min-width: 1700px) {
	.container {
		max-width: 1630px;
	}
}

@media only screen and (max-width: 1840px) {
	.popular-slider {
		margin: 0 auto;
		max-width: 1520px;
	}

	.popular-slider .slick-arrow.slick-prev {
		left: -55px;
	}

	.popular-slider .slick-arrow.slick-next {
		right: -55px;
	}

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		font-size: 45px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-rtl .swiper-button-next {
		left: -40px;
	}

	.cards-wrapper .swiper-button-next, 
	.cards-wrapper .swiper-rtl .swiper-button-prev {
		right: -40px;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/

	/*-_-_Book-Page_CSS_Start_-_-*/
	.book-swiper-wrap .swiper_prev {
		left: -45px;
	}
		
	.book-swiper-wrap .swiper_next {
		right: -45px;
	}

	.book-swiper-wrap .swiper_prev i,
	.book-swiper-wrap .swiper_next i {
		font-size: 32px;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		font-size: 45px;
	}

	.mytrip-plan-heading-wrap .swiper-button-prev,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
		left: -40px;
	}

	.mytrip-plan-heading-wrap .swiper-button-next,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
		right: -40px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/
}

@media only screen and (max-width: 1699px) {

	/*-_-_Header_CSS_Start_-_-*/
	header#header {
		position: relative;
	}

	#header .navbar {
		padding: 18px 0;
	}

	#header .navbar .logo {
		max-width: 220px;
		width: 100%;
		margin-right: 15px;
	}

	#header .navbar .logo img {
		max-height: unset;
	}

	.navbar-collapse .navbar-nav {
		margin-right: 40px;
	}

	.navbar-collapse .navbar-nav>li {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link {
		font-size: 14px;
		line-height: 20px;
		padding: 16px 0;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link i {
		font-size: 15px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu {
		padding: 10px;
		min-width: 220px;
		border-radius: 8px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu li a {
		font-size: 18px;
		line-height: 1.5;
		padding: 4px 10px;
	}

	.navbar-collapse .navbar-right>li {
		margin-right: 16px;
	}

	.navbar-collapse .navbar-right>li:first-child {
		margin-right: 40px;
	}

	.navbar-collapse .navbar-right>li>a.login-modal-link,
	.navbar-right .currency-dropdown .show-currency {
		font-size: 14px;
		line-height: 20px;
		padding: 16px 0 !important;
	}

	.navbar-right .currency-dropdown .show-currency i {
		font-size: 14px;
	}

	.navbar-right .currency-dropdown .dropdown-menu {
		min-width: 180px;
	}

	.navbar-right .currency-dropdown .dropdown-menu li a {
		font-size: 14px;
		padding: 4px 20px;
	}

	.navbar-collapse .navbar-right>li .sign-out,
	.navbar-collapse .navbar-right>li .sign-up-modal-link {
		font-size: 14px;
		line-height: 20px;
		padding: 15px 35px;
	}

	/*-_-_Header_CSS_End_-_-*/

	/*-_-_Banner_CSS_Start_-_-*/
	.banner {
		padding: 260px 0 180px;
	}

	.banner-row .banner-content-col {
		width: calc(100% - 500px);
		max-width: 750px;
		padding-top: 80px;
	}

	.banner .banner-content-col h1 {
		margin-bottom: 20.5px;
	}

	.banner-content-col p {
		font-size: 24px;
		line-height: 1.5;
	}

	.banner-row .banner-form-col {
		width: 500px;
	}

	.banner .trip-form {
		padding: 33.5px 30px;
		border-radius: 20px;
	}

	.trip-form h3 {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.trip-form .form-group {
		margin-bottom: 30px;
	}

	.trip-form input {
		font-size: 18px;
		line-height: 1.5;
		height: 50px;
		padding: 0 18px;
	}

	.trip-form .travL .txtL {
		font-size: 18px;
		line-height: 48px;
		letter-spacing: 0.5px;
		height: 50px;
		padding: 0 18px;
	}

	.trip-form .travlNo {
		padding: 10px 12px;
	}

	.trip-form span.tb {
		font-size: 15px;
		padding-right: 14px;
	}

	.trip-form span.bt {
		font-size: 16px;
	}

	.trip-form .value-button {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.trip-form input#number {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.trip-form a.addPass {
		padding: 10px 18px;
		font-size: 16px;
		line-height: 18px;
		border-radius: 6px;
	}

	.trip-form .next-trip-btn {
		font-size: 18px;
		line-height: 20px;
		letter-spacing: 0.5px;
		padding: 20px 20px;
	}

	/*-_-_Banner_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.content h1,
	.banner h1 {
		font-size: 50px;
	}

	.content h2 {
		font-size: 22px;
	}

	.content h3 {
		font-size: 18px;
	}

	.content h4 {
		font-size: 14px;
	}

	.why-use-wrap {
		padding: 120px 0 60px;
	}

	.why-use-content>h2 {
		margin: 0 0 18px;
	}

	.why-use-content>p {
		font-size: 14px;
		max-width: 660px;
		margin: 0 auto 40px;
	}

	.why-use-row {
		margin: 0 -12px;
		row-gap: 85px;
	}

	.why-use-row .why-use-col {
		width: 33.33%;
		padding: 0 12px;
	}

	.why-use-inner {
		padding: 15px 0;
	}

	.why-use-inner .why-use-icon {
		width: 90px;
		height: 90px;
		margin: 0 auto 40px;
	}

	.why-use-inner .why-use-icon img {
		width: 38px;
		height: 38px;
	}

	.why-use-inner h4 {
		margin-bottom: 16px;
	}

	.why-use-inner p {
		font-size: 22px;
		line-height: 1.75;
	}

	.how-works-wrap {
		padding: 60px 0 120px;
	}

	.how-works-content h2 {
		margin: 0 0 16px;
	}

	.how-works-content p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 40px;
	}

	.how-works-content iframe {
		border-radius: 26px;
		aspect-ratio: 1600 / 800;
	}

	.testimonials-content {
		padding: 125px 0;
		max-width: 1299px;
	}

	.testimonials-content h6 {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 3px;
	}

	.testimonials-content h3 {
		margin-bottom: 56px;
	}

	.testimonial-slider {
		max-width: 800px;
		padding-bottom: 68px;
	}

	.testimonial-content .rating {
		gap: 12px;
		margin-bottom: 34px;
	}

	.testimonial-content .rating ion-icon {
		font-size: 22px;
	}

	.testimonial-content p {
		font-size: 22px;
		line-height: 1.85;
	}

	.testimonial-content span {
		font-size: 18px;
		line-height: 1.5;
		margin-top: 10px;
	}

	.testimonial-slider .slick-arrow {
		width: 40px;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: -180px;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: -180px;
	}

	.popular-wrap {
		padding: 120px 0 60px;
	}

	.popular-wrap .popular-content>h2 {
		max-width: 660px;
		margin: 0 auto 16px;
	}

	.popular-wrap .popular-content>p {
		font-size: 18px;
		line-height: 1.5;
		max-width: 660px;
		margin: 0 auto 40px;
	}

	.popular-slider {
		margin: 0 auto;
		max-width: 1250px;
	}

	.popular-slider .slick-arrow {
		width: 26px;
	}

	.popular-slider .slick-arrow.slick-prev {
		left: -45px;
	}

	.popular-slider .slick-arrow.slick-next {
		right: -45px;
	}

	.popular-slide {
		margin: 0 10px;
		border-radius: 24px;
	}

	.popular-slide>img {
		aspect-ratio: 788 / 739;
	}

	.popular-slide .popular-inner {
		padding: 0 25px 36px;
		min-height: 340px;
	}

	.popular-slide .popular-inner h2 {
		font-size: 45px;
		max-width: 100%;
		margin: 0 auto 10px;
	}

	.popular-slide .popular-inner p {
		font-size: 20px;
		max-width: 100%;
		line-height: 1.2;
		margin: 0 auto 20px;
	}

	.popular-wrap .popular-content a {
		font-size: 17.5px;
		line-height: 22px;
		padding: 18px 20px;
	}

	.popular-wrap .popular-content a i {
		font-size: 18px;
		margin-right: 8px;
	}

	.newsletter-wrap {
		padding: 60px 0 120px;
	}

	.newsletter-wrap .newsletter-row {
		border-radius: 36px;
	}

	.newsletter-row .newsletter-img {
		width: 43%;
		font-size: 0;
	}

	.newsletter-row .newsletter-content {
		width: 57%;
		padding: 35px 42px;
	}

	.newsletter-content .newsletter-inner {
		max-width: 620px;
	}

	.newsletter-content .newsletter-inner h3 {
		margin-bottom: 46px;
	}

	.newsletter-content .newsletter-inner p {
		font-size: 18px;
		line-height: 1.5;
		max-width: 670px;
		margin: 0 auto 46px;
	}

	.newsletter-content .newsletter-inner input {
		height: 75px;
		border-radius: 50px;
		padding: 0 215px 0 28px;
		font-size: 18px;
	}

	.newsletter-content .newsletter-inner button {
		font-size: 22px;
		line-height: 58px;
		border-radius: 35px;
		padding: 0 40px;
		right: 12px;
	}

	.newsletter-content .newsletter-inner .alert {
		margin: 18px 0 0;
	}

	/*-_-_Content_CSS_End_-_-*/

	/*-_-_Footer_CSS_Start_-_-*/
	.footer {
		padding: 210px 0 0;
	}

	.footer::before {
		top: -2px;
		width: 100%;
		height: 180px;
	}

	.footer .footer-top {
		padding-bottom: 24px;
	}

	.footer-top .footer-logo {
		max-width: 220px;
		margin: 0 auto 28px;
	}

	.footer-top .social-links {
		margin-bottom: 22px;
	}

	.footer-top .social-links li {
		margin-right: 22px;
	}

	.footer-top .social-links li a {
		width: 42px;
		height: 42px;
		border-width: 2.3px;
	}

	.footer-top .social-links li a i {
		font-size: 19px;
	}

	.footer-top .footer-links li {
		margin-right: 22px;
	}

	.footer-top .footer-links li a {
		font-size: 18px;
	}

	.footer .copyright p {
		padding: 16px 0 24px;
		font-size: 16px;
		line-height: 1.5;
	}

	/*-_-_Footer_CSS_End_-_-*/

	/*-_-_Pick-City_CSS_Start_-_-*/
	.form-sec-wrap {
		padding: 60px 0 95px;
	}

	.form-sec-wrap h1 {
		font-size: 42px;
		margin-bottom: 44px;
	}

	.form-top-bar {
		margin-bottom: 78px;
	}

	.form-top-bar li {
		min-width: 230px;
	}

	.form-top-bar li::before {
		height: 2px;
		top: 26.5px;
	}

	.form-top-bar li .form-count {
		font-size: 22px;
		width: 55px;
		height: 55px;
		margin: 0 auto 26px;
	}

	.form-top-bar li .form-count i {
		font-size: 28px;
	}

	.form-top-bar li p {
		font-size: 18px;
	}

	.sticy_pos {
		padding: 18px 0;
		gap: 20px;
	}

	.sticy_pos .btn-prev,
	.sticy_pos .btn-next,
	.my-trip-plan-btn .btn-prev,
	.my-trip-plan-btn .btn-next {
		font-size: 19px;
		font-weight: 400;
		min-width: 220px;
		border-radius: 5.2px;
		line-height: 48px;
	}

	.destination-wrap {
		margin-bottom: 55px;
	}

	.destination-wrap span {
		font-size: 17px;
		margin-bottom: 4px;
	}

	.destination-wrap h3 {
		font-size: 34px;
		margin-bottom: 4px;
	}

	.destination-wrap p {
		font-size: 18px;
	}

	#pick-up-city-form .row {
		row-gap: 38px;
		margin-bottom: 24px;
	}

	.select-city .pick-city-box {
		border-radius: 17px !important;
	}

	.select-city .pick-city-box img {
		aspect-ratio: 518 / 497;
	}

	.select-city .pick-city-box .select-city-content { 	
		padding: 27px;
	}

	.select-city .pick-city-box h4 {
		font-size: 26px;
	}

	.select-city .pick-city-box p {
		font-size: 15px;
		margin-bottom: 18px;
	}

	.select-city .pick-city-box .select-city-btn {
		font-size: 18px;
		line-height: 20px;
		padding: 14px 18px;
		border-radius: 5px;
	}

	.select-city .pick-city-box .info-cities {
		font-size: 17px;
		line-height: 21px;
	}

	.select-city .pick-city-box:hover .info-cities {
		margin-top: 17px;
	}

	.select-city .number {
		padding: 14px;
		border-radius: 0px 0px 17px 17px;
	}

	/* .select-city .citiesS.showCount .pick-city-box { */
	.select-city .pick-city-box.selected-label {
		border-radius: 17px 17px 0px 0px !important;
	}

	.number .minus-day,
	.number .add-day {
		font-size: 28px;
		width: 42px;
		height: 42px;
	}

	.number .pm {
		height: 42px;
		width: calc(100% - 95px);
		font-size: 19px;
		margin: 0;
	}

	.number span.oneN,
	.number span.twoN {
		right: 100px;
		font-size: 18px;
	}
	/*-_-_Pick-City_CSS_End_-_-*/

	/*-_-_Card_CSS_Start_-_-*/
	.form-wrap .row {
		row-gap: 38px;
		margin-bottom: 24px;
	}

	.select-card .select-card-box {
		border-radius: 17px;
	}

	.select-card .select-card-content {
		padding: 27px;
	}

	.select-card .select-card-content h4 {
		font-size: 26px;
	}

	.select-card .select-card-content p {
		font-size: 15px;
		line-height: 1.5;
		margin-bottom: 18px;
	}

	.select-card .select-card-content .select-btn {
		font-size: 18px;
        line-height: 20px;
        padding: 14px 18px;
	}
	/*-_-_Card_CSS_End_-_-*/

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.trip-summary-form .cards-wrapper {
		margin-bottom: 30px;
	}

	.place-detail-wrap {
		padding: 26px 34px;
		margin-bottom: 40px;
		border-radius: 14px;
	}

	.city-data-wrap .city-img {
		width: 95px;
	}

	.city-data-wrap .city-img img {
		border-radius: 8px;
	}

	.city-data-wrap .city-data.carousel-item {
		padding-left: 18px;
	}

	.city-data-wrap .city-data .city-name {
		font-size: 20px;
	}

	.city-data-wrap .date-wrap {
		padding-left: 26px;
		margin-left: 26px;
		border-left: 1px solid #A9C3C3;
	}

	.city-data-wrap .date-wrap .day-no {
		font-size: 12px;
		margin-bottom: 12px;
	}

	.city-data-wrap .date-wrap p {
		font-size: 16px;
		line-height: 24px;
	}

	.total_budget p {
		font-size: 15px;
	}

	.total_budget h5 {
		font-size: 32px;
	}

	.cards-wrapper .sub-heading {
		margin-bottom: 19px;
	}

	.cards-wrapper .sub-heading p {
		font-size: 26px;
	}

	.cards-wrapper .swiper-container .swiper-slide {
		padding: 4px 8px 14px;
	}

	.trip-card-wrap {
		border-radius: 18px;
		box-shadow: 0 2px 14px 0 rgba(17, 34, 17, 0.05);
	}

	.trip-card-wrap .card-img {
		border-radius: 18px 18px 0 0;
	}

	.trip-card-wrap .card-img img {
		aspect-ratio: 517 / 298.5;
	}

	.trip-card-wrap .card-img .card-tag {
		top: 17px;
		left: 22px;
		padding: 3px 8px;
		font-size: 14px;
		line-height: 1.5;
		border-radius: 4.5px;
	}

	.trip-card-wrap .card-img .accomodation-info,
	.trip-card-wrap .card-img .activity-info,
	.trip-card-wrap .card-img .food-info,
	.trip-card-wrap .card-img .transport-info {
		top: 17px;
		right: 22px;
		padding: 7px 8px;
		border-radius: 7px;	
	}

	.trip-card-wrap .card-img .accomodation-info i,
	.trip-card-wrap .card-img .activity-info i,
	.trip-card-wrap .card-img .food-info i,
	.trip-card-wrap .card-img .transport-info i {
		font-size: 15px;
	}

	.trip-card-wrap .card-content {
		padding: 20px;
		border-radius: 0 0 18px 18px;
	}

	.card-content .card-inner {
		column-gap: 18px;
		margin-bottom: 20px;
	}

	.card-content .card-inner h5 {
		font-size: 20px;
		min-height: 50px;
		margin-bottom: 15px;
	}

	.card-inner .card-price h6 {
		font-size: 20px;
		line-height: 1.3;  
	}

	.card-content .reviews-wrap .rating {
		min-width: 38px;
		font-size: 11px;
		line-height: 14px;
		padding: 0.75px;
		border-radius: 3.5px;
		height: 28px;
	}

	.card-content .reviews-wrap p {
		font-size: 14px;
		line-height: 20px;
		padding-left: 4px;
		padding-top: 4px;
		width: calc(100% - 38px);
	}

	.card-content .extra-list {
		min-height: 22px;
		margin-bottom: 20px;
	}

	.card-content .extra-list li {
		font-size: 14px;
		line-height: 22px;
		letter-spacing: 0.25px;
		width: calc(50% - 5px);
	}

	.card-content .extra-list li img {
		width: 22px;
		height: 22px;
		margin-right: 7px;
	}

	.card-content hr {
		margin: 0 0 20px;
	}

	.card-content .insert-cost {
		margin-bottom: 20px;
	}

	.card-content .insert-cost h6 {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.25px;
	}

	.card-content .insert-cost input {
		font-size: 16px;
		line-height: 1.5;
		padding: 0 15px;
		height: 48px;
	}

	.card-content  a.addTotrip,
	.card-content  a.addTotrip#btPad {
		padding: 12px 15px;
		font-size: 14px;
		line-height: 20px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		font-size: 40px;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/
	
	/*-_-_Book-Page_CSS_Start_-_-*/
	.form-book-wrap.form-sec-wrap {
		padding: 58px 0;
	}

	.book-row {
		margin: 0 -8px;
		row-gap: 44px;
	}

	.book-row .book-col {
		padding: 0 8px;
	}

	.book-swiper-wrap {
		margin-bottom: 44px;
	}

	.book-swiper-wrap .swiper-slide {
		padding: 0px 0px;
	}

	.book-swiper-wrap .swiper-slide button {
		font-size: 16px;
		line-height: 39px;
		border-bottom: 4.5px solid transparent;
	}

	.book-swiper-wrap .swiper_prev {
		left: -45px;
	}
		
	.book-swiper-wrap .swiper_next {
		right: -45px;
	}

	.book-swiper-wrap .swiper_prev i,
	.book-swiper-wrap .swiper_next i {
		font-size: 30px;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.popular-trips.form-sec-wrap {
		padding: 60px 0 110px;
	}

	.popular-trips.form-sec-wrap h1 {
		margin-bottom: 30px;
	}

	.tc-wrap {
		margin-bottom: 38px;
	}

	.tc-wrap > h4 {
		margin-bottom: 22px;
	}

	.tc-wrap > h4 .tc-edit  {
		width: 27.5px;
		height: 27.5px;
		margin-left: 17px;
	}

	
	.trip-card {
		padding: 24px 30px;
		column-gap: 22px;
		row-gap: 22px;
		border-radius: 22px;
	}

	.trip-card .tc-content.tc-name img {
		width: 70px;
		height: 70px;
	}

	.trip-card .tc-item .tc-content {
		padding-right: 20px;
		margin-right: 19px;
	}

	.trip-card .tc-content.tc-name span {
		font-size: 17px;
	}

	.trip-card .tc-content p {
		font-size: 18px;
	}

	.trip-card .tc-content > span {
		font-size: 15px;
	}	

	.trip-card .tc-content h5 {
		font-size: 22px;
	}

	.trip-card .tc-content .tc-inner {
		padding-left: 16px;
	}

	.tc-btn-wrap {
		column-gap: 12px;
	}

	.tc-btn-wrap .view-detail-btn,
	.tc-btn-wrap .delete-btn {
		padding-left: 12px;
		padding-right: 12px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.my-trip-plan-wrap .my-trip-plan-row {
		margin-bottom: 44px;
	}

	.my-trip-plan-wrap .my-trip-plan-btn {
		gap: 20px;
	}

	.total-budget h5 {
		font-size: 23px;
		max-width: 186px;
		margin-right: 15px;
	}

	.total-budget .total-price {
		font-size: 19px;
	} 

	.my-trip-plan-wrap .mytrip-plan-heading-wrap {
		border-radius: 14px;
		padding: 20px 0;
		margin-bottom: 44px;
	}

	.my-trip-plan-wrap .mytrip-plan-heading-wrap::before {
		width: 4px;
		height: calc(100% - 40px);
	}

	.my-trip-plan-wrap .mytrip-plan-heading-wrap::after {
		width: 4px;
		height: calc(100% - 40px);
	}

	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		font-size: 40px;
		line-height: 1;
	}

	.mytrip-plan-heading-wrap .swiper-button-prev,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
		left: -40px;
	}

	.mytrip-plan-heading-wrap .swiper-button-next,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
		right: -40px;
	}

	.mytrip-plan-heading .swiper-slide {
		border-width: 1.8px;
	}

	.mytrip-plan-heading .swiper-slide h5 {
		font-size: 23px;
		margin-bottom: 11px;
	}

	.mytrip-plan-heading .swiper-slide p {
		font-size: 16px;
	}

	.mytrip-plan.swiper-container {
		width: calc(100% + 20px);
		margin: 0 -10px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
		margin-bottom: 44px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
		margin-bottom: 16px;
	}

	.my-trip-plan-wrap .mytrip-plan .swiper-slide {
		padding: 0 10px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Detail-Page_CSS_Start_-_-*/
	.detail-wrap .detail-content {
		padding: 50px 0 110px;
	}

	.detail-content .detail-inner-wrap {
		gap: 18px;
		margin-bottom: 22px;
	}

	.detail-inner-wrap .detail-inner p {
		font-size: 14px;
		line-height: 18px;
	}

	.detail-inner-wrap .detail-inner p i {
		margin-right: 5px;
	}

	.detail-inner .reviews-wrap p {
		font-size: 15px;
		line-height: 1.25;
		padding-top: 6px;
		width: calc(100% - 40px);
	}

	.detail-inner-wrap .card-price h6 {
		font-size: 28px;
		line-height: 1.25;
	}

	.detail-inner-wrap .card-price h6 span {
		font-size: 16px;
	}

	.detail-inner-wrap .card-price .share-btn {
		width: 44px;
		height: 44px;
	}

	.card-price .share-btn i {
		font-size: 15px;
	}

	.gallery-wrap {
		margin-bottom: 44px;
	}

	.gallery-wrap a:nth-child(5)::after {
		right: 16px;
		bottom: 16px;
		font-size: 14px;
		line-height: 44px;
		padding: 0 16px;
	}

	.detail-row .detail-content-wrap {
		width: calc(100% - 480px);
		padding-right: 22px;
	}

	.detail-content-wrap .overview-wrap h4,
	.detail-content-wrap .available-rooms-wrap h4, 
	.detail-content-wrap .more-info-wrap h4,
	.detail-content-wrap .reviews-wrap h4 {
		font-size: 23px;
		margin-bottom: 16px;
	}

	.overview-wrap p {
		font-size: 17px;
		margin-bottom: 19px;
	}

	.overview-wrap ul,
	.overview-wrap ol {
		margin-bottom: 19px;
	}

	.overview-wrap ul li,
	.overview-wrap ol li {
		font-size: 17px;
	}

	.available-rooms-wrap ul li {
		padding: 16px 0;
	}

	.available-rooms-wrap ul li .room-des p {
		width: calc(100% - 48px);
		font-size: 17px;
	}

	.available-rooms-wrap ul li h6 {
		font-size: 23px;
		line-height: 2;
	}

	.more-info-accordion .accordion-item {
		margin-bottom: 16px;
		border-radius: 10px;
	}

	.more-info-accordion .accordion-button {
		font-size: 19px;
		line-height: 1.25;
		padding: 30px 24px;
	}

	.more-info-accordion .accordion-button::after {
		width: 25px;
		height: 25px;
	}

	.more-info-accordion .accordion-button:not(.collapsed) {
		font-size: 22px;
		padding: 20px 24px 12px;
	}

	.more-info-accordion .accordion-body {
		padding: 0 24px 16px;
		border-radius: 0 0 10px 10px;
	}

	.more-info-accordion .accordion-body ol li,
	.more-info-accordion .accordion-body ul li,
	.more-info-accordion .accordion-body p {
		font-size: 18px;
		line-height: 1.5;
	}

	.reviews-wrap .review-rating {
		padding-bottom: 22px;
	}

	.reviews-wrap .review-rating h2 {
		font-size: 42px;
	}

	.review-rating .review-by p {
		font-size: 22px;
		line-height: 1.5;
		margin-bottom: 8px;
	}

	.review-rating .review-by span {
		font-size: 15px;
	}

	.detail-row .booking-form-wrap {
		padding-top: 45px;
		width: 480px;
	}

	.booking-request-form {
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
	}

	.booking-request-form h3 {
		font-size: 30px;
		padding: 8px 0;
		margin-bottom: 22px;
	}

	.booking-request-form .form-row {
		margin: 0 -10px 30px;
	}

	.booking-request-form .form-row .col-6,
	.booking-request-form .form-row .col-12 {
		padding: 0 10px;
	}

	.booking-request-form .form-row .form-group {
		margin-bottom: 22px;
	}

	.booking-request-form button {
		height: 46px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/
		
	/*-_-_Calculate-Fare_CSS_Start_-_-*/

	.cal-fare-dropdown .dropdown-toggle {
		padding: 7.5px 26px;
	}

	.cal-fare-dropdown .dropdown-menu {
		padding: 18px;
		border-radius: 10px;
		width: 320px;
	}

	.cal-fare-dropdown .dropdown-menu .form-group {
		margin-bottom: 18px;
	}

	.cal-fare-dropdown .dropdown-menu select {
		height: 40px;
	}

	.cal-fare-dropdown .dropdown-menu button {
		padding: 10px 15px;
        font-size: 14px;
        line-height: 20px;
		border-radius: 6px;
	}

	.calculated-row {
		margin: -5px -6px 20px;
	}

	.calculated-row .calculated-col {
		width: 50%;
	}

	.calculated-row .calculated-col label {
		font-size: 16px;
		margin-bottom: 7px;
	}

	.calculated-row .calculated-col input {
		height: 44px;
	}
	/*-_-_Calculate-Fare_CSS_End_-_-*/
}

@media only screen and (max-width: 1399px) {

	/*-_-_Header_CSS_Start_-_-*/
	#header .navbar {
		padding: 20px 0;
	}

	#header .navbar .logo {
		max-width: 210px;
		width: 100%;
		margin-right: 15px;
	}

	.navbar-collapse .navbar-nav {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-nav>li {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link {
		font-size: 17px;
		line-height: 20px;
		padding: 13px 0;
		letter-spacing: 0.25px;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link i {
		font-size: 14px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu {
		padding: 10px;
		min-width: 200px;
		border-radius: 8px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu li a {
		font-size: 17px;
		line-height: 1.5;
		padding: 4px 10px;
	}

	.navbar-collapse .navbar-right>li {
		margin-right: 14px;
	}

	.navbar-collapse .navbar-right>li:first-child {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-right>li>a.login-modal-link,
	.navbar-right .currency-dropdown .show-currency {
		font-size: 17px;
		line-height: 20px;
		letter-spacing: 0.25px;
		padding: 13px 0 !important;
	}

	.navbar-right .currency-dropdown .show-currency i {
		font-size: 14px;
	}

	.navbar-right .currency-dropdown .dropdown-menu {
		padding: 10px 0;
		min-width: 160px;
		border-radius: 8px;
	}

	.navbar-right .currency-dropdown .dropdown-menu li a {
		font-size: 14px;
		padding: 4px 20px;
	}

	.navbar-collapse .navbar-right>li .sign-out,
	.navbar-collapse .navbar-right>li .sign-up-modal-link {
		font-size: 17px;
		line-height: 20px;
		padding: 12px 22px;
		letter-spacing: 0.25px;
	}

	/*-_-_Header_CSS_End_-_-*/

	/*-_-_Banner_CSS_Start_-_-*/
	.banner {
		padding: 220px 0 140px;
	}

	.banner-row .banner-content-col {
		width: calc(100% - 450px);
		max-width: 640px;
		padding-top: 70px;
	}

	.banner .banner-content-col h1 {
		margin-bottom: 20.5px;
	}

	.banner-content-col p {
		font-size: 22px;
		line-height: 1.5;
	}

	.banner-row .banner-form-col {
		width: 450px;
	}

	.banner .trip-form {
		padding: 33.5px 30px;
		border-radius: 20px;
	}

	.trip-form h3 {
		font-size: 28px;
		margin-bottom: 28px;
	}

	.trip-form .form-group {
		margin-bottom: 28px;
	}

	.trip-form input {
		font-size: 17px;
		line-height: 1.5;
		height: 48px;
		padding: 0 16px;
	}

	.trip-form .travL .txtL {
		font-size: 17px;
		line-height: 46px;
		letter-spacing: 0.5px;
		height: 48px;
		padding: 0 16px;
	}

	.trip-form .travlNo {
		padding: 10px 12px;
	}

	.trip-form span.tb {
		font-size: 14px;
		padding-right: 14px;
	}

	.trip-form span.bt {
		font-size: 15px;
	}

	.trip-form .value-button {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.trip-form input#number {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.trip-form a.addPass {
		padding: 9px 18px;
		font-size: 15px;
		line-height: 18px;
		border-radius: 5px;
	}

	.trip-form .next-trip-btn {
		font-size: 17px;
		line-height: 20px;
		letter-spacing: 0.5px;
		padding: 18px 20px;
	}

	/*-_-_Banner_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.content h1,
	.banner h1 {
		font-size: 42px;
	}

	.content h2 {
		font-size: 38px;
	}

	.content h3 {
		font-size: 24px;
	}

	.content h4 {
		font-size: 20px;
	}

	.why-use-wrap {
		padding: 100px 0 50px;
	}

	.why-use-content>h2 {
		margin: 0 0 16px;
	}

	.why-use-content>p {
		font-size: 17px;
		max-width: 660px;
		margin: 0 auto 32px;
	}

	.why-use-row {
		margin: 0 -10px;
		row-gap: 65px;
	}

	.why-use-row .why-use-col {
		width: 33.33%;
		padding: 0 10px;
	}

	.why-use-inner {
		padding: 12px 0;
	}

	.why-use-inner .why-use-icon {
		width: 82px;
		height: 82px;
		margin: 0 auto 32px;
	}

	.why-use-inner .why-use-icon img {
		width: 32px;
		height: 32px;
	}

	.why-use-inner h4 {
		margin-bottom: 15px;
	}

	.why-use-inner p {
		font-size: 20px;
		line-height: 1.5;
	}

	.how-works-wrap {
		padding: 50px 0 100px;
	}

	.how-works-content h2 {
		margin: 0 0 15px;
	}

	.how-works-content p {
		font-size: 17px;
		line-height: 1.5;
		margin-bottom: 32px;
	}

	.how-works-content iframe {
		border-radius: 22px;
		aspect-ratio: 1600 / 900;
	}

	.testimonials-content {
		padding: 100px 0;
		max-width: 1040px;
	}

	.testimonials-content h6 {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 3px;
	}

	.testimonials-content h3 {
		margin-bottom: 48px;
	}

	.testimonial-slider {
		max-width: 720px;
		padding-bottom: 60px;
	}

	.testimonial-content .rating {
		gap: 10px;
		margin-bottom: 30px;
	}

	.testimonial-content .rating ion-icon {
		font-size: 20px;
	}

	.testimonial-content p {
		font-size: 20px;
		line-height: 1.75;
	}

	.testimonial-content span {
		font-size: 17px;
		line-height: 1.5;
		margin-top: 10px;
	}

	.testimonial-slider .slick-arrow {
		width: 35px;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: -140px;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: -140px;
	}

	.popular-wrap {
		padding: 100px 0 50px;
	}

	.popular-wrap .popular-content>h2 {
		max-width: 620px;
		margin: 0 auto 15px;
	}

	.popular-wrap .popular-content>p {
		font-size: 17px;
		line-height: 1.5;
		max-width: 620px;
		margin: 0 auto 32px;
	}

	.popular-slider {
		margin: 0 auto;
		max-width: 1050px;
	}

	.popular-slider .slick-arrow {
		width: 24px;
	}

	.popular-slider .slick-arrow.slick-prev {
		left: -35px;
	}

	.popular-slider .slick-arrow.slick-next {
		right: -35px;
	}

	.popular-slide {
		margin: 0 10px;
		border-radius: 20px;
	}

	.popular-slide>img {
		aspect-ratio: 788 / 739;
	}

	.popular-slide .popular-inner {
		padding: 0 25px 30px;
		min-height: 300px;
	}

	.popular-slide .popular-inner h2 {
		font-size: 35px;
		max-width: 100%;
		margin: 0 auto 10px;
	}

	.popular-slide .popular-inner p {
		font-size: 18px;
		max-width: 100%;
		line-height: 1.2;
		margin: 0 auto 20px;
	}

	.popular-wrap .popular-content a {
		font-size: 16px;
		line-height: 1.25;
		padding: 15px 20px;
	}

	.popular-wrap .popular-content a i {
		font-size: 16px;
		margin-right: 7px;
	}

	.newsletter-wrap {
		padding: 50px 0 100px;
	}

	.newsletter-wrap .newsletter-row {
		border-radius: 30px;
	}

	.newsletter-row .newsletter-img {
		width: 43%;
		font-size: 0;
	}

	.newsletter-row .newsletter-content {
		width: 57%;
		padding: 30px 38px;
	}

	.newsletter-content .newsletter-inner {
		max-width: 535px;
	}

	.newsletter-content .newsletter-inner h3 {
		margin-bottom: 38px;
	}

	.newsletter-content .newsletter-inner p {
		font-size: 17px;
		line-height: 1.5;
		max-width: 100%;
		margin: 0 auto 38px;
	}

	.newsletter-content .newsletter-inner input {
		height: 65px;
		border-radius: 50px;
		padding: 0 194px 0 24px;
		font-size: 17px;
	}

	.newsletter-content .newsletter-inner button {
		font-size: 20px;
		line-height: 52px;
		border-radius: 35px;
		padding: 0 35px;
		right: 11px;
	}

	.newsletter-content .newsletter-inner .alert {
		margin: 16px 0 0;
	}

	/*-_-_Content_CSS_End_-_-*/

	/*-_-_Footer_CSS_Start_-_-*/
	.footer {
		padding: 180px 0 0;
	}

	.footer::before {
		top: -2px;
		width: 100%;
		height: 160px;
	}

	.footer .footer-top {
		padding-bottom: 24px;
	}

	.footer-top .footer-logo {
		max-width: 210px;
		margin: 0 auto 26px;
	}

	.footer-top .social-links {
		margin-bottom: 20px;
	}

	.footer-top .social-links li {
		margin-right: 20px;
	}

	.footer-top .social-links li a {
		width: 40px;
		height: 40px;
		border-width: 2.1px;
	}

	.footer-top .social-links li a i {
		font-size: 18px;
	}

	.footer-top .footer-links li {
		margin-right: 20px;
	}

	.footer-top .footer-links li a {
		font-size: 17px;
	}

	.footer .copyright p {
		padding: 15px 0 22px;
		font-size: 15px;
		line-height: 1.5;
	}

	/*-_-_Footer_CSS_End_-_-*/

	/*-_-_Pick-City_CSS_Start_-_-*/
	.form-sec-wrap {
		padding: 60px 0 80px;
	}

	.form-sec-wrap h1 {
		font-size: 38px;
		margin-bottom: 40px;
	}

	.form-top-bar {
		margin-bottom: 68px;
	}

	.form-top-bar li {
		min-width: 210px;
	}

	.form-top-bar li::before {
		height: 2px;
		top: 21.5px;
	}

	.form-top-bar li .form-count {
		font-size: 19px;
		width: 45px;
		height: 45px;
		margin: 0 auto 22px;
	}

	.form-top-bar li .form-count i {
		font-size: 24px;
	}

	.form-top-bar li p {
		font-size: 16px;
	}

	.sticy_pos {
		padding: 16px 0 !important;
		gap: 16px;
	}

	.sticy_pos .btn-prev,
	.sticy_pos .btn-next,
	.my-trip-plan-btn .btn-prev,
	.my-trip-plan-btn .btn-next {
		font-size: 18px;
		font-weight: 400;
		min-width: 210px;
		border-radius: 5px;
		line-height: 46px;
	}

	.destination-wrap {
		margin-bottom: 52px;
	}

	.destination-wrap span {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.destination-wrap h3 {
		font-size: 30px;
		margin-bottom: 4px;
	}

	.destination-wrap p {
		font-size: 17px;
	}

	#pick-up-city-form .row {
		row-gap: 32px;
		margin: 0 -10px 20px;
	}
	
	#pick-up-city-form .row > div {
		padding: 0 10px;
	}

	.select-city .pick-city-box {
		border-radius: 15px !important;
	}

	.select-city .pick-city-box img {
		aspect-ratio: 518 / 497;
	}

	.select-city .pick-city-box .select-city-content { 	
		padding: 24px;
	}

	.select-city .pick-city-box h4 {
		font-size: 24px;
	}

	.select-city .pick-city-box p {
		font-size: 14px;
		margin-bottom: 17px;
	}

	.select-city .pick-city-box .select-city-btn {
		font-size: 17px;
		line-height: 20px;
		padding: 12px 16px;
		border-radius: 5px;
	}

	.select-city .pick-city-box .info-cities {
		font-size: 16px;
		line-height: 20px;
	}

	.select-city .pick-city-box:hover .info-cities {
		margin-top: 16px;
	}

	.select-city .number {
		padding: 13px;
		border-radius: 0px 0px 15px 15px;
	}

	/* .select-city .citiesS.showCount .pick-city-box { */
	.select-city .pick-city-box.selected-label {
		border-radius: 15px 15px 0px 0px !important;
	}

	.number .minus-day,
	.number .add-day {
		font-size: 26px;
		width: 40px;
		height: 40px;
	}

	.number .pm {
		height: 40px;
		width: calc(100% - 90px);
		font-size: 18px;
	}

	.number span.oneN,
	.number span.twoN {
		right: 90px;
        font-size: 17px;
	}
	/*-_-_Pick-City_CSS_End_-_-*/

	/*-_-_Card_CSS_Start_-_-*/
	.form-wrap .row {
		row-gap: 32px;
		margin: 0 -10px 24px;
	}

	.form-wrap .row > div {
		padding: 0 10px;
	}

	.select-card .select-card-box {
		border-radius: 15px;
	}

	.select-card .select-card-content {
		padding: 24px;
	}

	.select-card .select-card-content h4 {
		font-size: 24px;
	}

	.select-card .select-card-content p {
		font-size: 14px;
		margin-bottom: 17px;
	}

	.select-card .select-card-content .select-btn {
		font-size: 17px;
        line-height: 20px;
        padding: 12px 16px;
	}
	/*-_-_Card_CSS_End_-_-*/

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.trip-summary-form .cards-wrapper {
		margin-bottom: 28px;
	}

	.total-day-slider.swiper-container {
		margin-bottom: 36px;
	}

	.place-detail-wrap {
		padding: 20px 28px;
		margin-bottom: 40px;
		border-radius: 12px;
	}

	.city-data-wrap .city-img {
		width: 90px;
	}

	.city-data-wrap .city-img img {
		border-radius: 8px;
	}

	.city-data-wrap .city-data.carousel-item {
		padding-left: 16px;
	}

	.city-data-wrap .city-data .city-name {
		font-size: 18px;
	}

	.city-data-wrap .date-wrap {
		padding-left: 20px;
		margin-left: 20px;
	}

	.city-data-wrap .date-wrap p {
		font-size: 15px;
		line-height: 22px;
	}

	.total_budget p {
		font-size: 14px;
	}

	.total_budget h5 {
		font-size: 28px;
	}

	.cards-wrapper .sub-heading {
		margin-bottom: 17px;
	}

	.cards-wrapper .sub-heading p {
		font-size: 22px;
	}

	.cards-wrapper .swiper-container .swiper-slide {
		padding: 4px 10px 12px;
	}

	.trip-card-wrap {
		border-radius: 16px;
		box-shadow: 0 2px 12px 0 rgba(17, 34, 17, 0.05);
	}

	.trip-card-wrap .card-img {
		border-radius: 16px 16px 0 0; 
	}

	.trip-card-wrap .card-img img {
		aspect-ratio: 517 / 298.5;
	}

	.trip-card-wrap .card-img .card-tag {
		top: 15px;
		left: 20px;
		padding: 3px 8px;
		font-size: 12px;
		line-height: 1.5;
		border-radius: 4px;
	}

	.trip-card-wrap .card-img .accomodation-info,
	.trip-card-wrap .card-img .activity-info,
	.trip-card-wrap .card-img .food-info,
	.trip-card-wrap .card-img .transport-info {
		top: 15px;
		right: 20px;
		padding: 6px 7px;
		border-radius: 6px;	
	}

	.trip-card-wrap .card-img .accomodation-info i,
	.trip-card-wrap .card-img .activity-info i,
	.trip-card-wrap .card-img .food-info i,
	.trip-card-wrap .card-img .transport-info i {
		font-size: 13px;
	}

	.trip-card-wrap .card-content {
		padding: 18px;
		border-radius: 0 0 16px 16px; 
	}

	.card-content .card-inner {
		column-gap: 12px;
		margin-bottom: 18px;
	}

	.card-content .card-inner h5 {
		font-size: 20px;
		min-height: 45px;
		margin-bottom: 14px;
	}

	.card-inner .card-price h6 {
		font-size: 18px;
		line-height: 1.3;  
	}

	.card-content .reviews-wrap .rating {
		min-width: 34px;
		font-size: 10px;
		line-height: 14px;
		padding: 0.75px;
		border-radius: 3px;
		height: 26px;
	}

	.card-content .reviews-wrap p {
		font-size: 13px;
		line-height: 19px;
		padding-left: 4px;
		padding-top: 4px;
		width: calc(100% - 34px);
	}

	.card-content .extra-list {
		min-height: 20px;
		margin-bottom: 18px;
	}

	.card-content .extra-list li {
		font-size: 13px;
		line-height: 20px;
		letter-spacing: 0.25px;
		width: calc(50% - 5px);
	}

	.card-content .extra-list li img {
		width: 20px;
		height: 20px;
		margin-right: 6px;
	}

	.card-content hr {
		margin: 0 0 18px;
	}

	.card-content .insert-cost {
		margin-bottom: 18px;
	}

	.card-content .insert-cost h6 {
		font-size: 13px;
		line-height: 1.5;
		letter-spacing: 0.25px;
	}

	.card-content .insert-cost input {
		font-size: 14px;
		line-height: 1.5;
		padding: 0 15px;
		height: 46px;
	}

	.card-content  a.addTotrip,
	.card-content  a.addTotrip#btPad {
		padding: 12px 15px;
        font-size: 13px;
        line-height: 18px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		font-size: 35px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-rtl .swiper-button-next {
		left: -35px;
	}

	.cards-wrapper .swiper-button-next, 
	.cards-wrapper .swiper-rtl .swiper-button-prev {
		right: -35px;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/

	/*-_-_Book-Page_CSS_Start_-_-*/
	.form-book-wrap.form-sec-wrap {
		padding: 56px 0;
	}

	.book-row {
		margin: 0 -10px;
		row-gap: 40px;
	}

	.book-row .book-col {
		padding: 0 10px;
	}

	.book-swiper-wrap {
		margin-bottom: 40px;
	}

	.book-swiper-wrap .swiper-slide {
		padding: 9px 22px;
	}

	.book-swiper-wrap .swiper-slide button {
		font-size: 17px;
		line-height: 2;
		padding: 17px 0 12px;
		border-bottom: 4px solid transparent;
	}

	.book-swiper-wrap .swiper_prev {
		left: -40px;
	}
		
	.book-swiper-wrap .swiper_next {
		right: -40px;
	}

	.book-swiper-wrap .swiper_prev i,
	.book-swiper-wrap .swiper_next i {
		font-size: 28px;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.popular-trips.form-sec-wrap {
		padding: 60px 0 95px;
	}

	.popular-trips.form-sec-wrap h1 {
		margin-bottom: 30px;
	}

	.tc-wrap {
		margin-bottom: 36px;
	}

	.tc-wrap > h4 {
		margin-bottom: 20px;
	}

	.tc-wrap > h4 .tc-edit  {
		width: 25px;
		height: 25px;
		margin-left: 15px;
	}

	.trip-card {
		column-gap: 20px;
		row-gap: 20px;
		border-radius: 20px;
	}

	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.my-trip-plan-wrap .my-trip-plan-row {
		margin-bottom: 40px;
	}

	.my-trip-plan-wrap .my-trip-plan-btn {
		gap: 16px;
	}

	.total-budget h5 {
		font-size: 22px;
		max-width: 176px;
		margin-right: 14px;
	}

	.total-budget .total-price {
		font-size: 18px;
	} 

	.my-trip-plan-wrap .mytrip-plan-heading-wrap {
		border-radius: 12px;
		padding: 19px 0;
		margin-bottom: 40px;
	}

	.my-trip-plan-wrap .mytrip-plan-heading-wrap::before,
	.my-trip-plan-wrap .mytrip-plan-heading-wrap::after {
		width: 3.5px;
		height: calc(100% - 38px);
	}

	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		font-size: 35px;
	}

	.mytrip-plan-heading-wrap .swiper-button-prev,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
		left: -35px;
	}

	.mytrip-plan-heading-wrap .swiper-button-next,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
		right: -35px;
	}

	.mytrip-plan-heading .swiper-slide {
		border-width: 1.6px;
	}

	.mytrip-plan-heading .swiper-slide h5 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.mytrip-plan-heading .swiper-slide p {
		font-size: 16px;
	}

	.mytrip-plan.swiper-container {
		width: calc(100% + 20px);
		margin: 0 -10px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
		margin-bottom: 40px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
		margin-bottom: 14px;
	}

	.my-trip-plan-wrap .mytrip-plan .swiper-slide {
		padding: 0 10px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Detail-Page_CSS_Start_-_-*/
	.detail-wrap .detail-content {
		padding: 50px 0 95px;
	}

	.detail-content .detail-inner-wrap {
		gap: 16px;
		margin-bottom: 20px;
	}

	.detail-inner-wrap .detail-inner p {
		font-size: 13px;
		line-height: 17px;
	}

	.detail-inner-wrap .detail-inner p i {
		margin-right: 4px;
	}

	.detail-inner .reviews-wrap p {
		font-size: 14px;
		line-height: 20px;
		padding-top: 6px;
	}

	.detail-inner-wrap .card-price h6 {
		font-size: 24px;
		line-height: 1.25;
	}

	.detail-inner-wrap .card-price .share-btn {
		width: 40px;
		height: 40px;
	}

	.card-price .share-btn i {
		font-size: 14px;
	}

	.gallery-wrap {
		margin-bottom: 40px;
	}

	.gallery-wrap a:nth-child(5)::after {
		right: 16px;
		bottom: 16px;
		font-size: 13px;
		line-height: 40px;
		padding: 0 14px;
	}

	.detail-row .detail-content-wrap {
		width: calc(100% - 420px);
		padding-right: 20px;
	}

	.detail-content-wrap .overview-wrap h4,
	.detail-content-wrap .available-rooms-wrap h4, 
	.detail-content-wrap .more-info-wrap h4,
	.detail-content-wrap .reviews-wrap h4 {
		font-size: 22px;
	}

	.overview-wrap p {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.overview-wrap ul,
	.overview-wrap ol {
		margin-bottom: 18px;
	}

	.overview-wrap ul li,
	.overview-wrap ol li {
		font-size: 16px;
	}

	.available-rooms-wrap ul li .room-des p {
		font-size: 16px;
	}

	.available-rooms-wrap ul li h6 {
		font-size: 22px;
		line-height: 1.75;
	}

	.more-info-accordion .accordion-item {
		margin-bottom: 16px;
		border-radius: 10px;
	}

	.more-info-accordion .accordion-button {
		font-size: 18px;
		line-height: 1.25;
		padding: 24px 20px;
	}

	.more-info-accordion .accordion-button::after {
		width: 24px;
		height: 24px;
	}

	.more-info-accordion .accordion-button:not(.collapsed) {
		font-size: 20px;
		padding: 18px 20px 12px;
	}

	.more-info-accordion .accordion-body {
		padding: 0 20px 16px;
		border-radius: 0 0 10px 10px;
	}

	.more-info-accordion .accordion-body ol li,
	.more-info-accordion .accordion-body ul li,
	.more-info-accordion .accordion-body p {
		font-size: 17px;
		line-height: 1.5;
	}

	.reviews-wrap .review-rating {
		padding-bottom: 20px;
	}

	.reviews-wrap .review-rating h2 {
		font-size: 36px;
	}

	.review-rating .review-by p {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 8px;
	}

	.review-rating .review-by span {
		font-size: 14px;
	}

	.detail-row .booking-form-wrap {
		padding-top: 43.5px;
		width: 420px;
	}

	.booking-request-form {
		padding: 18px;
	}

	.booking-request-form h3 {
		font-size: 28px;
		padding: 6px 0;
		margin-bottom: 20px;
	}

	.booking-request-form .form-row {
		margin: 0 -8px 26px;
	}

	.booking-request-form .form-row .col-6,
	.booking-request-form .form-row .col-12 {
		padding: 0 8px;
	}

	.booking-request-form .form-row .form-group {
		margin-bottom: 20px;
	}

	.booking-request-form button {
		height: 44px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/

	/*-_-_Calculate-Fare_CSS_Start_-_-*/

	.cal-fare-dropdown .dropdown-toggle {
		font-size: 11px;
		padding: 7px 22px;
	}

	.cal-fare-dropdown .dropdown-menu {
		padding: 16px;
		border-radius: 8px;
		inset: auto 0 100% auto !important
	}

	.cal-fare-dropdown .dropdown-menu .form-group {
		margin-bottom: 16px;
	}

	.cal-fare-dropdown .dropdown-menu select {
		height: 40px;
	}

	.cal-fare-dropdown .dropdown-menu button {
		padding: 12px 15px;
		font-size: 13px;
        line-height: 16px;
		border-radius: 4px;
	}

	.calculated-row {
		margin: -5px -6px 16px;
	}

	.calculated-row .calculated-col label {
		font-size: 14px;
		margin-bottom: 7.5px;
	}

	.calculated-row .calculated-col input {
		height: 42px;
	}
	/*-_-_Calculate-Fare_CSS_End_-_-*/
}

@media only screen and (max-width: 1199px) {

	/*-_-_Header_CSS_Start_-_-*/
	#header .navbar {
		padding: 15px 0;
	}

	#header .navbar .logo {
		max-width: 190px;
		width: 100%;
		margin-right: 15px;
	}

	.navbar-collapse .navbar-nav {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-nav>li {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link {
		font-size: 16px;
		line-height: 20px;
		padding: 12px 0;
		letter-spacing: 0;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link i {
		font-size: 14px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu {
		padding: 10px;
		min-width: 200px;
		border-radius: 8px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu li a {
		font-size: 16px;
		line-height: 1.5;
		padding: 4px 10px;
	}

	.navbar-collapse .navbar-right>li {
		margin-right: 14px;
	}

	.navbar-collapse .navbar-right>li:first-child {
		margin-right: 20px;
	}

	.navbar-collapse .navbar-right>li>a.login-modal-link,
	.navbar-right .currency-dropdown .show-currency {
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 0;
		padding: 12px 0 !important;
	}

	.navbar-right .currency-dropdown .show-currency i {
		font-size: 14px;
	}

	.navbar-right .currency-dropdown .dropdown-menu {
		padding: 10px 0;
		min-width: 160px;
		border-radius: 8px;
	}

	.navbar-right .currency-dropdown .dropdown-menu li a {
		font-size: 14px;
		padding: 4px 20px;
	}

	.navbar-collapse .navbar-right>li .sign-out,
	.navbar-collapse .navbar-right>li .sign-up-modal-link {
		font-size: 16px;
		line-height: 20px;
		padding: 12px 24px;
		letter-spacing: 0;
	}

	/*-_-_Header_CSS_End_-_-*/

	/*-_-_Banner_CSS_Start_-_-*/
	.banner {
		padding: 180px 0 100px;
	}

	.banner-row .banner-content-col {
		width: calc(100% - 380px);
		max-width: 530px;
		padding-top: 70px;
	}

	.banner .banner-content-col h1 {
		margin-bottom: 18px;
	}

	.banner-content-col p {
		font-size: 19px;
		line-height: 1.5;
	}

	.banner-row .banner-form-col {
		width: 380px;
	}

	.banner .trip-form {
		padding: 30px 25px;
		border-radius: 18px;
	}

	.trip-form h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.trip-form .form-group {
		margin-bottom: 24px;
	}

	.trip-form input {
		font-size: 16px;
		line-height: 1.5;
		height: 46px;
		padding: 0 16px;
	}

	.trip-form .travL .txtL {
		font-size: 16px;
		line-height: 44px;
		letter-spacing: 0.5px;
		height: 46px;
		padding: 0 16px;
	}

	.trip-form .travlNo {
		padding: 10px 12px;
	}

	.trip-form span.tb {
		font-size: 13px;
		padding-right: 14px;
	}

	.trip-form span.bt {
		font-size: 14px;
	}

	.trip-form .value-button {
		width: 34px;
		height: 34px;
		font-size: 14px;
	}

	.trip-form input#number {
		width: 34px;
		height: 34px;
		font-size: 14px;
	}

	.trip-form a.addPass {
		padding: 9px 18px;
		font-size: 14px;
		line-height: 16px;
		border-radius: 5px;
	}

	.trip-form .next-trip-btn {
		font-size: 16px;
		line-height: 18px;
		letter-spacing: 0.5px;
		padding: 16px 20px;
	}

	/*-_-_Banner_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.content h1,
	.banner h1 {
		font-size: 36px;
	}

	.content h2 {
		font-size: 32px;
	}

	.content h3 {
		font-size: 22px;
	}

	.content h4 {
		font-size: 18px;
	}

	.why-use-wrap {
		padding: 90px 0 45px;
	}

	.why-use-content>h2 {
		margin: 0 0 15px;
	}

	.why-use-content>p {
		font-size: 16px;
		max-width: 660px;
		margin: 0 auto 24px;
	}

	.why-use-row {
		margin: 0 -10px;
		row-gap: 45px;
	}

	.why-use-row .why-use-col {
		width: 33.33%;
		padding: 0 7.5px;
	}

	.why-use-inner {
		padding: 7.5px 0;
	}

	.why-use-inner .why-use-icon {
		width: 74px;
		height: 74px;
		margin: 0 auto 24px;
	}

	.why-use-inner .why-use-icon img {
		width: 28px;
		height: 28px;
	}

	.why-use-inner h4 {
		letter-spacing: 0;
		line-height: 1.4;
		margin-bottom: 14px;
	}

	.why-use-inner p {
		font-size: 18px;
		line-height: 1.4;
	}

	.how-works-wrap {
		padding: 45px 0 90px;
	}

	.how-works-content h2 {
		margin: 0 0 14px;
	}

	.how-works-content p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 28px;
	}

	.how-works-content iframe {
		border-radius: 18px;
	}

	.testimonials-content {
		padding: 90px 0;
		max-width: 800px;
	}

	.testimonials-content h6 {
		font-size: 15px;
		margin-bottom: 3px;
	}

	.testimonials-content h3 {
		margin-bottom: 40px;
	}

	.testimonial-slider {
		max-width: 640px;
		padding-bottom: 50px;
	}

	.testimonial-content .rating {
		gap: 8px;
		margin-bottom: 25px;
	}

	.testimonial-content .rating ion-icon {
		font-size: 18px;
	}

	.testimonial-content p {
		font-size: 18px;
		line-height: 1.75;
	}

	.testimonial-content span {
		font-size: 16px;
		line-height: 1.5;
		margin-top: 10px;
	}

	.testimonial-slider .slick-arrow {
		width: 30px;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: -120px;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: -120px;
	}

	.popular-wrap {
		padding: 90px 0 45px;
	}

	.popular-wrap .popular-content>h2 {
		max-width: 580px;
		margin: 0 auto 14px;
	}

	.popular-wrap .popular-content>p {
		font-size: 16px;
		line-height: 1.5;
		max-width: 580px;
		margin: 0 auto 28px;
	}

	.popular-slider {
		margin: 0 auto;
		max-width: 880px;
	}

	.popular-slider .slick-arrow {
		width: 22px;
	}

	.popular-slide {
		margin: 0 7.5px;
		border-radius: 18px;
	}

	.popular-slide>img {
		aspect-ratio: 788 / 739;
	}

	.popular-slide .popular-inner {
		padding: 0 22px 25px;
		min-height: 240px;
	}

	.popular-slide .popular-inner h2 {
		font-size: 28px;
		max-width: 100%;
		margin: 0 auto 10px;
	}

	.popular-slide .popular-inner p {
		font-size: 16px;
		max-width: 100%;
		line-height: 1.2;
		margin: 0 auto 20px;
	}

	.popular-wrap .popular-content a {
		font-size: 15px;
		line-height: 18px;
		padding: 14px 18px;
	}

	.popular-wrap .popular-content a i {
		font-size: 15px;
		margin-right: 7px;
	}

	.newsletter-wrap {
		padding: 45px 0 90px;
	}

	.newsletter-wrap .newsletter-row {
		border-radius: 24px;
	}

	.newsletter-row .newsletter-img {
		width: 43%;
		font-size: 0;
	}

	.newsletter-row .newsletter-content {
		width: 57%;
		padding: 30px 30px;
	}

	.newsletter-content .newsletter-inner {
		max-width: 100%;
	}

	.newsletter-content .newsletter-inner h3 {
		margin-bottom: 28px;
	}

	.newsletter-content .newsletter-inner p {
		font-size: 16px;
		line-height: 1.4;
		max-width: 100%;
		margin: 0 auto 28px;
	}

	.newsletter-content .newsletter-inner input {
		height: 60px;
		border-radius: 50px;
		padding: 0 160px 0 22px;
		font-size: 16px;
	}

	.newsletter-content .newsletter-inner button {
		font-size: 18px;
		line-height: 48px;
		border-radius: 35px;
		padding: 0 30px;
		right: 9px;
	}

	.newsletter-content .newsletter-inner .alert {
		margin: 15px 0 0;
	}

	/*-_-_Content_CSS_End_-_-*/

	/*-_-_Footer_CSS_Start_-_-*/
	.footer {
		padding: 130px 0 0;
	}

	.footer::before {
		top: -2px;
		width: 100%;
		height: 120px;
	}

	.footer .footer-top {
		padding-bottom: 22px;
	}

	.footer-top .footer-logo {
		max-width: 180px;
		margin: 0 auto 22px;
	}

	.footer-top .social-links {
		flex-direction: row;
		margin-bottom: 20px;
	}

	.footer-top .social-links li {
		margin-right: 18px;
	}

	.footer-top .social-links li a {
		width: 38px;
		height: 38px;
		border-width: 2px;
	}

	.footer-top .social-links li a i {
		font-size: 17px;
	}

	.footer-top .footer-links li {
		margin-right: 18px;
	}

	.footer-top .footer-links li a {
		font-size: 16px;
	}

	.footer .copyright p {
		padding: 14px 0 20px;
		font-size: 15px;
		line-height: 1.5;
	}

	/*-_-_Footer_CSS_End_-_-*/

	/*-_-_Pick-City_CSS_Start_-_-*/
	.form-sec-wrap {
		padding: 55px 0 65px;
	}

	.form-sec-wrap h1 {
		font-size: 32px;
		margin-bottom: 36px;
	}

	.form-top-bar {
		margin-bottom: 58px;
	}

	.form-top-bar li {
		min-width: 180px;
	}

	.form-top-bar li::before {
		height: 1.5px;
		top: 16.75px;
	}

	.form-top-bar li .form-count {
		font-size: 16px;
		width: 35px;
		height: 35px;
		margin: 0 auto 15px;
	}

	.form-top-bar li .form-count i {
		font-size: 20px;
	}

	.form-top-bar li p {
		font-size: 14px;
	}

	.sticy_pos {
		gap: 14px;
	}

	.sticy_pos .btn-prev,
	.sticy_pos .btn-next,
	.my-trip-plan-btn .btn-prev,
	.my-trip-plan-btn .btn-next {
		font-size: 17px;
        font-weight: 400;
        min-width: 200px;
        border-radius: 5px;
        line-height: 44px;
	}

	.destination-wrap {
		margin-bottom: 48px;
	}

	.destination-wrap span {
		font-size: 15px;
		margin-bottom: 4px;
	}

	.destination-wrap h3 {
		font-size: 26px;
		line-height: 1.5;
		margin-bottom: 4px;
	}

	.destination-wrap p {
		font-size: 16px;
	}

	#pick-up-city-form .row {
		row-gap: 28px;
		margin: 0 -8px 18px;
	}
	
	#pick-up-city-form .row > div {
		padding: 0 8px;
	}

	.select-city .pick-city-box {
		border-radius: 14px !important;
	}

	.select-city .pick-city-box img {
		aspect-ratio: 518 / 497;
	}

	.select-city .pick-city-box .select-city-content { 	
		padding: 21px;
	}

	.select-city .pick-city-box h4 {
		font-size: 22px;
	}

	.select-city .pick-city-box p {
		font-size: 13px;
		margin-bottom: 17px;
	}

	.select-city .pick-city-box .select-city-btn {
		font-size: 16px;
		line-height: 18px;
		padding: 12px 16px;
	}

	.select-city .pick-city-box .info-cities {
		font-size: 15px;
		line-height: 18px;
	}

	.select-city .pick-city-box:hover .info-cities {
		margin-top: 15px;
	}

	.select-city .number {
		padding: 12px;
		border-radius: 0px 0px 14px 14px;
	}

	/* .select-city .citiesS.showCount .pick-city-box { */
	.select-city .pick-city-box.selected-label {
		border-radius: 14px 14px 0px 0px !important;
	}

	.number .minus-day,
	.number .add-day {
		font-size: 22px;
		width: 38px;
		height: 38px;
	}

	.number .pm {
		height: 38px;
		width: calc(100% - 85px);
		font-size: 16px;
	}

	.number span.oneN,
	.number span.twoN {
		right: 105px;
        font-size: 16px;
	}
	/*-_-_Pick-City_CSS_End_-_-*/

	/*-_-_Card_CSS_Start_-_-*/
	.form-wrap .row {
		row-gap: 28px;
		margin: 0 -8px 18px;
	}

	.form-wrap .row > div {
		padding: 0 8px;
	}

	.select-card .select-card-box {
		border-radius: 14px;
		border-width: 4px;
	}

	.select-card .cardImg {
		aspect-ratio: 788 / 600;
		border-width: 4px;
	}

	.select-card .select-card-content {
		padding: 21px;
	}

	.select-card .select-card-content h4 {
		font-size: 22px;
	}

	.select-card .select-card-content p {
		font-size: 13px;
        margin-bottom: 17px;
	}

	.select-card .select-card-content .select-btn {
		font-size: 16px;
        line-height: 18px;
        padding: 12px 16px;
	}
	/*-_-_Card_CSS_End_-_-*/

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.trip-summary-form .cards-wrapper {
		margin-bottom: 26px;
	}

	.total-day-slider.swiper-container {
		margin-bottom: 32px;
	}

	.place-detail-wrap {
		padding: 20px 22px;
		margin-bottom: 40px;
		border-radius: 12px;
	}

	.city-data-wrap .city-img {
		width: 90px;
	}

	.city-data-wrap .city-img img {
		border-radius: 7px;
	}

	.city-data-wrap .city-data.carousel-item {
		padding-left: 15px;
	}

	.city-data-wrap .city-data .city-name {
		font-size: 16px;
	}

	.city-data-wrap .date-wrap {
		padding-left: 20px;
		margin-left: 20px;
	}

	.city-data-wrap .date-wrap p {
		font-size: 14px;
		line-height: 20px;
	}

	.total_budget p {
		font-size: 13px;
	}

	.total_budget h5 {
		font-size: 24px;
	}

	.cards-wrapper .sub-heading {
		margin-bottom: 15px;
	}

	.cards-wrapper .sub-heading p {
		font-size: 20px;
	}

	.cards-wrapper .swiper-container .swiper-slide {
		padding: 3px 7.5px 12px;
	}

	.trip-card-wrap {
		border-radius: 15px;
		box-shadow: 0 3px 11.8px 0 rgba(17, 34, 17, 0.05);
	}

	.trip-card-wrap .card-img {
		border-radius: 15px 15px 0 0;
	}

	.trip-card-wrap .card-img .card-tag {
		top: 12px;
		left: 18px;
		padding: 3px 6px;
		font-size: 12px;
		line-height: 1.5;
		border-radius: 4px;
	}

	.trip-card-wrap .card-img .accomodation-info,
	.trip-card-wrap .card-img .activity-info,
	.trip-card-wrap .card-img .food-info,
	.trip-card-wrap .card-img .transport-info {
		top: 12px;
		right: 18px;
		padding: 5.5px 6.5px;
		border-radius: 5px;	
	}

	.trip-card-wrap .card-img .accomodation-info i,
	.trip-card-wrap .card-img .activity-info i,
	.trip-card-wrap .card-img .food-info i,
	.trip-card-wrap .card-img .transport-info i {
		font-size: 12px;
	}

	.trip-card-wrap .card-content {
		border-radius: 0 0 15px 15px;
	}

	.card-content .card-inner h5 {
		font-size: 20px;
		min-height: 37.5px;
		margin-bottom: 12px;
	}

	.card-inner .card-price h6 {
		font-size: 16px;
		line-height: 1.3;  
	}

	.card-content .reviews-wrap .rating {
		min-width: 32px;
		font-size: 9px;
		line-height: 12px;
		padding: 0.75px;
		border-radius: 3px;
		height: 24px;
	}

	.card-content .reviews-wrap p {
		font-size: 12px;
		line-height: 1.5;
		padding-left: 4px;
		padding-top: 4px;
		width: calc(100% - 32px);
	}

	.card-content .extra-list {
		min-height: 18px;
	}

	.card-content .extra-list li {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
		width: calc(50% - 5px);
	}

	.card-content .extra-list li img {
		width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	.card-content .insert-cost h6 {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
	}

	.card-content .insert-cost input {
		font-size: 12px;
		line-height: 1.5;
		padding: 0 15px;
		height: 44px;
	}

	.card-content  a.addTotrip,
	.card-content  a.addTotrip#btPad {
		padding: 10px 15px;
		font-size: 12px;
		line-height: 1.5;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		font-size: 30px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-rtl .swiper-button-next {
		left: -30px;
	}

	.cards-wrapper .swiper-button-next, 
	.cards-wrapper .swiper-rtl .swiper-button-prev {
		right: -30px;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/

	/*-_-_Book-Page_CSS_Start_-_-*/
	.form-book-wrap.form-sec-wrap {
		padding: 54px 0;
	}

	.book-row {
		margin: 0 -7.5px;
		row-gap: 36px;
	}

	.book-row .book-col {
		padding: 0 7.5px;
	}

	.book-swiper-wrap {
		margin-bottom: 36px;
	}

	.book-swiper-wrap .swiper-slide {
		padding: 8px 20px;
	}

	.book-swiper-wrap .swiper-slide button {
		font-size: 16px;
		line-height: 2;
		padding: 14px 0 11px;
		border-bottom: 3.5px solid transparent;
	}

	.book-swiper-wrap .swiper_prev {
		left: -35px;
	}
		
	.book-swiper-wrap .swiper_next {
		right: -35px;
	}

	.book-swiper-wrap .swiper_prev i,
	.book-swiper-wrap .swiper_next i {
		font-size: 25px;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.popular-trips.form-sec-wrap {
		padding: 55px 0 80px;
	}

	.popular-trips.form-sec-wrap h1 {
		margin-bottom: 30px;
	}

	.tc-wrap {
		margin-bottom: 34px;
	}

	.tc-wrap > h4 {
		margin-bottom: 20px;
	}

	.tc-wrap > h4 .tc-edit  {
		width: 22.5px;
		height: 22.5px;
		margin-left: 14px;
	}

	.trip-card .tc-content.tc-name span {
		font-size: 17px;
	}

	.trip-card .tc-content h5 {
		font-size: 21px;
	}

	.trip-card {
		padding: 26px 28px;
	}

	.tc-btn-wrap {
		column-gap: 18px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	
	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.my-trip-plan-wrap .my-trip-plan-row {
		margin-bottom: 36px;
	}

	.my-trip-plan-wrap .my-trip-plan-btn {
		gap: 14px;
	}

	.total-budget h5 {
		font-size: 20px;
		max-width: 160px;
		margin-right: 12px;
	}

	.total-budget .total-price {
		font-size: 17px;
	} 

	.my-trip-plan-wrap .mytrip-plan-heading-wrap {
		border-radius: 12px;
		padding: 18px 0;
		margin-bottom: 36px;
	}

	.my-trip-plan-wrap .mytrip-plan-heading-wrap::before,
	.my-trip-plan-wrap .mytrip-plan-heading-wrap::after {
		width: 3px;
		height: calc(100% - 36px);
	}

	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		font-size: 30px;
	}

	.mytrip-plan-heading-wrap .swiper-button-prev,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
		left: -30px;
	}

	.mytrip-plan-heading-wrap .swiper-button-next,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
		right: -30px;
	}

	.mytrip-plan-heading .swiper-slide {
		border-width: 1.4px;
	}

	.mytrip-plan-heading .swiper-slide h5 {
		font-size: 21px;
		margin-bottom: 9px;
	}

	.mytrip-plan-heading .swiper-slide p {
		font-size: 16px;
	}

	.mytrip-plan.swiper-container {
		width: calc(100% + 15px);
		margin: 0 -7.5px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
		margin-bottom: 36px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
		margin-bottom: 13px;
	}

	.my-trip-plan-wrap .mytrip-plan .swiper-slide {
		padding: 0 7.5px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	
	/*-_-_Detail-Page_CSS_Start_-_-*/
	.detail-wrap .detail-content {
		padding: 50px 0 80px;
	}

	.detail-content .detail-inner-wrap {
		gap: 14px;
		margin-bottom: 18px;
	}

	.detail-inner-wrap .detail-inner p {
		font-size: 12px;
		line-height: 15px;
	}

	.detail-inner-wrap .detail-inner p i {
		margin-right: 3px;
	}

	.detail-inner .reviews-wrap p {
		font-size: 13px;
		line-height: 18px;
		padding-top: 7px;
	}

	.detail-inner-wrap .card-price h6 {
		font-size: 20px;
		line-height: 1.25;
	}

	.detail-inner-wrap .card-price .share-btn {
		width: 36px;
		height: 36px;
	}

	.card-price .share-btn i {
		font-size: 13px;
	}

	.gallery-wrap {
		margin-bottom: 36px;
	}

	.gallery-wrap a:nth-child(5)::after {
		right: 12px;
		bottom: 12px;
		font-size: 12px;
		line-height: 38px;
		padding: 0 12px;
	}

	.detail-row .detail-content-wrap {
		width: calc(100% - 400px);
		padding-right: 20px;
	}

	.detail-content-wrap .overview-wrap h4,
	.detail-content-wrap .available-rooms-wrap h4, 
	.detail-content-wrap .more-info-wrap h4,
	.detail-content-wrap .reviews-wrap h4 {
		font-size: 20px;
	}

	.overview-wrap p {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.overview-wrap ul,
	.overview-wrap ol {
		margin-bottom: 16px;
	}

	.overview-wrap ul li,
	.overview-wrap ol li {
		font-size: 14px;
	}

	.available-rooms-wrap ul li .room-des p {
		font-size: 16px;
	}

	.available-rooms-wrap ul li h6 {
		font-size: 18px;
		line-height: 1.6;
	}

	.more-info-accordion .accordion-button {
		font-size: 16px;
		line-height: 1.25;
		padding: 22px 18px;
	}

	.more-info-accordion .accordion-button::after {
		width: 22px;
		height: 22px;
	}

	.more-info-accordion .accordion-button:not(.collapsed) {
		font-size: 18px;
		padding: 18px 18px 12px;
	}

	.more-info-accordion .accordion-body {
		padding: 0 18px 16px;
	}

	.more-info-accordion .accordion-body ol li,
	.more-info-accordion .accordion-body ul li,
	.more-info-accordion .accordion-body p {
		font-size: 16px;
		line-height: 1.5;
	}

	.reviews-wrap .review-rating {
		padding-bottom: 18px;
	}

	.reviews-wrap .review-rating h2 {
		font-size: 30px;
	}

	.review-rating .review-by p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 8px;
	}

	.review-rating .review-by span {
		font-size: 13px;
	}

	.detail-row .booking-form-wrap {
		padding-top: 41px;
		width: 400px;
	}

	.booking-request-form h3 {
		font-size: 26px;
		padding: 5px 0;
		margin-bottom: 18px;
	}

	.booking-request-form .form-row {
		margin: 0 -7.5px 24px;
	}

	.booking-request-form .form-row .col-6,
	.booking-request-form .form-row .col-12 {
		padding: 0 7.5px;
	}

	.booking-request-form .form-row .form-group {
		margin-bottom: 18px;
	}

	.booking-request-form button {
		height: 44px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/

	/*-_-_Calculate-Fare_CSS_Start_-_-*/

	.cal-fare-dropdown .dropdown-toggle {
		font-size: 10px;
		padding: 6px 18px;
	}

	.cal-fare-dropdown .dropdown-menu {
		padding: 16px;
		border-radius: 10px;
		inset: auto 0 100% auto !important
	}

	.cal-fare-dropdown .dropdown-menu .form-group {
		margin-bottom: 14px;
	}

	.cal-fare-dropdown .dropdown-menu label {
		font-size: 12px;
		line-height: 15px;
	}

	.cal-fare-dropdown .dropdown-menu select {
		height: 38px;
	}

	.cal-fare-dropdown .dropdown-menu button {
		padding: 10px 15px;
        font-size: 12px;
        line-height: 1.5;
		border-radius: 4px;
	}

	.calculated-row {
		margin: -4px -6px 15px;
	}

	.calculated-row .calculated-col label {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.calculated-row .calculated-col input {
		height: 40px;
	}
	/*-_-_Calculate-Fare_CSS_End_-_-*/
}

@media only screen and (max-width: 991px) {

	/*-_-_Header_CSS_Start_-_-*/
	#header .navbar {
		padding: 12px 0;
	}

	#header .navbar .logo {
		max-width: 170px;
		width: 100%;
		margin-right: 12px;
	}

	#header .toggle-navbar {
		display: inline-block;
	}

	#header .toggle-navbar img {
		width: 27px;
		height: 27px;
		object-fit: contain;
	}

	#header .navbar-collapse {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		display: none;
		background: #ffffff;
		box-shadow: 0px 10px 15px 1px rgba(127, 137, 161, 0.25);
	}

	.navbar-collapse .navbar-nav {
		margin-right: 0;
		padding-top: 7.5px;
		display: block;
		padding: 0 !important;
		width: 100%;
	}

	.navbar-collapse .navbar-nav>li {
		margin-right: 0;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link {
		font-size: 16px;
		line-height: 1.25;
		padding: 10px 15px;
		letter-spacing: 0;
		width: 100%;
		display: block;
		font-family: "Karla", sans-serif;
		color: #37454D;
		font-weight: 400;
	}

	.navbar-collapse .navbar-nav>li>a.nav-link i {
		font-size: 12px;
		color: #FA8128;
		margin-left: 5px;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu {
		padding: 0 10px 2.5px !important;
		min-width: unset;
		width: 100%;
		border-radius: 0;
		position: relative;
		left: 0;
	}

	.navbar-collapse .navbar-nav>li .dropdown-menu li a {
		font-size: 16px;
		line-height: 20px;
		padding: 7.5px 15px;
	}

	.navbar-collapse .navbar-right {
		display: block;
		padding: 0 !important;
		width: 100%;
	}

	.navbar-collapse .navbar-right>li,
	.navbar-collapse .navbar-right>li:first-child {
		margin-right: 0;
	}

	.navbar-collapse .navbar-right>li>a.login-modal-link {
		font-family: "Karla", sans-serif;
		color: #37454D;
		font-weight: 400;
	}

	.navbar-collapse .navbar-right>li>a.login-modal-link,
	.navbar-right .currency-dropdown .show-currency {
		font-size: 16px;
		line-height: 1.25;
		letter-spacing: 0;
		padding: 10px 15px !important;
		width: 100%;
		display: block;
	}

	.navbar-right .currency-dropdown .show-currency i {
		font-size: 12px;
		color: #FA8128;
		margin-left: 5px;
	}

	.navbar-right .currency-dropdown .dropdown-menu {
		padding: 10px 0 !important;
		margin: 10px 15px;
		min-width: unset;
		width: calc(100% - 30px);
		border-radius: 0;
		position: relative;
	}

	.navbar-right .currency-dropdown .dropdown-menu li a {
		font-size: 14px;
		line-height: 20px;
		padding: 5px 15px;
	}

	.navbar-collapse .navbar-right>li .sign-out,
	.navbar-collapse .navbar-right>li .sign-up-modal-link {
		width: calc(100% - 30px);
		text-align: center;
		margin: 7.5px 15px 17.5px;
		font-size: 15px;
		line-height: 20px;
		padding: 10px 20px;
	}

	.home-page header .navbar-collapse .navbar-nav>li>a.nav-link,
	.home-page header.darkHeader .navbar-collapse .navbar-nav>li>a.nav-link,
	.home-page header .navbar-collapse .navbar-right>li>a.login-modal-link,
	.home-page header.darkHeader .navbar-collapse .navbar-right>li>a.login-modal-link {
		color: #37454D;
	}

	/*-_-_Header_CSS_End_-_-*/

	/*-_-_Banner_CSS_Start_-_-*/
	.banner {
		padding: 140px 0 80px;
	}

	.banner-row .banner-content-col {
		width: 100%;
		max-width: 100%;
		padding-top: 0;
		margin-bottom: 40px;
	}

	.banner .banner-content-col h1 {
		text-align: center;
		margin-bottom: 18px;
	}

	.banner-content-col p {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
	}

	.banner-row .banner-form-col {
		width: 100%;
	}

	.banner .trip-form {
		padding: 30px 25px;
		border-radius: 18px;
	}

	.trip-form h3 {
		font-size: 22px;
		margin-bottom: 22px;
	}

	.trip-form .form-group {
		margin-bottom: 22px;
	}

	.trip-form input {
		font-size: 14px;
		line-height: 1.5;
		height: 44px;
		padding: 0 16px;
	}

	.trip-form .travL .txtL {
		font-size: 14px;
		line-height: 42px;
		letter-spacing: 0.5px;
		height: 44px;
		padding: 0 16px;
	}

	.trip-form .travlNo {
		padding: 10px 12px;
	}

	.trip-form span.tb {
		font-size: 12px;
		padding-right: 12px;
	}

	.trip-form span.bt {
		font-size: 13px;
	}

	.trip-form .value-button {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.trip-form input#number {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.trip-form a.addPass {
		padding: 9px 18px;
		font-size: 13px;
		line-height: 15px;
		border-radius: 5px;
	}

	.trip-form .next-trip-btn {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.5px;
		padding: 15px 16px;
	}

	/*-_-_Banner_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.content h1,
	.banner h1 {
		font-size: 32px;
	}

	.content h2 {
		font-size: 28px;
	}

	.content h3 {
		font-size: 22px;
	}

	.content h4 {
		font-size: 16px;
	}

	.why-use-wrap {
		padding: 60px 0 30px;
	}

	.why-use-content>h2 {
		margin: 0 0 16px;
	}

	.why-use-content>p {
		font-size: 14px;
		max-width: 100%;
		margin: 0 auto 24px;
	}

	.why-use-row {
		margin: 0 -12px;
		row-gap: 34px;
	}

	.why-use-row .why-use-col {
		width: 50%;
		padding: 0 12px;
	}

	.why-use-inner {
		padding: 10px 0;
	}

	.why-use-inner .why-use-icon {
		width: 66px;
		height: 66px;
		margin: 0 auto 20px;
	}

	.why-use-inner .why-use-icon img {
		width: 26px;
		height: 26px;
	}

	.why-use-inner h4 {
		letter-spacing: 0;
		line-height: 1.4;
		margin-bottom: 16px;
	}

	.why-use-inner p {
		font-size: 16px;
		line-height: 1.5;
	}

	.how-works-wrap {
		padding: 30px 0 60px;
	}

	.how-works-content h2 {
		margin: 0 0 12px;
	}

	.how-works-content p {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 30px;
	}

	.how-works-content iframe {
		border-radius: 20px;
		aspect-ratio: 384/248;
	}

	.testimonials-content {
		padding: 50px 0;
		max-width: 480px;
	}

	.testimonials-content h6 {
		font-size: 12px;
		margin-bottom: 3px;
	}

	.testimonials-content h3 {
		margin-bottom: 36px;
	}

	.testimonial-slider {
		max-width: 400px;
		padding-bottom: 40px;
	}

	.testimonial-content .rating {
		gap: 7.6px;
		margin-bottom: 24px;
	}

	.testimonial-content .rating ion-icon {
		font-size: 16px;
	}

	.testimonial-content p {
		font-size: 15px;
		line-height: 1.75;
	}

	.testimonial-content span {
		font-size: 12px;
		line-height: 1.5;
		margin-top: 10px;
	}

	.testimonial-slider .slick-arrow {
		width: 15px;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: -80px;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: -80px;
	}

	.testimonial-slider .slick-dots {
		height: 11px;
	}

	.testimonial-slider .slick-dots li button {
		width: 8px;
		height: 8px;
	}

	.testimonial-slider .slick-dots li.slick-active button {
		width: 11px;
		height: 11px;
	}

	.popular-wrap {
		padding: 60px 0 30px;
	}

	.popular-wrap .popular-content>h2 {
		max-width: 500px;
		margin: 0 auto 14px;
	}

	.popular-wrap .popular-content>p {
		font-size: 14px;
		line-height: 1.5;
		max-width: 500px;
		margin: 0 auto 26px;
	}

	.popular-slider {
		margin: 0 auto;
		max-width: 500px;
	}

	.popular-slider .slick-arrow {
		width: 16px;
	}

	.popular-slider .slick-arrow.slick-prev {
		left: -55px;
	}

	.popular-slider .slick-arrow.slick-next {
		right: -55px;
	}

	.popular-slide {
		margin: 0 7.5px;
		border-radius: 15px;
	}

	.popular-slide>img {
		aspect-ratio: 384 / 360;
	}

	.popular-slide .popular-inner {
		padding: 0 18px 20px;
		min-height: 210px;
	}

	.popular-slide .popular-inner h2 {
		font-size: 22px;
		max-width: 100%;
		margin: 0 auto 8px;
	}

	.popular-slide .popular-inner p {
		font-size: 14px;
		max-width: 100%;
		line-height: 1.2;
		margin: 0 auto 15px;
	}

	.popular-wrap .popular-content a {
		font-size: 14px;
		line-height: 18px;
		padding: 11px 14px;
	}

	.popular-wrap .popular-content a i {
		font-size: 12px;
		margin-right: 6px;
	}

	.newsletter-wrap {
		padding: 30px 0 60px;
	}

	.newsletter-wrap .newsletter-row {
		border-radius: 20px;
		margin: 0 auto;
		max-width: 485px;
		flex-direction: column-reverse;
	}

	.newsletter-row .newsletter-img {
		width: 100%;
		font-size: 0;
	}

	.newsletter-row .newsletter-content {
		width: 100%;
		padding: 44px 30px 32px;
	}

	.newsletter-content .newsletter-inner {
		max-width: 100%;
	}

	.newsletter-content .newsletter-inner h3 {
		margin-bottom: 26px;
	}

	.newsletter-content .newsletter-inner p {
		font-size: 14px;
		line-height: 1.4;
		max-width: 80%;
		margin: 0 auto 26px;
	}

	.newsletter-content .newsletter-inner input {
		height: 59px;
		border-radius: 50px;
		padding: 0 140px 0 32px;
		font-size: 14px;
	}

	.newsletter-content .newsletter-inner button {
		font-size: 16px;
		line-height: 48px;
		border-radius: 35px;
		padding: 0 30px;
		right: 10.5px;
	}

	.newsletter-content .newsletter-inner .alert {
		margin: 16px 0 0;
	}

	/*-_-_Content_CSS_End_-_-*/

	/*-_-_Footer_CSS_Start_-_-*/
	.footer {
		padding: 137px 0 0;
	}

	.footer::before {
		top: -1px;
		width: 100%;
		height: 118px;
	}

	.footer .footer-top {
		padding-bottom: 22px;
	}

	.footer-top .footer-logo {
		max-width: 196px;
		margin: 0 auto 28.6px;
	}

	.footer-top .social-links {
		flex-direction: row;
		margin-bottom: 18.9px;
	}

	.footer-top .social-links li {
		margin-right: 20px;
	}

	.footer-top .social-links li a {
		width: 37px;
		height: 37px;
		border-width: 2px;
	}

	.footer-top .social-links li a i {
		font-size: 16px;
	}

	.footer-top .footer-links {
		gap: 20px;
	}

	.footer-top .footer-links li {
		margin: 0;
	}

	.footer-top .footer-links li a {
		font-size: 16px;
	}

	.footer .copyright p {
		padding: 14px 0 20px;
		font-size: 14px;
		line-height: 1.5;
	}

	/*-_-_Footer_CSS_End_-_-*/

	/*-_-_Pick-City_CSS_Start_-_-*/
	.form-sec-wrap {
		padding: 52px 0 50px;
	}

	.form-sec-wrap h1 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.form-top-bar {
		margin-bottom: 48px;
	}

	.form-top-bar li {
		min-width: unset;
	}

	.form-top-bar li::before {
		height: 1px;
		top: 14.5px;
	}

	.form-top-bar li .form-count {
		font-size: 14px;
		width: 30px;
		height: 30px;
		margin: 0 auto 14px;
	}

	.form-top-bar li .form-count i {
		font-size: 20px;
	}

	.form-top-bar li p {
		font-size: 12px;
	}

	.sticy_pos {
		gap: 12px;
	}

	.sticy_pos .btn-prev,
	.sticy_pos .btn-next,
	.my-trip-plan-btn .btn-prev,
	.my-trip-plan-btn .btn-next {
		font-size: 16px;
        font-weight: 400;
        min-width: 180px;
        border-radius: 5px;
        line-height: 42px;
	}

	.destination-wrap {
		margin-bottom: 48px;
	}

	.destination-wrap span {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.destination-wrap h3 {
		font-size: 22px;
		line-height: 1.5;
		margin-bottom: 4px;
	}

	.destination-wrap p {
		font-size: 15px;
	}

	#pick-up-city-form .row {
		row-gap: 22px;
		margin: 0 -7.5px 18px;
	}
	
	#pick-up-city-form .row > div {
		padding: 0 7.5px;
	}

	.select-city .pick-city-box {
		border-radius: 13px !important;
	}

	.select-city .pick-city-box img {
		aspect-ratio: 384 / 370;
	}

	.select-city .pick-city-box .select-city-content { 	
		padding: 18px;
	}

	.select-city .pick-city-box h4 {
		font-size: 20px;
	}

	.select-city .pick-city-box p {
		font-size: 12px;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.select-city .pick-city-box .select-city-btn {
		font-size: 15px;
		line-height: 16px;
		padding: 12px 15px;
	}

	.select-city .pick-city-box .info-cities {
		font-size: 14px;
		line-height: 18px;
	}

	.select-city .pick-city-box:hover .info-cities {
		margin-top: 14px;
	}

	.select-city .number {
		padding: 10px;
		border-radius: 0px 0px 13px 13px;
	}

	/* .select-city .citiesS.showCount .pick-city-box { */
	.select-city .pick-city-box.selected-label {
		border-radius: 13px 13px 0px 0px !important;
	}

	.number .minus-day,
	.number .add-day {
		font-size: 20px;
		width: 36px;
		height: 36px;
	}

	.number .pm {
		height: 36px;
		width: calc(100% - 82px) !important;
		font-size: 15px;
	}

	.number span.oneN,
	.number span.twoN {
		right: 80px;
        font-size: 15px;
	}
	/*-_-_Pick-City_CSS_End_-_-*/

	/*-_-_Card_CSS_Start_-_-*/
	.form-wrap .row {
		row-gap: 22px;
		margin: 0 -7.5px 18px;
	}

	.form-wrap .row > div {
		padding: 0 7.5px;
	}

	.select-card .select-card-box {
		border-radius: 12px;
		border-width: 3px;
	}

	.select-card .cardImg {
		aspect-ratio: 788 / 680;
	}

	.select-card .select-card-content {
		padding: 18px;
	}

	.select-card .select-card-content h4 {
		font-size: 20px;
	}

	.select-card .select-card-content p {
		font-size: 12px;
        margin-bottom: 15px;
	}

	.select-card .select-card-content .select-btn {
		font-size: 15px;
        line-height: 16px;
        padding: 12px 15px;
	}
	/*-_-_Card_CSS_End_-_-*/

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.trip-summary-form .cards-wrapper {
		margin-bottom: 26px;
	}

	.total-day-slider.swiper-container {
		margin-bottom: 28px;
	}

	.place-detail-wrap {
		padding: 20px 20px;
		margin-bottom: 40px;
		border-radius: 16px;
		border: 1px solid #E6E6E6;
		flex-wrap: wrap;
		box-shadow: 0 4px 16px 0 rgba(17, 34, 17, 0.05);
	}

	.city-data-wrap {
		margin-bottom: 32px;
	}

	.city-data-wrap .city-img {
		width: 100%;
		margin-bottom: 16px;
	}

	.city-data-wrap .city-img img {
		aspect-ratio: 344 / 120;
		border-radius: 10px;
	}

	.city-data-wrap .city-data.carousel-item {
		padding-left: 0;
		width: 50%;
	}

	.city-data-wrap .city-data .city-name {
		font-size: 16px;
	}

	.city-data-wrap .date-wrap {
		padding-left: 24px;
		margin-left: 0;
		width: 50%;
	}

	.city-data-wrap .date-wrap p {
		font-size: 12px;
		line-height: 1.5;
	}

	.place-detail-wrap .total_budget {
		text-align: center;
		width: 100% !important;
		position: static !important;
	}

	.total_budget p {
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 8px;
	}

	.total_budget h5 {
		font-size: 20px;
		line-height: 1.25;
	}

	.cards-wrapper .sub-heading {
		margin-bottom: 12px;
	}

	.cards-wrapper .sub-heading p {
		font-size: 16px;
	}

	.cards-wrapper .swiper-container .swiper-slide {
		padding: 2px 7.5px 12px;
	}

	.trip-card-wrap {
		border-radius: 14.8px;
		box-shadow: 0 3px 11.8px 0 rgba(17, 34, 17, 0.05);
	}

	.trip-card-wrap .card-img {
		border-radius: 14.8px 14.8px 0 0;
	}

	.trip-card-wrap .card-content {
		border-radius: 0 0 14.8px 14.8px;
	}

	.card-content .card-inner h5 {
		font-size: 20px;
		line-height: 1.5;
		min-height: 36px;
	}

	.card-inner .card-price h6 {
		font-size: 14px;
		line-height: 17px;  
	}

	.card-content .reviews-wrap .rating {
		min-width: 30px;
		height: 24px;
	}

	.card-content .reviews-wrap p {
		font-size: 12px;
		line-height: 1.5;
		padding-left: 3px;
		padding-top: 3px;
		width: calc(100% - 30px);
	}

	.card-content .extra-list {
		min-height: unset;
	}

	.card-content .extra-list li {
        width: calc(50% - 5px);
    }

	.card-content .insert-cost input {
		border-width: 1px;
		height: 40px;
		border-radius: 4px;
	}

	.card-content  a.addTotrip,
	.card-content  a.addTotrip#btPad {
		padding: 9px 15px;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		font-size: 28px;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/

	/*-_-_Book-Page_CSS_Start_-_-*/
	.form-book-wrap.form-sec-wrap {
		padding: 50px 0;
	}

	.book-row {
		row-gap: 30px;
	}

	.book-swiper-wrap {
		margin-bottom: 30px;
	}

	.book-swiper-wrap .swiper-slide {
		padding: 8px 20px;
	}

	.book-swiper-wrap .swiper-slide button {
		font-size: 15px;
		line-height: 2;
		padding: 14px 0 11px;
		border-bottom: 3px solid transparent;
	}

	.book-swiper-wrap .swiper_prev {
		left: -32px;
	}
		
	.book-swiper-wrap .swiper_next {
		right: -32px;
	}

	.book-swiper-wrap .swiper_prev i,
	.book-swiper-wrap .swiper_next i {
		font-size: 22px;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.popular-trips.form-sec-wrap {
		padding: 52px 0 65px;
	}

	.popular-trips.form-sec-wrap h1 {
		margin-bottom: 30px;
	}

	.tc-wrap {
		margin-bottom: 32px;
	}

	.tc-wrap > h4 {
		margin-bottom: 18px;
	}	
	
	.tc-wrap > h4 .tc-edit  {
		width: 20px;
		height: 20px;
		margin-left: 13px;
	}
	
	.trip-card .tc-content.tc-name span {
		font-size: 16px;
	}

	.trip-card .tc-content h5 {
		font-size: 20px;
	}

	.trip-card {
		padding: 24px;
	}

	.tc-btn-wrap {
		column-gap: 16px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.my-trip-plan-wrap.form-sec-wrap h1 {
		text-align: center;
		margin-bottom: 22px;
	}

	.my-trip-plan-wrap .my-trip-plan-row {
		margin-bottom: 32px;
	}

	.my-trip-plan-wrap .my-trip-plan-btn {
		gap: 12px;
		margin-bottom: 22px;
	}

	.my-trip-plan-wrap .total-budget {
		align-items: center;
        justify-content: center;
        flex-direction: column;
	}

	.total-budget h5 {
		font-size: 18px;
        max-width: unset;
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
	}

	.total-budget .total-price {
		font-size: 15px;
	} 

	.my-trip-plan-wrap .mytrip-plan-heading-wrap {
		border-radius: 12px;
		padding: 18px 0;
		margin-bottom: 32px;
	}

	.my-trip-plan-wrap .mytrip-plan-heading-wrap::before,
	.my-trip-plan-wrap .mytrip-plan-heading-wrap::after {
		width: 2.5px;
		height: calc(100% - 36px);
	}

	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		font-size: 28px;
	}

	.mytrip-plan-heading-wrap .swiper-button-prev,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-next {
		left: -30px;
	}

	.mytrip-plan-heading-wrap .swiper-button-next,
	.mytrip-plan-heading-wrap .swiper-container-rtl .swiper-button-prev {
		right: -30px;
	}

	.mytrip-plan-heading .swiper-slide {
		border-width: 1.2px;
	}

	.mytrip-plan-heading .swiper-slide h5 {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.mytrip-plan-heading .swiper-slide p {
		font-size: 15px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
		margin-bottom: 32px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
		margin-bottom: 12px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Detail-Page_CSS_Start_-_-*/
	.detail-wrap .detail-content {
		padding: 50px 0 65px;
	}

	.detail-row .detail-content-wrap {
		width: 100%;
		padding-right: 0;
		margin-bottom: 0;
	}

	.detail-row .booking-form-wrap {
		width: 100%;
		padding: 0;
	}

	.detail-row > .booking-form-wrap {
		display: none;
	}

	.detail-row .detail-content-wrap .booking-form-wrap {
		display: block;
		padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(17, 34, 17, 0.25);
	}

	.request-book-btn {
		display: block;
	}

	.booking-request-form {
		display: none;
		margin-top: 24px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/

	/*-_-_Trip-Summary-Details-Modal_CSS_Start_-_-*/
	.trip-summary-details-modal.modal {
		padding: 0 !important; 
	}

	.trip-summary-details-modal .modal-header {
		padding: 15px 15px;
	}

	.trip-summary-details-modal .modal-title {
		font-size: 20px;
	}

	.trip-summary-details-modal .modal-header .close {
		width: 24px;
		height: 24px;
		font-size: 18px;
	}

	.trip-summary-details-modal .modal-body {
		padding: 18px 15px;
	}

	.trip-summary-details-modal .trip_summary_img {
		padding-bottom: 15px;
	}
	/*-_-_Trip-Summary-Details-Modal_CSS_End_-_-*/

	/*-_-_Calculate-Fare_CSS_Start_-_-*/
	.cal-fare-dropdown .dropdown-toggle {
		font-size: 10px;
		padding: 5px 15px;
	}

	.cal-fare-dropdown .dropdown-menu {
		max-width: 280px;
		padding: 14px;
		border-radius: 8px;
		inset: auto 0 100% auto !important
	}

	.cal-fare-dropdown .dropdown-menu .form-group {
		margin-bottom: 12px;
	}

	.cal-fare-dropdown .dropdown-menu label {
		font-size: 10px;
		line-height: 14px;
	}

	.cal-fare-dropdown .dropdown-menu select {
		height: 34px;
	}

	.cal-fare-dropdown .dropdown-menu button {
		padding: 8.75px 15px;
        font-size: 11px;
	}
	/*-_-_Calculate-Fare_CSS_End_-_-*/
}

@media only screen and (max-width: 767px) {

	/*-_-_Header_CSS_Start_-_-*/
	#header .navbar {
		padding: 10px 0;
	}

	#header .navbar .logo {
		max-width: 150px;
		margin-right: 12px;
	}

	#header .toggle-navbar img {
		width: 26px;
		height: 26px;
	}

	.home-page header#header {
		position: static;
	}
	/*-_-_Header_CSS_End_-_-*/

	/*-_-_Banner_CSS_Start_-_-*/
	.banner {
		padding: 100px 0 53px;
	}

	.banner-row .banner-content-col {
		margin-bottom: 30px;
	}

	.banner .banner-content-col h1 {
		margin-bottom: 16px;
	}

	.banner-content-col p {
		font-size: 12px;
		line-height: 1.5;
	}

	.banner .trip-form {
		padding: 24px 16px;
		border-radius: 15px;
	}

	.trip-form h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.trip-form .form-group {
		margin-bottom: 20px;
	}

	.trip-form input {
		font-size: 12px;
		line-height: 1.5;
		height: 42px;
		padding: 0 15px;
	}

	.trip-form .travL .txtL {
		font-size: 12px !important;
		line-height: 40px;
		letter-spacing: 0.5px;
		height: 42px !important;
		padding: 0 15px !important;
	}

	.trip-form .travlNo {
		padding: 8px 10px;
	}

	.trip-form span.tb {
		font-size: 10px;
		padding-right: 10px;
	}

	.trip-form span.bt {
		font-size: 12px;
	}

	.trip-form .value-button {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.trip-form input#number {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.trip-form a.addPass {
		padding: 8px 15px;
		font-size: 12px;
		line-height: 14px;
		border-radius: 5px;
	}

	.trip-form .next-trip-btn {
		font-size: 12px;
		line-height: 16px;
		letter-spacing: 0.5px;
		padding: 14px 16px;
	}

	/*-_-_Banner_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.content h1,
	.banner h1 {
		font-size: 24px;
	}

	.content h2 {
		font-size: 24px;
	}

	.content h3 {
		font-size: 24px;
	}

	.content h4 {
		font-size: 16px;
	}

	.why-use-wrap {
		padding: 48px 0 24px;
	}

	.why-use-content>p {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
		margin: 0 auto 18px;
	}

	.why-use-row {
		margin: 0 -12px;
		row-gap: 24px;
	}

	.why-use-row .why-use-col {
		width: 50%;
		padding: 0 12px;
	}

	.why-use-inner {
		padding: 12px 0;
	}

	.why-use-inner .why-use-icon {
		width: 60px;
		height: 60px;
		margin: 0 auto 16px;
	}

	.why-use-inner .why-use-icon img {
		width: 25px;
		height: 25px;
	}

	.why-use-inner h4 {
		letter-spacing: 0;
		line-height: 1.25;
		margin-bottom: 12px;
	}

	.why-use-inner p {
		font-size: 12px;
		line-height: 1.75;
	}

	.how-works-wrap {
		padding: 24px 0 48px;
	}

	.how-works-content h2 {
		margin: 0 0 10px;
	}

	.how-works-content p {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
		max-width: 235px;
		margin: 0 auto 31px;
	}

	.testimonials-content {
		padding: 16px 0;
		max-width: 252px;
	}

	.testimonials-content h6 {
		font-size: 10px;
		line-height: 1.5;
		margin-bottom: 2px;
	}

	.testimonials-content h3 {
		margin-bottom: 32px;
	}

	.testimonial-slider {
		max-width: 100%;
	}

	.testimonial-content .rating ion-icon {
		font-size: 15.2px;
	}

	.testimonial-content p {
		font-size: 12px;
		line-height: 1.75;
	}

	.testimonial-content span {
		font-size: 10px;
		line-height: 1.5;
		margin-top: 10px;
	}

	.testimonial-slider .slick-arrow {
		width: 10px;
	}

	.testimonial-slider .slick-arrow.slick-prev {
		left: -52px;
	}

	.testimonial-slider .slick-arrow.slick-next {
		right: -52px;
	}

	.testimonial-slider .slick-dots {
		height: 9px;
	}

	.testimonial-slider .slick-dots li button {
		width: 6.3px;
		height: 6.3px;
	}

	.testimonial-slider .slick-dots li.slick-active button {
		width: 9px;
		height: 9px;
	}

	.popular-wrap {
		padding: 48px 0;
	}

	.popular-wrap .popular-content>h2 {
		max-width: 100%;
		margin: 0 auto 15px;
	}

	.popular-wrap .popular-content>p {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
		max-width: 100%;
		margin: 0 auto 24px;
	}

	.popular-slider {
		max-width: 100%;
		padding-bottom: 48px;
	}

	.popular-slider .slick-arrow {
		width: 12.5px;
		top: auto;
		bottom: 0;
		transform: unset;
	}

	.popular-slider .slick-arrow.slick-prev {
		left: calc(50% - 33.5px);
	}

	.popular-slider .slick-arrow.slick-next {
		left: calc(50% + 21px);
		right: 0;
	}

	.popular-slide {
		border-radius: 13px;
	}

	.popular-slide .popular-inner {
		padding: 0 18px 21px;
		min-height: 180px;
	}

	.popular-slide .popular-inner h2 {
		font-size: 18px;
		line-height: 22.5px;
		max-width: 250px;
		margin: 0 auto 5px;
	}

	.popular-slide .popular-inner p {
		font-size: 12px;
		line-height: 15px;
		max-width: 250px;
		margin: 0 auto 10.3px;
	}

	.popular-wrap .popular-content a {
		font-size: 12px;
		line-height: 15px;
		padding: 7.5px 10.3px;
	}

	.popular-wrap .popular-content a i {
		font-size: 10px;
		margin-right: 5px;
	}

	.newsletter-wrap {
		padding: 0px 0 48px;
	}

	.newsletter-wrap .newsletter-row {
		border-radius: 20px;
		max-width: 485px;
	}

	.newsletter-row .newsletter-content {
		width: 100%;
		padding: 44px 16px 32px;
	}

	.newsletter-content .newsletter-inner h3 {
		margin-bottom: 24px;
	}

	.newsletter-content .newsletter-inner p {
		font-size: 12px;
		line-height: 1.5;
		max-width: 262px;
		letter-spacing: 0;
		margin: 0 auto 24px;
	}

	/*-_-_Content_CSS_End_-_-*/

	/*-_-_Footer_CSS_Start_-_-*/
	.footer .copyright p {
		font-size: 13.5px;
		line-height: 20px;
	}

	/*-_-_Footer_CSS_End_-_-*/

	/*-_-_Pick-City_CSS_Start_-_-*/
	.form-sec-wrap {
		padding: 48px 0 32px;
	}

	.form-sec-wrap h1 {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.form-top-bar {
		margin-bottom: 36px;
	}

	.form-top-bar li {
		min-width: 100px;
		padding: 0 5px;
	}

	.form-top-bar li::before {
		height: 1px;
		top: 14.5px;
	}

	.form-top-bar li .form-count {
		font-size: 10px;
		width: 24px;
		height: 24px;
		margin: 0 auto 10px;
	}

	.form-top-bar li .form-count i {
		font-size: 12px;
	}

	.form-top-bar li p {
		font-size: 10px;
		letter-spacing: 0.25px;
	}

	.sticy_pos {
		gap: 10px;
	}

	.sticy_pos .btn-prev,
	.sticy_pos .btn-next,
	.my-trip-plan-btn .btn-prev,
	.my-trip-plan-btn .btn-next {
        font-weight: 400;
        min-width: 150px;
        border-radius: 5px;
        line-height: 40px;
		width: auto;
	}

	.destination-wrap {
		margin-bottom: 48px;
	}

	.destination-wrap span {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.destination-wrap h3 {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.destination-wrap p {
		font-size: 10px;
	}

	#pick-up-city-form .row {
		row-gap: 18px;
		margin: 0 -7.5px 30px;
	}
	
	#pick-up-city-form .row > div {
		padding: 0 7.5px;
	}

	.select-city .pick-city-box {
		border-radius: 12px !important;
	}

	.select-city .pick-city-box .select-city-content { 	
		padding: 16px;
	}

	.select-city .pick-city-box h4 {
		font-size: 24px;
	}

	.select-city .pick-city-box p {
		font-size: 12px;
		line-height: 1.5;
		margin-bottom: 14px;
	}

	.select-city .pick-city-box .select-city-btn {
		font-size: 14px;
		line-height: 1;
		padding: 12px 16px;
	}

	.select-city .pick-city-box .info-cities {
		line-height: 16px;
		padding-top: 14px;
		height: auto;
		overflow: unset;
	}

	.select-city .pick-city-box:hover .info-cities {
		margin-top: 13px;
	}

	.select-city .number {
		padding: 10px;
		border-radius: 0px 0px 12px 12px;
	}

	/* .select-city .citiesS.showCount .pick-city-box { */
	.select-city .pick-city-box.selected-label {
		border-radius: 12px 12px 0px 0px !important;
	}

	.number span.oneN,
	.number span.twoN {
		right: 75px;
        font-size: 14px;
	}
	/*-_-_Pick-City_CSS_End_-_-*/

	
	/*-_-_Card_CSS_Start_-_-*/
	.form-wrap .row {
		row-gap: 18px;
		margin: 0 -7.5px 30px;
	}

	.select-card .select-card-box {
		border-radius: 10px;
		border-width: 2.5px;
	}

	.select-card .cardImg {
		aspect-ratio: 380 / 261;
	}

	.select-card .select-card-content {
		padding: 15px;
	}

	.select-card .select-card-content h4 {
		font-size: 24px;
	}

	.select-card .select-card-content p {
		font-size: 12px;
        margin-bottom: 14px;
	}

	.select-card .select-card-content .select-btn {
		font-size: 14px;
        line-height: 1;
        padding: 12px 16px;
	}
	/*-_-_Card_CSS_End_-_-*/

	/*-_-_Trip-Summary-Form_CSS_Start_-_-*/
	.trip-summary-form .cards-wrapper {
		margin-bottom: 48px;
	}

	.total-day-slider.swiper-container {
		margin-bottom: 24px;
	}

	.cards-wrapper .sub-heading {
		text-align: center;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-bottom: 10px;
	}

	.cards-wrapper .sub-heading h3 {
		margin-bottom: 12px;
	}
	
	.cards-wrapper .sub-heading p {
		text-align: center;
	}

	.cards-wrapper .swiper-container {
		margin: 0 0 0 -7.5px;
		width: calc(100% + 22.5px);
	}

	.cards-wrapper .swiper-container .swiper-slide {
		padding: 2px 7.5px 12px;
		max-width: 90%;
		width: 100%;
	}

	.card-content .insert-cost input {
		height: 38px;
	}

	.card-content  a.addTotrip,
	.card-content  a.addTotrip#btPad {
		padding: 9px 15px;
	}

	.card-content .card-inner h5 {
		min-height: 36px;
	}

	.cards-wrapper .swiper-wrap .swiper-wrapper {
		overflow-x: auto;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-button-next {
		display: none;
		font-size: 25px;
		width: auto;
		height: auto;
	}

	.cards-wrapper .swiper-button-prev, 
	.cards-wrapper .swiper-rtl .swiper-button-next {
		top: auto;
		bottom: 0;
		left: calc(50% - 45px);
		transform: unset;
	}

	.cards-wrapper .swiper-button-next, 
	.cards-wrapper .swiper-rtl .swiper-button-prev {
		top: auto;
		bottom: 0;
		left: calc(50% + 20px);
		transform: unset;
		right: auto;
	}
	/*-_-_Trip-Summary-Form_CSS_End_-_-*/

	/*-_-_Book-Page_CSS_Start_-_-*/
	.form-book-wrap.form-sec-wrap {
		padding: 48px 0;
	}

	.book-swiper-wrap {
		display: none;
	}

	.book-row {
		row-gap: 24px;
	}

	.select-wrap {
		display: block;
	}
	/*-_-_Book-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.popular-trips.form-sec-wrap {
		padding: 48px 0;
	}

	.popular-trips.form-sec-wrap h1 {
		text-align: center;
		margin-bottom: 48px;
	}

	.tc-wrap {
		margin-bottom: 48px;
	}

	.tc-wrap > h4 {
		font-size: 18px;
        line-height: 23px;
		text-align: center;
		margin-bottom: 16px;
		justify-content: center;
	}
	
	.tc-wrap > h4 .tc-edit  {
		margin-left: 13px;
	}

	.trip-card {
		display: block;
		border-radius: 16px;
		border: 1px solid #E3E3E3;
		text-align: center;
		padding: 24px;
	}

	.trip-card .tc-item .tc-content {
		padding-right: 0;
		width: 100%;
		margin: 0;
	}

	.trip-card .tc-item {
		row-gap: 16px;
		margin-bottom: 24px;
	}

	.trip-card .tc-item .tc-content::after {
		display: none;
	}

	.trip-card .tc-content.tc-name {
		display: block;
	}

	.trip-card .tc-content.tc-name img {
		width: 100%;
		height: auto;
		object-fit: cover;
		aspect-ratio: 336 / 128;
	}

	.trip-card .tc-content .tc-inner {
		padding: 24px 0 0;
	}

	.trip-card .tc-content.tc-name span,
	.trip-card .tc-content > span {
		font-size: 14px;
		line-height: 16px;
		margin-bottom: 8px;
	}

	.trip-card .tc-content h5 {
		font-size: 12px;
		line-height: 1.25;
		font-weight: 600;
	}

	.trip-card .tc-content p {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.5px;
		color: #051721;
	}

	.tc-btn-wrap {
		flex-wrap: wrap;
		column-gap: 0;
		row-gap: 24px;
	}

	.tc-btn-wrap .view-detail-btn,
	.tc-btn-wrap .delete-btn {
		width: 100%;
	}

	.tc-btn-wrap form {
		width: 100%;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	/*-_-_Popular-Trips-Page_CSS_Start_-_-*/
	.my-trip-plan-wrap.form-sec-wrap h1 {
		text-align: center;
		margin-bottom: 24px;
	}

	.my-trip-plan-wrap .my-trip-plan-row {
		margin-bottom: 20px;
	}

	.my-trip-plan-wrap .my-trip-plan-btn {
		gap: 8px;
		margin-bottom: 24px;
	}

	.my-trip-plan-wrap .total-budget {
		align-items: center;
        justify-content: center;
        flex-direction: column;
	}

	.total-budget h5 {
		font-size: 20px;
        max-width: unset;
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
	}

	.total-budget .total-price {
		font-size: 20px;
	} 

	.my-trip-plan-wrap .mytrip-plan-heading-wrap,
	.mytrip-plan-heading-wrap .swiper-button-prev, 
	.mytrip-plan-heading-wrap .swiper-button-next {
		display: none;
	}

	.date-card {
		display: block;
	}


	.my-trip-plan-wrap .mytrip-plan.swiper-container {
        margin: 0 0 0 -7.5px;
        width: calc(100% + 22.5px);
    }

	.my-trip-plan-wrap .mytrip-plan .swiper-wrapper {
        overflow-x: auto;
    }

	.my-trip-plan-wrap .mytrip-plan .swiper-slide {
        width: 100%;
        max-width: 90%;
		padding-top: 10px;
    }

	.my-trip-plan-wrap .mytrip-plan .mytrip-plan-heading-mobile {
		display: block;
		border-radius: 12px;
		padding: 16px 0;
		margin-bottom: 24px;
        box-shadow: 0 3px 11.8px 0 rgba(17, 34, 17, 0.05);
	} 

	.mytrip-plan-heading-mobile h5 {
		font-size: 18px;
		line-height: 1.25;
		color: #006994;
		font-family: "Montserrat Alternates", sans-serif;
		letter-spacing: 0.5px;
		font-weight: 600;
		margin-bottom: 10px;
	}

	.mytrip-plan-heading-mobile p {
		font-size: 12px;
		line-height: 1.5;
    	color: #006994;
		font-family: "Inter", sans-serif;
		letter-spacing: 0.5px;
		font-weight: 500;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap {
		margin-bottom: 24px;
	}

	.my-trip-plan-wrap .mytrip-plan .trip-card-wrap:last-child {
		margin-bottom: 12px;
	}
	/*-_-_Popular-Trips-Page_CSS_End_-_-*/

	
	/*-_-_Detail-Page_CSS_Start_-_-*/
	.detail-wrap .detail-content {
		padding: 48px 0;
	}

	.detail-content .detail-inner-wrap {
		gap: 10px;
		margin-bottom: 12px;
	}

	.detail-inner .reviews-wrap p {
		font-size: 12px;
		line-height: 1.5;
	}

	.detail-inner-wrap .card-price h6 {
		font-size: 16px;
		line-height: 1.5;
		font-weight: 500;
		font-family: "Inter", sans-serif;
	}

	.detail-inner-wrap .card-price h6 span {
		font-weight: 500;
	}

	.detail-inner-wrap .card-price .share-btn {
		width: 30px;
		height: 30px;
	}

	.card-price .share-btn i {
		font-size: 12px;
	}

	.gallery-wrap {
		grid-template-areas:
        'image1 image1 image1 image1 image1 image1 image1 image1 image1 image1 image1 image1'
        'image2 image2 image2 image2 image2 image2 image3 image3 image3 image3 image3 image3'
        'image4 image4 image4 image4 image4 image4 image5 image5 image5 image5 image5 image5';
		margin-bottom: 48px;
		row-gap: 8px;
		column-gap: 8px;
	}

	.gallery-wrap a img {
		aspect-ratio: 188 / 106;
		border-radius: 10px !important;
	}

	.gallery-wrap a:first-child img {
		width: 100%;
		aspect-ratio: 796 / 550;
	}

	.gallery-wrap a:nth-child(5)::before {
		border-radius: 10px !important;
	}

	.gallery-wrap a:nth-child(5)::after {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		right: auto;
		bottom: auto;
		font-size: 10px;
		line-height: 34px;
		padding: 0 7.5px;
	}

	.detail-content-wrap .overview-wrap h4,
	.detail-content-wrap .available-rooms-wrap h4, 
	.detail-content-wrap .more-info-wrap h4,
	.detail-content-wrap .reviews-wrap h4 {
		font-size: 18px;
		font-weight: 600;
	}

	.overview-wrap p {
		font-size: 12px;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.overview-wrap ul,
	.overview-wrap ol {
        padding-left: 28px;
		margin-bottom: 15px;
	}

	.overview-wrap ul li,
	.overview-wrap ol li {
		font-size: 12px;
	}

	.available-rooms-wrap ul li {
		padding-top: 32px;
		flex-direction: column;
		align-items: flex-start;
	}

	.available-rooms-wrap ul li h6,
	.available-rooms-wrap ul li h6 span {
		line-height: 1.5;
		color: #006994;
	}

	.more-info-accordion .accordion-button {
		font-size: 14px;
		line-height: 1.25;
		padding: 22px 18px;
	}

	.more-info-accordion .accordion-button::after {
		width: 20px;
		height: 20px;
	}

	.more-info-accordion .accordion-button:not(.collapsed) {
		font-size: 16px;
		padding: 16px 16px 10px;
	}

	.more-info-accordion .accordion-body {
		padding: 0 16px 14px;
	}

	.more-info-accordion .accordion-body ol,
	.more-info-accordion .accordion-body ul {
		padding-left: 20px;
	}

	.more-info-accordion .accordion-body ol li,
	.more-info-accordion .accordion-body ul li,
	.more-info-accordion .accordion-body p {
		font-size: 14px;
		line-height: 1.5;
	}

	.reviews-wrap .review-rating {
		padding-bottom: 16px;
	}

	.reviews-wrap .review-rating h2 {
		font-size: 24px;
	}

	.review-rating .review-by {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: calc(100% - 40px);
	}

	.review-rating .review-by p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 0;
	}

	.review-rating .review-by span {
		font-size: 12px;
	}

	.request-book-btn { 
		height: 42px;
	}

	.booking-request-form {
		padding: 16px;
	}

	.booking-request-form h3 {
		font-size: 24px;
		padding: 4px 0;
		margin-bottom: 16px;
	}

	.booking-request-form .form-row {
		margin: 0 -5px 20px;
	}

	.booking-request-form .form-row .col-6,
	.booking-request-form .form-row .col-12 {
		padding: 0 5px;
	}

	.booking-request-form .form-row .form-group {
		margin-bottom: 16px;
	}

	.booking-request-form button {
		height: 42px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/

	/*-_-_Trip-Summary-Details-Modal_CSS_Start_-_-*/    
	.trip-summary-details-modal .trip_summary_row .trip_summary_content {
        margin-bottom: 0;
    }
	/*-_-_Trip-Summary-Details-Modal_CSS_End_-_-*/

	/*-_-_Calculate-Fare_CSS_Start_-_-*/

	.calculated-row {
        margin: -8px -6px 10px;
    }

	.calculated-row .calculated-col label {
        font-size: 12px;
        margin-bottom: 5px;
    }

	.card-content .calculate-fare.card-inner {
		flex-wrap: wrap;
		row-gap: 10px;
        margin-bottom: 12px;
	}

	.calculate-fare.card-inner .card-reviews-wrap {
		width: 100%;
	}

	.card-content .calculate-fare.card-inner h5 {
		min-height: unset;
	}

	.cal-fare-dropdown {
		width: 100%;
	}

	.cal-fare-dropdown .dropdown-toggle {
		font-size: 12px;
        line-height: 1.5;
		padding: 6px 15px;
		width: 100%;
	}

	.cal-fare-dropdown .dropdown-menu {
		max-width: 260px;
		border-radius: 6px;
		inset: auto -10px 100% auto !important
	}

	.cal-fare-dropdown .dropdown-menu .form-group {
		margin-bottom: 12px;
	}

	.cal-fare-dropdown .dropdown-menu label {
		font-size: 10px;
		line-height: 14px;
	}

	.cal-fare-dropdown .dropdown-menu select {
		height: 32px;
		padding: 0 10px;
	}

	.cal-fare-dropdown .dropdown-menu button {
		padding: 7px 15px;
        font-size: 12px;
	}

	.calculated-row .calculated-col input {
        height: 34px;
    }
	/*-_-_Calculate-Fare_CSS_End_-_-*/
}

@media only screen and (max-width: 575px) {
	/*-_-_Home_CSS_Start_-_-*/
	.popular-slider {
        padding-bottom: 0;
		display: flex;
		overflow-y: auto;
		width: calc(100% + 15px);
		max-width: calc(100% + 15px);
	}

	.popular-slider .popular-slide {
		min-width: 90%;
		width: 90%;
		margin: 0 15px 0 0;
	}
	/*-_-_Home_CSS_End_-_-*/

	/*-_-_Content_CSS_Start_-_-*/
	.newsletter-wrap .newsletter-row {
		border-radius: 0px;
		max-width: unset;
		margin: 0 -16px;
	}

	.newsletter-row .newsletter-content {
		width: 100%;
		padding: 44px 16px 32px;
	}

	.booking-request-form {
		display: none;
		margin-top: 24px;
	}

	.request-book-btn {
		display: block;
	}
	/*-_-_Content_CSS_End_-_-*/
}

/* @media only screen and (max-width: 480px) {
	.content {
		overflow: hidden;
	}
} */

@media only screen and (max-width: 374px) {
	.date-card {
		width: 100%;
	}
}