@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

/*scroll style start*/
::-webkit-scrollbar {
	height: 6px;
	width: 6px;
}

::-webkit-scrollbar-track {
	box-shadow: none;
	background: #ffffff;
}

::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: none;
	height: 2px;
}
/*scroll style end*/

/* font-family: 'Mukta', sans-serif;
font-family: 'Philosopher', sans-serif; */

body {
	font-family: 'Mukta', sans-serif;
	color: var(--theme-blue);
	padding-top: 0 !important;
}

.gutter-cstm {
	--bs-gutter-x: 1.7rem;
}
/*general classess start*/
.no-padding {
	padding: 0;
}

.no-margin {
	margin: 0;
}

.section_box {
	padding: 80px 0px;
	z-index: 0;
	position: relative;
}

a {
	text-decoration: none;
}

p {
	font-size: var(--btn-font-size);
	font-weight: 500;
	margin: 0 0 10px 0;
	padding: 0;
	color: var(--theme-blue);
}
/*general classess end*/

/*to top start*/
.scroll_top {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 9999;
	padding: 10px;
	text-align: center;
	background: var(--theme-orange);
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 30px;
	right: 40px;
	display: none;
	align-items: center;
	justify-content: center;
}

.scrollToTop:hover {
	text-decoration: none;
}

.scroll_top a {
	filter: brightness(0) invert(1);
}
/*to top end*/

/*general button style start*/
.button_ui a {
	background: var(--theme-blue);
	color: var(--white);
	font-size: 16px;
	font-weight: normal;
	text-transform: capitalize;
	text-decoration: none;
	padding: 8px 30px;
	border-radius: var(--border-radius);
	transition: 0.6s all;
}

	.button_ui a img {
		margin: 0 0 0 16px;
		width: 18px;
	}

	.button_ui a:hover {
		background: var(--theme-orange);
		transition: 0.6s all;
	}
/*general button style end*/

/*general tab design start*/
.nav-pills .nav-link {
	color: var(--font-light-grey);
	font-size: 20px;
	font-weight: normal;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	padding: 0;
	margin: 0 30px 0 0;
}

	.nav-pills .nav-link.active {
		background: none;
		color: var(--black);
		border-bottom-color: var(--theme-orange);
	}
/*general tab design end*/

/*general accordian style start*/
.accordion-item {
	border: none;
	border-bottom: 1px solid #cdcdcd;
}

	.accordion-item .accordion-button {
		padding: 20px 0;
		color: var(--theme-blue);
		font-size: var(--sub-title-font-size);
		font-weight: 500;
	}

		.accordion-item .accordion-button[aria-expanded='true'],
		.accordion-item .accordion-button:focus {
			box-shadow: none;
			background: var(--white);
			color: var(--theme-orange);
		}

	.accordion-item .accordion-body {
		padding: 0 0 20px 0;
	}

	.accordion-item:last-of-type .accordion-collapse {
		border-radius: 0;
	}
/*general accordian style end*/

/*general vouchar card design start*/
.voucher_card {
	background: var(--white);
	border-radius: 16px;
	margin: 15px 0;
	position: relative;
	transition: 0.6s all;
}

	.voucher_card:hover {
		box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.25);
		transition: 0.6s all;
	}

	.voucher_card.grey_card {
		background: var(--bg-light-grey);
	}

	.voucher_card .voucher_image {
		width: 100%;
		height: 275px;
		position: relative;
		overflow: hidden;
	}

.section_box.what_new_area .voucher_card .voucher_image {
	height: 210px;
}
/* .section_box.event_listing_area .voucher_card .voucher_image {height: 210px;} */
.voucher_card .voucher_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	filter: none;
	-webkit-filter: grayscale(0);
}

.voucher_card .voucher_image::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100% );
	background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100% );
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.voucher_card:hover .voucher_image::before {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
	transition: 0.6s all;
}

.voucher_card:hover .voucher_image img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}

.voucher_card .voucher_details {
	padding: 20px;
}

.voucher_card .voucher_title,
.voucher_card .voucher_title a {
	/* font-size: var(--voucher-main-title); */
	font-size: 20px;
	font-weight: 600;
	color: var(--theme-blue);
	text-decoration: none;
	transition: 0.6s all;
	min-height: 4rem;
	line-height: 30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

	.voucher_card .voucher_title a:hover {
		color: var(--theme-orange);
		transition: 0.6s all;
	}

.voucher_card .voucher_sub_title {
	font-size: var(--sub-title-font-size);
	color: var(--font-dark-grey);
	margin: 0;
	font-weight: 600;
	line-height: 20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* number of lines to show */
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.voucher_card .voucher_partner {
	padding: 5px 0;
}

.voucher_card .voucher_venue {
	/* font-size: var(--sub-title-font-size); */
	font-size: var(--btn-font-size);
	color: var(--theme-orange);
	text-transform: capitalize;
	font-weight: 600;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 60px;
}

.voucher_card .voucher_location {
	font-size: var(--btn-font-size);
	color: var(--font-dark-grey);
	display: flex;
	min-height: 50px;
}

	.voucher_card .voucher_location img {
		margin: 0 8px 0 0;
	}

.voucher_card .voucher_pricing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0 10px 0;
}

	.voucher_card .voucher_pricing .voucher_price {
		font-size: var(--voucher-main-title);
		color: var(--theme-orange);
		/* color: var(--font-dark-grey); */
		font-weight: 500;
	}

.voucher_card:hover .button_ui a {
	background: var(--theme-orange);
	color: var(--white);
}

.voucher_card .voucher_validation {
	position: absolute;
	background: var(--red);
	color: var(--white);
	text-transform: uppercase;
	font-size: var(--btn-font-size);
	font-weight: 400;
	padding: 10px 15px;
	top: 30px;
	left: -10px;
}

	.voucher_card .voucher_validation:before {
		content: '';
		position: absolute;
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-bottom: 0 solid transparent;
		border-right: 10px solid #7c0808;
		top: -10px;
		left: 0;
	}
/* section.home_selling_voucher .section_heading_box .section_heading {
	margin-bottom: 1rem;
} */
#trendingProductSection .voucher_card .voucher_details {
	display: flex;
	flex-direction: column;
}

/* Shine */
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}
/*general vouchar card design end*/

/*sections heading style start*/
.section_heading_box {
	display: flex;
	align-items: end;
	justify-content: space-between;
	color: var(--theme-blue);
}

	.section_heading_box h3.main_title {
		font-size: var(--main-title-font-size);
		font-weight: normal;
		text-transform: capitalize;
	}

		.section_heading_box h3.main_title span {
			font-weight: bold;
		}

	.section_heading_box h5.sub_title {
		font-size: var(--sub-title-font-size);
		font-weight: 500;
		margin-bottom: 0;
	}
/*sections heading style end*/

/*general filter side panel start */
.filter_box {
	background: none;
	margin: 15px 0;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

	.filter_box h5 {
		color: var(--theme-blue);
		font-size: var(--sub-title-font-size);
		font-weight: 600;
		padding: 10px 15px;
		background: #e3e3e3;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	.filter_box .filter_categories {
		padding: 15px 0;
		background: var(--theme-blue);
		margin: 0 0 15px 0;
		border-radius: 10px;
	}

	.filter_box .filter_title {
		position: relative;
		color: #dddddd;
		font-size: var(--btn-font-size);
		font-weight: 600;
		padding: 7px 15px;
		text-transform: capitalize;
	}

		.filter_box .filter_title:before {
			content: '';
			width: 3px;
			height: 100%;
			background: var(--theme-orange);
			position: absolute;
			top: 0;
			left: 0;
		}

	.filter_box .filter_categories ul {
		margin: 0;
		padding: 15px 0 0 15px;
	}

		.filter_box .filter_categories ul li {
			list-style: none;
			margin: 7px 0;
		}

			.filter_box .filter_categories ul li a {
				font-size: var(--btn-font-size);
				color: var(--white);
				font-weight: normal;
				text-transform: capitalize;
				text-decoration: none;
				transition: 0.6s all;
			}

				.filter_box .filter_categories ul li a:hover {
					color: var(--theme-orange);
					transition: 0.6s all;
				}

			.filter_box .filter_categories ul li.active a {
				color: var(--theme-orange);
			}

	.filter_box#event_filter.fixed {
		position: fixed;
		top: 90px;
		width: 15%;
	}
/*general filter side panel end */

/*swiper slider general style start */
#numberSlides {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

.swiper-container,
.swiper-container1 {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
/*swiper slider general style end */

/* inner page banner style start */

.inner_page_banner.inner_banner_with_srch {
	height: 450px;
	margin: 0 0 80px 0;
}

	.inner_page_banner.inner_banner_with_srch.events-page {
		height: 620px;
	}

.inner_page_banner h3 {
	position: relative;
	z-index: 99;
	text-align: center;
	font-size: 40px;
	color: var(--white);
	padding: 70px 0;
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.inner_page_banner h3 span {
		color: var(--theme-orange);
	}

.inner_page_banner .inner_srch_box {
	position: relative;
	z-index: 9999;
	padding: 30px 40px;
	margin: 20px 30px 0 30px;
	background: var(--theme-blue);
	border-radius: 22px;
	border: 10px solid var(--white);
}

.inner_page_banner .banner_srch_area form {
	flex-direction: row; /* justify-content: center; */
}

.inner_page_banner .banner_srch_area input[type='text'],
.inner_page_banner .banner_srch_area select {
	width: 400px;
}

.inner_page_banner .banner_srch_area .banner_srch_actions {
	margin: 0;
}
/* inner page banner style end */

/*header style start*/
header .navbar-toggler:focus {
	box-shadow: none;
}

header {
	position: absolute;
	width: 100%;
	background: linear-gradient(180deg, #0d1121 13.03%, rgba(13, 17, 33, 0) 100%);
	z-index: 999;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
}

	header .fixed-top {
		width: 100%;
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
		transition: all 1s ease;
		background: linear-gradient(180deg, #0d1121 13.03%, rgba(13, 17, 33, 0) 100%);
		z-index: 999;
	}

	header .navbar-default .navbar-brand > img {
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
		transition: all 1s ease;
		max-width: 80%;
	}

	header .fixed-top .navbar-brand img {
		max-width: 60%;
	}

	header .fixed-top .navbar-brand {
		-webkit-transition: all 1s ease-in-out;
		-moz-transition: all 1s ease-in-out;
		-o-transition: all 1s ease-in-out;
		transition: all 1s ease-in-out;
	}

	header .container-fluid {
		padding: 0 40px;
	}

	header .main_header {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		z-index: 1;
	}

	header .navbar-nav .nav-link {
		font-size: 20px;
		font-weight: normal;
		text-transform: capitalize;
		color: var(--white);
		position: relative;
		transition: 0.6s all;
	}

		header .navbar-nav .nav-link:hover {
			color: var(--theme-orange);
			transition: 0.6s all;
		}

		header .navbar-nav .nav-link:before {
			content: '';
			position: absolute;
			width: 60%;
			height: 2px;
			border-radius: 100px;
			background: var(--theme-orange);
			bottom: 0;
			left: 50%;
			transform: translateX(-50%) scale(0);
			transition: 0.6s all;
		}

		header .navbar-nav .nav-link:hover:before {
			transform: translateX(-50%) scale(1);
			transition: 0.6s all;
		}

	header.navbar-fixed {
		top: 0;
		z-index: 99999;
		position: fixed;
		width: 100%;
		transition: 0.6s all;
	}

	header .navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 15px;
		padding-left: 15px;
	}

	header.navbar-fixed {
		transition: 0.6s all;
	}

		header.navbar-fixed .navbar-brand img {
			width: 70px;
			transition: 0.6s all;
		}

		header.navbar-fixed .navbar-nav .nav-link {
			font-size: 17px;
		}

	header .navbar-default {
		transition: padding 1s ease 0s;
	}
/*header style end*/

/*home page slider start*/
section.home_page_banner {
	width: 100%;
	background: var(--dark-blue);
	position: relative;
	overflow: hidden;
}

	section.home_page_banner .banner_top {
		margin: 180px 0 0 40px;
		text-align: left;
		position: relative;
	}

	section.home_page_banner .banner_info {
		font-size: 66px;
		color: var(--white);
		padding: 0 15px 70px 0;
		position: relative;
		z-index: 99;
	}

		section.home_page_banner .banner_info span {
			color: var(--theme-orange);
		}

	section.home_page_banner .banner_heading_one {
		font-weight: normal;
	}

	section.home_page_banner .banner_heading_two {
		font-weight: 700;
	}

.home_banner_slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.home_page_banner .banner_slider {
	position: relative;
	z-index: 99;
	margin: 0 -2px 0 -2px;
}

section.home_page_banner .swiper-slide {
	background: transparent;
	display: block;
}
/* section.home_page_banner .swiper-slide img {min-height: 12.5rem; object-fit: cover; } */
.search_thumbnail .swiper-slide img {
	height: 12.5rem;
	object-fit: cover;
}

section.home_page_banner .banner_slider_image {
	padding-left: 3px;
	width: 100%;
	height: 600px;
}

	section.home_page_banner .banner_slider_image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

section.home_page_banner .banner_slider .slider_paginations {
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.52);
	color: var(--white);
	padding: 20px 25px;
	position: absolute;
	z-index: 99;
	width: 140px;
	left: 70%;
	transform: translateX(-50%);
	bottom: 30px;
}

section.home_page_banner .banner_slider #numberSlides {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 9999;
	transform: translate(-50%, -50%);
	top: 50%;
}

section.home_page_banner .banner_slider .swiper-button-prev {
	background: url(../images/home_slider_arrow.svg) no-repeat;
	width: 12px;
	height: 12px;
	margin: 0;
	bottom: 50px;
	transform: translateY(50%);
	left: 67%;
	top: inherit;
	z-index: 99;
}

section.home_page_banner .banner_slider .swiper-button-next {
	background: url(../images/home_slider_arrow_nxt.svg) no-repeat;
	width: 12px;
	height: 12px;
	margin: 0;
	bottom: 50px;
	transform: translateY(50%);
	right: 26.7%;
	top: inherit;
	z-index: 99;
}

section.home_page_banner .slider_cta a {
	color: var(--white);
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
	transition: 0.6s all;
	text-transform: capitalize;
	border: 1px solid #ffffff;
	border-radius: 8px;
	padding: 10px 40px;
}

	section.home_page_banner .slider_cta a:hover {
		background: var(--theme-orange);
		border-color: var(--theme-orange);
		transition: 0.6s all;
	}

section.home_page_banner::before {
	content: '';
	width: 750px;
	height: 750px;
	position: absolute;
	left: 33%;
	transform: translateX(-50%);
	bottom: -130px;
	border-radius: 750px;
	background: url(../images/home_banner_bg.png) no-repeat;
}

section.home_page_banner .banner_bottom {
	background: var(--theme-blue);
	position: relative;
	margin: 0 -15px 0 -15px;
}

section.home_page_banner .search_thumbnail ul {
	display: flex;
}

section.home_page_banner .search_thumbnail li {
	list-style: none;
	display: inline-block;
	padding: 0;
	margin: 0;
	height: 200px;
	flex: 1;
}
	/*width:33%;*/
	section.home_page_banner .search_thumbnail li img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

section.home_page_banner .banner_srch_box {
	display: flex;
	align-items: center;
}
/* section.home_page_banner .swiper-slide { height:700px; } */
.banner_srch_area {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 50px;
	width: 100%;
}

	.banner_srch_area form {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		flex-direction: column;
		gap: 20px;
	}

	.banner_srch_area .banner_srch_actions {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 15px 0 5px 0;
	}

	.banner_srch_area label {
		color: var(--white);
		font-size: 18px;
		font-weight: normal;
		margin: 0 30px;
		padding: 0;
	}

	.banner_srch_area .banner_srch_heading label {
		font-size: 25px;
	}

	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		background: var(--white);
		border-radius: 8px;
		font-size: 18px;
		padding: 12px 16px;
		color: var(--dark-blue);
		border: none;
		width: 370px;
	}

		.banner_srch_area select option {
			color: var(--dark-blue);
			font-size: 18px;
		}

		.banner_srch_area input[type='text']:focus,
		.banner_srch_area select:focus {
			box-shadow: none;
			outline: none;
		}

		.banner_srch_area input[type='text']:hover,
		.banner_srch_area select:hover {
			border: none;
		}

		.banner_srch_area input[type='text'].srch_field {
			padding-right: 50px;
		}
		/* background:#ffffff url(../images/search_icon.png) no-repeat; background-position:95% center; */
		.banner_srch_area select.srch_type {
			background: #ffffff url(../images/dropdown_arrow.png) no-repeat;
			background-position: 95% center;
			padding-right: 50px;
		}

.srch_location {
	position: relative;
}

	.srch_location button.srch_location_btn {
		background: var(--white);
		box-shadow: none;
		outline: none;
		transition: 0.6s all;
		border: none;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 8px;
		height: calc(100% - 12px);
		border-radius: var(--border-radius);
	}

		.srch_location button.srch_location_btn:focus {
			box-shadow: none;
			border: none;
			outline: none;
		}

		.srch_location button.srch_location_btn:hover {
			background: var(--theme-orange);
			transition: 0.6s all;
		}
/*home page slider end*/

/*home page voucher section start */
section.home_selling_voucher {
	background: var(--bg-light-grey);
}

	section.home_selling_voucher .nav-pills {
		margin-bottom: 40px;
	}

	section.home_selling_voucher .home_voucher_list .tab-content > .active {
		min-height: 500px;
	}
/*home page voucher section end */

/*home page gift section start */
.gift_lists .voucher_card {
	background: var(--bg-light-grey);
}

	.gift_lists .voucher_card .voucher_location {
		color: var(--font-light-grey);
	}
/*home page gift section end */

/*home page what new section start */
section.whats_new_area {
	background: var(--bg-light-grey);
}
/*home page what new section end */

/*home page category start*/
section.home_category_area {
	overflow: hidden;
}

	section.home_category_area .category_details {
		margin: 50px 0 0 0;
	}

	section.home_category_area .swiper-container1 {
		position: relative;
	}

	section.home_category_area .swiper-slide {
		display: block;
		padding: 0 0px;
	}

	section.home_category_area .home_category_card {
		background: var(--bg-light-grey);
		border-radius: 15px;
		overflow: hidden;
		/* height: 200px;  */
		width: 100%;
		padding: 0; /* margin: 15px 0; */
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.center
	.medium_height_card {
		height: 700px;
	}

	section.home_category_area .large_height_card {
		/* height: 700px !important; */
		height: auto !important;
	}

	section.home_category_area .home_category_image {
		/* width: 600px;  */
		width: 100%;
		/* height:550px;  */
		background: var(--theme-blue);
		position: relative;
		/* border-radius: 100%; */
		/* margin: -290px 0 0 -110px; */
		margin: 0;
		/* border-radius: 0% 0% 54% 61% / 0% 0% 17% 40%; */
		border-radius: 0% 0% 110% 100% / 0% 0% 130% 50%;
		/* margin: 0; */
		overflow: hidden;
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 410px !important;
	}

	section.home_category_area .medium_height_card {
		height: 410px;
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active.center
	.medium_height_card
	.home_category_image {
		width: 1200px;
		height: 1200px;
		margin: -620px 0 0 -240px;
	}

	section.home_category_area .large_height_card .home_category_image {
		/* width: 1200px; height: 1200px; margin: -620px 0 0 -240px;  */
		width: auto;
		/* height: 100%;  */
		margin: 0;
	}

		section.home_category_area .large_height_card .home_category_image img {
			/* height: 550px; */
			height: 450px;
		}

	section.home_category_area .home_category_image img {
		width: 100%;
		/* height: 100%;  */
		/* object-fit: cover; border-radius: 100%;  */
		/* border-radius: 0% 0% 54% 61% / 0% 0% 17% 40%; */
		border-radius: 0% 0% 110% 100% / 0% 0% 130% 50%;
	}

	section.home_category_area .home_category_name {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 30px 20px;
		text-align: left;
	}

		section.home_category_area .home_category_name span {
			max-width: 11.25rem;
			font-size: var(--sub-title-font-size);
			font-weight: 600;
		}

	section.home_category_area .center .home_category_name span {
		max-width: 100%;
	}

	section.home_category_area .home_category_name a {
		width: 50px;
		height: 50px;
		border-radius: 100px;
		border: 1px solid var(--theme-blue);
		padding: 0px 0 0 0;
		transition: 0.6s all;
		background: var(--theme-blue);
		display: flex;
		align-items: center;
		justify-content: center;
	}

		section.home_category_area .home_category_name a img {
			filter: brightness(0) invert(1);
			width: 24px;
			width: 24px !important;
			object-fit: contain !important;
		}

	section.home_category_area .home_category_card:hover .home_category_name a {
		background: var(--theme-orange);
		border-color: var(--theme-orange);
		transition: 0.6s all;
	}

	section.home_category_area .home_category_card:hover .home_category_name img {
		filter: brightness(0) invert(1);
	}

	section.home_category_area .home_category_pagination {
		display: flex;
		position: absolute;
		align-items: center;
		left: 50%;
		transform: translateX(-50%);
		bottom: 60px;
		z-index: 999;
		width: 50%;
		justify-content: center;
	}

		section.home_category_area .home_category_pagination .slide_counter {
			margin: 0 30px;
			background: var(--theme-blue);
			border-radius: 100px;
			color: var(--white);
			z-index: 99;
			font-size: var(--sub-title-font-size);
			font-weight: 600;
			text-align: center;
			width: 60px;
			height: 60px;
			line-height: 3em;
		}

		section.home_category_area .home_category_pagination .swiper-button-next1 {
			background: var(--theme-blue) url(../images/home_slider_arrow_nxt.svg) no-repeat;
			background-position: center;
			z-index: 99;
			width: 40px;
			height: 40px;
			margin: 0;
			top: 50%;
			border-radius: 100px;
		}

		section.home_category_area .home_category_pagination .swiper-button-prev1 {
			background: var(--theme-blue) url(../images/home_slider_arrow.svg) no-repeat;
			background-position: center;
			z-index: 99;
			width: 40px;
			height: 40px;
			margin: 0;
			top: 50%;
			left: 15px;
			border-radius: 100px;
		}

			section.home_category_area .home_category_pagination .swiper-button-next1:hover,
			section.home_category_area
			.home_category_pagination
			.swiper-button-prev1:hover {
				cursor: pointer;
			}

		section.home_category_area
		.home_category_pagination
		.swiper-button-next1:hover {
			background: var(--theme-orange) url(../images/home_slider_arrow_nxt.svg) no-repeat;
			background-position: center;
		}

		section.home_category_area
		.home_category_pagination
		.swiper-button-prev1:hover {
			background: var(--theme-orange) url(../images/home_slider_arrow.svg) no-repeat;
			background-position: center;
		}

		section.home_category_area .home_category_pagination:after {
			content: '';
			position: absolute;
			width: 100%;
			height: 2px;
			top: 50%;
			transform: translateY(-50%);
			background: url(../images/pagination_line.svg);
			background-position: center;
		}
/*home page category end*/

/* slider category start */
#categoryProductSection .owl-item.active.center .center-hide {
	display: none;
}

.flip-hover {
	/* -webkit-transition: 2s; -webkit-transform-style: preserve-3d; -moz-transition: 2s; -moz-transform-style: preserve-3d; -o-transition: 2s; -o-transform-style: preserve-3d; transition: 2s; transform-style: preserve-3d; background: var(--bg-light-grey); border-radius: 15px; overflow: hidden;  */
	/* height: 200px; */
	transition: 0.5s;
}

.home_category_card:hover .flip-hover,
.home_category_card:focus .flip-hover {
	/* -webkit-transform: rotateY(360deg); -moz-transform: rotateY(360deg); -o-transform: rotateY(360deg); transform: rotateY(360deg); */

	transform: scale(0.95);
}

#categoryProductSection .owl-nav,
#categoryProductSection .owl-dots {
	display: flex;
	justify-content: center;
	column-gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	width: fit-content;
	margin: 0 auto;
}

	#categoryProductSection .owl-nav button span {
		font-size: 0;
	}

#categoryProductSection button.owl-prev {
	background: var(--theme-blue) url(../images/home_slider_arrow.svg) no-repeat;
	background-position: center;
	z-index: 99;
	width: 40px;
	height: 40px;
	margin: 0;
	top: 50%;
	left: 15px;
	border-radius: 100px;
}

#categoryProductSection button.owl-next {
	background: var(--theme-blue) url(../images/home_slider_arrow_nxt.svg) no-repeat;
	background-position: center;
	z-index: 99;
	width: 40px;
	height: 40px;
	margin: 0;
	top: 50%;
	border-radius: 100px;
}

#categoryProductSection button.owl-prev:hover {
	background: var(--theme-orange) url(../images/home_slider_arrow.svg) no-repeat;
	background-position: center;
}

#categoryProductSection button.owl-next:hover {
	background: var(--theme-orange) url(../images/home_slider_arrow_nxt.svg) no-repeat;
	background-position: center;
}

#categoryProductSection .owl-stage-outer .owl-stage {
	display: flex;
	/* align-items: center; */
	justify-content: center;
	column-gap: 5px;
}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item .item {
		position: relative;
		/* height: 410px; */
		overflow: hidden;
	}

		#categoryProductSection .owl-stage-outer .owl-stage .owl-item .item img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 301px !important;
		transition: width 0.5s;
	}

		#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active.center {
			width: 602px !important;
		}

			#categoryProductSection
			.owl-stage-outer
			.owl-stage
			.owl-item.active.center
			.item {
				/* height: 710px; */
			}

				#categoryProductSection
				.owl-stage-outer
				.owl-stage
				.owl-item.active.center
				.item
				img {
					width: 100%;
					height: 100%;
					object-fit: cover;
				}

#categoryProductSection .owl-item > div {
	cursor: auto;
}
/* slider category end */

/*home page event start */
section.home_events_area {
	background: var(--bg-light-grey);
}

	section.home_events_area .events_details {
		padding: 50px 0 0 0;
	}

		section.home_events_area .events_details .nav-pills {
			display: flex;
			flex-direction: column;
			row-gap: 20px;
		}

	section.home_events_area .nav-pills .nav-link {
		background: var(--white);
		border: 1px solid #e2e2e2;
		border-radius: 12px 16px;
		padding: 16px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		transition: 0.6s all;
		position: relative;
		margin-right: 0px;
	}
		/*section.home_events_area .nav-pills .nav-link:hover { border-color: var(--theme-blue); transition: 0.6s all; }*/

		/* section.home_events_area .nav-pills .nav-link.active {
	border-color: var(--theme-blue);
	box-shadow: 5px 10px 25px 0px rgba(38, 52, 139, 0.25);
} */

		section.home_events_area .nav-pills .nav-link:before {
			content: '';
			position: absolute;
			width: 34px;
			height: 34px;
			background: url(../images/event_tab_active.svg) no-repeat;
			top: -1px;
			left: -2px;
			opacity: 0;
		}
/* section.home_events_area .nav-pills .nav-link.active:before {
	opacity: 1;
} */

/* fixed box scrolling start */
.event-scrollfixed-box {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	min-height: 109px;
	background: transparent;
	border: 2px solid #e2e2e2;
	border-radius: 12px 16px;
	/* padding: 16px; */
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: 0.6s all;
	margin-right: 0px;
	border-color: var(--theme-blue);
	/* box-shadow: 5px 10px 25px 0px rgba(38, 52, 139, 0.25); */
	z-index: 11;
}

.event-scrollfixed-boxouter {
	position: relative;
}

	.event-scrollfixed-boxouter:before {
		content: '';
		position: absolute;
		width: 34px;
		height: 34px;
		background: url(../images/event_tab_active.svg) no-repeat;
		/* top: -1px;
	left: -2px; */
		top: -1px;
		left: -0.6px;
		opacity: 0;
		z-index: 11;
	}

	.event-scrollfixed-boxouter:before {
		opacity: 1;
	}
/* fixed box scrolling end */

section.home_events_area .nav-pills .event_thumb {
	width: 75px;
	min-width: 75px;
	height: 75px;
	border-radius: 100px;
	border: 2px solid var(--white);
}

	section.home_events_area .nav-pills .event_thumb img {
		border-radius: 100px;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
/* section.home_events_area .nav-pills .nav-link.active .event_thumb { border-color: var(--theme-blue); } */

section.home_events_area .event_thumb_info {
	text-align: left;
	padding: 0 0 0 30px;
	display: flex;
	column-gap: 15px;
	align-items: center;
}

section.home_events_area .event_thumb_title {
	color: var(--theme-orange);
	font-size: var(--sub-title-font-size);
	font-weight: 600;
	text-transform: capitalize;
}

section.home_events_area .event_thumb_price {
	font-size: var(--voucher-main-title);
	color: var(--font-dark-grey);
	font-weight: 600;
}

section.home_events_area .events_hightlight .events_images {
	border-radius: 16px;
	width: 100%;
	height: 500px;
}

	section.home_events_area .events_hightlight .events_images img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 16px;
	}

section.home_events_area .event_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

	section.home_events_area .event_info h5 {
		font-size: var(--bigger-fonts);
		font-weight: 700;
		color: var(--font-dark-grey);
		text-transform: capitalize;
	}

	section.home_events_area .event_info .button_ui {
		display: flex;
	}

section.home_events_area .event_location {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 0 0 20px 0;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 10px;
}

	section.home_events_area .event_location img {
		margin: 0 8px 0 0;
	}

	section.home_events_area .event_location span {
		color: var(--font-dark-grey);
		font-size: var(--btn-font-size);
	}

section.home_events_area .event_info p {
	color: var(--font-light-grey);
	font-size: var(--btn-font-size);
	font-weight: normal;
}

section.home_events_area .event_info .events_main_price {
	font-size: var(--voucher-main-title);
	font-weight: 600;
	color: var(--font-dark-grey);
	margin: 0 0 20px 0;
}

section.home_events_area .events_details_right {
	overflow: hidden;
	height: 32.188rem;
	position: relative;
	border-radius: 12px 16px;
}
/*section.home_events_area .events_details .nav-pills.marquee { top: 0; position: relative; animation: marquee 15s linear infinite; }
@keyframes marquee {
    0% { top: 0 }
    100% { top: -125px }
}*/

/*home page event end */

/*footer start*/
footer {
	padding: 80px 40px 0px 40px;
	background: var(--theme-blue);
}

	footer .footer_logo {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		margin-bottom: 1.125rem;
	}

	footer .footer_links {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		margin: 0px 0 0 0;
		padding: 15px 0;
		border-top: 1px solid var(--font-light-grey);
		border-bottom: 1px solid var(--font-light-grey);
		color: var(--white);
	}

		footer .footer_links span {
			font-weight: 600;
			font-size: var(--sub-title-font-size);
			margin: 0 16px 0 0;
		}

		footer .footer_links ul {
			display: flex;
			align-items: center;
			justify-content: flex-start;
		}

			footer .footer_links ul li {
				list-style: none;
			}

			footer .footer_links ul a {
				position: relative;
				transition: 0.6s all;
				font-size: var(--btn-font-size);
				color: var(--font-light-grey);
				text-transform: capitalize;
				text-decoration: none;
				padding: 0 16px;
			}

				footer .footer_links ul a:hover {
					color: var(--theme-orange);
					transition: 0.6s all;
				}

				footer .footer_links ul a:before {
					content: '';
					position: absolute;
					width: 1px;
					height: 60%;
					background: #e2e2e2;
					right: 0;
					top: 5px;
				}

			footer .footer_links ul li:last-child a:before {
				display: none;
			}

	footer p {
		color: var(--white);
		font-size: var(--btn-font-size);
		padding: 20px 0;
		margin: 0;
		text-align: center;
		font-weight: 400;
	}

	footer .footer_bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 1.25rem 0;
	}

		footer .footer_bottom .footer_links {
			border: none;
			width: 38%;
			justify-content: flex-start;
		}

	footer .footer_social {
		width: 33%;
	}

		footer .footer_social ul {
			display: flex;
			align-items: center;
			justify-content: flex-start;
		}

		footer .footer_social li {
			list-style: none;
			margin: 0 16px;
		}

			footer .footer_social li:last-child {
				margin-right: 0;
			}

			footer .footer_social li a {
				padding: 6px;
				border-radius: 5px;
				transition: 0.6s all;
			}

			footer .footer_social li:hover a {
				background: #fe7600;
				transition: 0.6s all;
			}

	footer .copy_write {
		width: 100%;
		border-top: 1px solid var(--font-light-grey);
	}

		footer .copy_write p {
			font-size: var(--btn-font-size);
			color: var(--font-light-grey);
		}
/*footer end*/

/*contact us page start */
.contact_image_area {
	display: flex;
	justify-content: center;
	align-items: center;
}

	.contact_image_area .contact_image {
		width: 500px;
		height: 500px;
		border-radius: 100%;
		border: 7px solid var(--theme-orange);
		padding: 10px;
		background: var(--white);
	}

		.contact_image_area .contact_image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 100%;
		}

.contact_info h4 {
	color: var(--theme-blue);
	padding: 0 0 7px 0;
	margin: 0;
	font-size: var(--voucher-main-title);
	font-weight: 600;
	text-transform: capitalize;
}

.contact_info p {
	font-size: var(--btn-font-size);
	font-weight: 500;
	margin: 0;
	padding: 0;
	color: var(--theme-blue);
}

.contact_details {
	margin: 30px 0 20px 0;
	padding: 0;
}

	.contact_details .list-group-item {
		padding: 0;
		margin: 0 0 30px 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		border: none;
	}

		.contact_details .list-group-item img {
			margin: 0 10px 0 0;
		}

	.contact_details a {
		font-size: var(--btn-font-size);
		font-weight: 500;
		color: var(--theme-blue);
	}

		.contact_details a:hover {
			color: var(--theme-orange);
		}

.contact_info .social_contact {
	margin: 20px 0 0 0;
}

	.contact_info .social_contact ul {
		padding: 0;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

		.contact_info .social_contact ul li {
			list-style: none;
			margin: 0 25px 0 0;
		}
/*contact us page end */

/*terms & privacy policy page start */
.terms_box {
	margin: 0 0 30px 0;
}

	.terms_box p {
		font-weight: normal;
	}

	.terms_box h5 {
		font-size: var(--sub-title-font-size);
	}
/*terms & privacy policy page end */

/*faq page start*/

/* .section_box.faq_area { padding: 80px 150px; } */
.section_box.faq_area .faq_query_box {
	background: #e9e9e9;
	padding: 30px;
	border: 1px solid #bfbfbf;
	margin: 40px 0 0 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.faq_query_box h5 {
	color: var(--theme-blue);
	font-size: var(--voucher-main-title);
	padding: 0 0 20px 0;
	margin: 0;
	text-transform: capitalize;
}

.faq_query_box .button_ui {
	margin: 25px 0 0 0;
}

.section_box.faq_area table {
	width: 100%;
}

.section_box.faq_area ul {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.section_box.faq_area a.toplinks {
	color: var(--theme-orange);
}

.section_box.faq_area .accordion-button:not(.collapsed)::after {
	filter: invert(50%) sepia(80%) saturate(5732%) hue-rotate(2deg) brightness(103%) contrast(106%);
}

.section_box.faq_area .accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: 1px solid #cdcdcd;
}
/*faq page end*/

/*contact page start*/
.section_box.contact_us_area .lft-cnt-info {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.section_box.contact_us_area .cnt-inner {
	display: flex;
	flex-direction: row;
	column-gap: 20px;
	align-items: center;
	transition: all 0.5s ease;
}

	.section_box.contact_us_area .cnt-inner .cnt-rght strong {
		display: block;
	}

	.section_box.contact_us_area .cnt-inner .icon-lft {
		width: 3.75rem;
		height: 3.75rem;
		border-radius: 50%;
		background: var(--theme-blue);
		display: flex;
		align-items: center;
		justify-content: center;
	}

.section_box.contact_us_area .cnt-inner,
.section_box.contact_us_area .rght-form {
	padding: 1.2rem 1.2rem;
}

	.section_box.contact_us_area .rght-form button[type='button'] {
		background: var(--theme-blue);
		color: var(--white);
		font-size: var(--btn-font-size);
		font-weight: normal;
		text-transform: capitalize;
		text-decoration: none;
		padding: 10px 45px;
		border-radius: var(--border-radius);
		transition: 0.6s all;
	}

		.section_box.contact_us_area .rght-form button[type='button']:hover {
			background: var(--theme-orange);
			transition: 0.6s all;
		}

		.section_box.contact_us_area .rght-form input:focus,
		.section_box.contact_us_area .rght-form textarea:focus,
		.section_box.contact_us_area .rght-form button[type='button']:focus {
			box-shadow: none;
			border-color: var(--theme-orange);
		}

	.section_box.contact_us_area .cnt-inner .icon-lft i,
	.section_box.contact_us_area .cnt-inner .icon-lft span {
		font-size: 24px;
		color: var(--white);
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.section_box.contact_us_area .cnt-inner:hover {
		background: var(--theme-orange);
		color: var(--white);
		transition: all 0.5s ease-in-out;
	}

		.section_box.contact_us_area .cnt-inner:hover .icon-lft {
			background: var(--white);
			color: var(--theme-blue);
		}

			.section_box.contact_us_area .cnt-inner:hover .icon-lft span {
				color: var(--theme-blue);
			}

			.section_box.contact_us_area .cnt-inner:hover .icon-lft i,
			.section_box.contact_us_area .cnt-inner .icon-lft span {
				color: var(--theme-blue);
			}

/*contact page end*/

#eventProductSection .button_ui a {
	padding: 5px 25px;
	height: inherit;
	width: auto;
}
/*status message start*/

.success_modal_content {
	padding: 1rem;
}

.success_icon {
	display: flex;
	justify-content: center;
}

	.success_icon img {
		width: 100px;
	}

.notify_message {
	text-align: center;
	margin: 15px 0;
}

	.notify_message h4 {
		font-size: 18px;
		font-weight: 600;
		text-transform: capitalize;
		padding: 0 0 10px 0;
		margin: 0;
	}

	.notify_message p {
		font-size: 16px;
		font-weight: normal;
		padding: 0;
		margin: 0;
	}

	.notify_message button {
		margin: 15px 0 0 0;
	}
/*status message end*/

.banner_srch_area .search {
	position: relative;
}

	.banner_srch_area .search input {
	}

		.banner_srch_area .search input::-webkit-input-placeholder {
			/* Chrome/Opera/Safari */
			color: var(--dark-blue);
		}

		.banner_srch_area .search input::-moz-placeholder {
			/* Firefox 19+ */
			color: var(--dark-blue);
		}

		.banner_srch_area .search input:-ms-input-placeholder {
			/* IE 10+ */
			color: var(--dark-blue);
		}

		.banner_srch_area .search input:-moz-placeholder {
			/* Firefox 18- */
			color: var(--dark-blue);
		}

		.banner_srch_area .search input:focus {
			box-shadow: none;
		}

	.banner_srch_area .search .fa-search {
		position: absolute;
		top: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		right: 16px;
		cursor: pointer;
	}

section.section_box.event_listing_area,
section.section_box.what_new_area {
	padding-top: 0;
}

section.section_box.event_listing_area,
section.section_box.what_new_area {
	padding-left: 30px;
	padding-right: 30px;
}
/*footer 16-07-2024*/
#footer {
	background: #2d3748;
	float: left;
	width: 100%;
	clear: both;
}

.ftr-logo {
	width: 100%;
	float: left;
}

	.ftr-logo a.logo {
		margin-bottom: 30px;
	}

	.ftr-logo a {
		display: block;
		font-size: 14px;
		color: #87879a;
		margin-bottom: 20px;
		text-decoration: none;
	}

		.ftr-logo a:hover {
			opacity: 1 !important;
		}

	.ftr-logo img {
		width: 90px;
	}

	.ftr-logo a.phone {
		cursor: default;
		padding-left: 3px;
	}

	.ftr-logo a i {
		margin-right: 10px;
	}

.ftr-inner {
	width: 100%;
	float: left;
}

	.ftr-inner p {
		color: #87879a;
	}

	.ftr-inner h2 {
		font-size: 20px;
		color: #fff;
		padding-bottom: 20px;
	}

	.ftr-inner ul {
		display: block;
		margin: 0;
		padding: 0;
	}

		.ftr-inner ul li {
			display: block;
			padding-bottom: 18px;
		}

			.ftr-inner ul li a {
				font-size: 16px;
				color: #87879a;
				text-decoration: none;
			}

				.ftr-inner ul li a:hover {
					color: #fff;
				}

.cpy p {
	font-size: 14px;
	color: #87879a;
	text-align: center;
}

.cpy {
	width: 100%;
	float: left;
	border-top: 1px solid #43434b;
	padding: 20px 0;
}

.ftr-soc a {
	display: inline-block;
	margin-right: 15px;
	opacity: 0.5;
}

	.ftr-soc a:hover {
		opacity: 1;
	}

.ftr-soc {
	float: left;
	margin-top: 28px;
}

.accordion .accordion-collapse.collapse.show {
	outline: 2px solid #f265214a;
	border-radius: 5px;
}

#faq .accordion-item button {
	background-color: #3f4d60;
	color: #f26521 !important;
}

#faq .accordion-item .accordion-button.collapsed {
	color: #fff !important;
}
/*19/07/2024*/
.inner_page_banner .inner_srch_box {
	z-index: 99;
	padding: 15px 20px;
	margin: 20px 30px 0 30px;
	background: var(--theme-blue);
	border-radius: 16px;
	border: 2px solid var(--white);
	margin-top: 0;
	position: absolute;
	bottom: -40px;
	right: 0;
	left: 0;
}
/* .inner_page_banner h3 {min-height: 490px;} */
.btn:hover {
	color: #212529 !important;
}

.voucher_card .voucher_details p {
	min-height: 100px;
	font-size: 15px;
	line-height: 20px;
	padding: 5px 0;
	color: var(--black);
}

.hotel_voucher_list_cards .voucher_card .voucher_details {
	height: 100%;
	min-height: 400px;
}
/*13/08/2024*/
.item {
	padding: 80px 0px;
	margin: 5px;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
}

.events_details .owl-dot {
	width: 100%;
	text-align: left;
	padding: 0;
	background-color: #000;
	border-radius: 13px;
}

.events_details .pagi-btn {
	position: relative;
	width: 100%;
	background: #fff !important;
	text-align: left;
	border: none !important;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	padding: 18px 15px;
	border: 1px solid #afadad47 !important;
	border-radius: 8px;
}

.owl-dot.active button.pagi-btn {
	border: 1px solid #000 !important;
	background: #fff !important;
	box-shadow: 0px 0px 20px 0 #abb3ef;
	position: relative;
	border-radius: 25px 8px 8px 8px;
}

.events_details #eventProductSection {
	display: flex;
}

.events_details .owl-stage-outer {
	width: 75%;
}

.events_details .owl-dots {
	width: 30%;
	padding: 0;
	gap: 30px;
	display: flex;
	flex-direction: column;
}

.events_details .owl-item > div {
	width: 70%;
	display: flex;
	flex-direction: row;
	padding: 0;
}

.events_details .owl-item .item a {
	width: 70%;
	height: 500px;
	border-radius: 16px;
}

	.events_details .owl-item .item a img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 8px;
	}

.events_details .owl-item .item .item-card {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 400px;
	padding: 0 10px;
}

	.events_details .owl-item .item .item-card h2 {
		font-size: 30px;
		font-weight: 700;
		color: var(--font-dark-grey);
		text-transform: capitalize;
		text-align: left;
	}

	.events_details .owl-item .item .item-card h3 {
		color: var(--font-dark-grey);
		font-size: 14px;
		margin-bottom: 20px;
	}

	.events_details .owl-item .item .item-card h4 {
		color: var(--font-dark-grey);
		font-size: 14px;
		margin-bottom: 20px;
		display: flex;
	}

		.events_details .owl-item .item .item-card h4 svg {
			margin-right: 10px;
		}

	.events_details .owl-item .item .item-card p {
		color: var(--font-light-grey);
		font-size: 14px;
		font-weight: normal;
		text-align: left;
		margin: 20px 0;
		width: 100%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 10;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
		overflow: hidden;
		line-height: 1.5;
	}

button.pagi-btn {
	background: var(--white) !important;
	border: 1px solid #e2e2e2 !important;
	border-radius: 12px 16px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: 0.6s all;
	position: relative;
	margin-right: 0px;
	width: 100%;
}

.owl-dot {
	width: 100%;
}

button.pagi-btn a {
	padding: 0;
	display: flex;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
}

	button.pagi-btn a img {
		width: 55px;
		height: 55px;
		border-radius: 50%;
		box-sizing: border-box;
		object-fit: cover;
		border: 2px solid #fff;
	}

.owl-dot.active button.pagi-btn a img {
	border-color: #000;
}

button.pagi-btn p {
	font-size: 18px;
	margin: 0 10px;
	color: var(--theme-orange);
	font-weight: 600;
	text-transform: capitalize;
}

.events_details .button_ui.evnt-btn a {
	float: right;
}

.events_details .eventBottomSection span {
	margin: 20px 0;
	color: #000;
	font-size: 22px;
	font-weight: 600;
}
/*20-08-2024*/

/* .inner_page_banner {
	background: url(../images/banner.jpg) no-repeat;
	background-size: cover;
	padding: 0px 0 0 0;
	position: relative;
	z-index: 1;
} 

*/
section.inner_page_banner.inner_banner_with_srch img {
	height: 100%;
	width: 100%;
}

section.inner_page_banner.inner_banner_with_srch {
	position: relative;
}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
	}

.inner_page_banner:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: rgba(45, 55, 72, 0.76); */
	background: rgb(45 55 72 / 32%);
	position: absolute;
}

.section_heading_box .button_ui a.view-btn {
	display: none;
}
/*22-08-2024*/
.eventTopSection {
	text-align: left;
	min-height: 425px;
	width: 100%;
}

.eventBottomSection {
	text-align: left;
	min-height: 80px;
}

.events_details .owl-item .item .item-card .eventBottomSection span {
	margin: 0 0 10px 0;
	display: block;
}

#eventProductSection .button_ui a {
	border-radius: 5px;
	height: 42px;
}

button.pagi-btn p span {
	display: block;
	color: #000;
	font-size: 24px;
}

section.inner_page_banner {
	position: relative;
}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt em {
		font-style: normal;
	}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
		width: 90%;
		margin: 0 auto;
		z-index: 0;
	}

.website_logo {
	z-index: 99;
}
/*28-08-2024*/
.button_ui.view-btn {
	background: var(--theme-blue);
	color: var(--white);
	font-size: var(--btn-font-size);
	font-weight: normal;
	text-transform: capitalize;
	text-decoration: none;
	padding: 0;
	border-radius: var(--border-radius);
	transition: 0.6s all;
}

.voucher_card:hover .button_ui.view-btn {
	background: var(--theme-orange);
	color: var(--white);
}

.button_ui.view-btn:hover {
	background: var(--theme-orange);
	color: var(--white);
}

.button_ui.view-btn a {
	background: inherit;
	padding: 0;
	border-radius: var(--border-radius);
	transition: none;
	width: 160px;
	display: block;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner_srch_area .banner_srch_heading span.srch-result {
	font-size: 25px;
	color: var(--theme-orange);
}

.banner_srch_area .banner_srch_heading label.form-label.slider_srch_label {
	margin-right: 5px;
}

.banner_srch_area .banner_srch_heading span.srch-result button {
	background: none;
	border: none;
	padding: 0;
}

	.banner_srch_area .banner_srch_heading span.srch-result button svg {
		margin-top: -4px;
	}

.success_modal_content .notify_message button.btn.btn-secondary {
	width: 61px;
	background: #6c757d;
	color: #fff;
	border: 1px solid #6c757d;
	height: 38px;
	padding: 0;
	font-size: 16px;
}

	.success_modal_content .notify_message button.btn.btn-secondary:focus {
		box-shadow: none;
	}

.modal-body {
	padding: 0;
}

.success_modal_content .notify_message button.btn.btn-secondary:hover {
	color: #fff;
	background-color: #5c636a;
	border-color: #565e64;
}

.norecrodfound {
	clear: both;
	border: 2px dashed #e97a10;
	text-align: center;
	padding: 20px;
	color: #2d3748;
	max-width: 800px;
	margin: auto;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	border-radius: 16px;
	background: #cccccc2e;
}

	.norecrodfound img {
		margin: auto;
		margin-bottom: 20px;
		display: block;
	}

section.section_box.what_new_area {
	padding: 0 30px 30px 30px;
}
/*CutOff Price Tag*/
.price-tag {
	display: flex;
	width: 300px;
	height: 42px;
	font-family: Arial, sans-serif;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-shadow: 0px 0px 10px -3px #000;
}

	.price-tag .pr-tag {
		width: 25%;
		background: #ff5024;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		color: #fff;
		border-right: 1.5px solid #fff;
	}

	.price-tag .mrp {
		color: #ffffff;
		background-color: red;
		width: 40%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.price-tag .deal {
		background: #22d125;
		color: #e60000;
		width: 40%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
	}

		.price-tag .deal:before {
			content: '';
			display: block;
			width: 0;
			height: 0;
			border-top: 22px solid transparent;
			border-bottom: 22px solid transparent;
			border-left: 22px solid red;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 99;
		}

	.price-tag .mrp .line-through {
		text-decoration: line-through;
		font-size: 18px;
		font-weight: 600;
	}

	.price-tag .mrp .line {
		font-size: 14px;
		line-height: 20px;
	}

	.price-tag .mrp span {
		font-size: 14px;
		line-height: 20px;
	}

	.price-tag .deal span {
		font-size: 18px;
		font-weight: 600;
		color: #000;
	}

	.price-tag .deal .deal-txt {
		font-size: 14px;
		line-height: 20px;
		color: #000;
	}

	.price-tag.home-page .mrp {
		width: 50%;
	}

	.price-tag.home-page .deal {
		width: 50%;
	}

	.price-tag.home-page {
		width: 58%;
		box-shadow: inherit !important;
	}

		.price-tag.home-page .deal .deal-txt {
			font-size: 14px;
			line-height: 20px;
			color: #000;
			text-align: right;
			padding-right: 10px;
		}

.card-tag-home-page {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.price-tag.home-sub-page {
	width: 100%;
	box-shadow: inherit !important;
	gap: 20px;
}

	.price-tag.home-sub-page .mrp .line-through {
		font-size: 14px;
	}

	.price-tag.home-sub-page .deal span {
		font-size: 14px;
	}

	.price-tag.home-sub-page .mrp {
		width: 40%;
	}

	.price-tag.home-sub-page .deal {
		width: 60%;
	}

	.price-tag.home-sub-page .price-tag {
		width: 55%;
	}

	.price-tag.home-sub-page .button_ui {
		width: 40%;
	}

		.price-tag.home-sub-page .button_ui a {
			font-size: 14px;
			padding: 0;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

	.price-tag.home-sub-page .deal .deal-txt {
		text-align: center;
		padding-right: 10px;
	}

.hotel_vouchers_page .price-tag.home-sub-page .deal .deal-txt {
	text-align: right;
}

.voucher_pricing .price-tag.home-sub-page {
	width: 60%;
	gap: 0;
}

.voucher_pricing .button_ui.detail-btn {
	width: 40%;
}

.voucher_pricing.nw-price-tag .button_ui a {
	padding: 8px 15px;
}

.voucher_pricing .button_ui.detail-btn a {
	padding: 0;
	font-size: 14px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#eventProductSection .button_ui a {
	height: 42px;
	padding: 10px;
}

#eventProductSection .price-tag.home-sub-page .deal .deal-txt {
	text-align: center;
}

.hotel_vouchers_page
section.section_box.what_new_area
.event_listing
#upcomingShopProductsSection
.price-tag.home-sub-page
.deal
.deal-txt {
	text-align: center;
	padding-right: 10px;
}

.voucher_card.grey_card .voucher_details .voucher_pricing.nw-price-tag {
	gap: 20px;
}

.voucher_card .voucher_pricing .voucher_price span {
	font-size: 18px;
	color: var(--font-dark-grey);
}

/*CutOff Price Tag*/

/*responsive start*/
@media (max-width: 1920px) {
	section.home_page_banner .banner_heading_one {
		line-height: 5rem;
		padding-right: 1rem;
	}
}

@media (max-width: 1680px) {
	section.home_page_banner .banner_heading_one {
		line-height: 4rem;
	}

	section.home_events_area .events_details_right {
		height: 31.188rem;
	}
}

@media screen and (min-device-width: 864px) and (max-device-width: 1536px) and (orientation: landscape) {
	section.home_page_banner .banner_slider_image {
		height: 600px;
	}
	/* .search_thumbnail .swiper-slide img { height: 8.5rem; } */
	.search_thumbnail .swiper-slide img {
		height: 10.5rem;
	}

	section.home_category_area .home_category_image {
		/* height: 500px; */
	}

	section.home_category_area .large_height_card .home_category_image {
		/* height: 1000px; */
	}

	section.home_category_area .large_height_card {
		height: 600px !important;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_pricing.nw-price-tag
	.button_ui
	a {
		padding: 10px 10px;
		font-size: 14px;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_pricing
	.price-tag.home-sub-page {
		width: 55%;
		gap: 0;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_card
	.voucher_details {
		padding: 10px;
	}

	section.section_box.what_new_area
	.event_listing
	.price-tag.home-sub-page
	.deal
	.deal-txt {
		text-align: right;
		padding-right: 10px;
	}
}

@media (max-width: 1440px) {
	.search_thumbnail .swiper-slide img {
		height: 8.5rem;
	}

	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		width: 350px;
	}

	.price-tag.home-sub-page .deal .deal-txt {
		text-align: right;
	}
}

@media (max-width: 1400px) {
	section.home_page_banner .banner_top {
		margin: 80px 0 0 60px;
	}

	section.home_page_banner .banner_slider_image {
		height: 430px; /* padding: 0; */
	}
	/* section.home_page_banner .swiper-slide { height:400px; } */
	section.home_page_banner .banner_info {
		font-size: 30px;
		padding: 70px 0 30px 0;
	}

	.banner_srch_area .banner_srch_heading label {
		font-size: 19px;
		margin-left: 0;
	}

	section.home_page_banner::before {
		display: none;
	}

	section.home_page_banner .slider_cta a {
		font-size: 16px;
		padding: 8px 35px;
	}

	section.home_page_banner .search_thumbnail li {
		width: 32.9%;
		height: 100px;
	}
	/* section.home_page_banner .banner_slider { margin:0; } */
	.banner_srch_area .banner_srch_actions {
		margin: 8px 0 5px 0;
	}

	.banner_srch_area {
		padding: 0 0px 0 0;
		width: 100%;
	}

		.banner_srch_area label {
			font-size: 15px;
			margin: 0 25px;
		}

		.banner_srch_area form {
			gap: 0;
		}

		.banner_srch_area input[type='text'],
		.banner_srch_area select {
			width: 220px;
			padding: 9px 13px;
			font-size: 15px;
		}
	/* .section_box.faq_area { padding: 80px 300px; } */
	section.home_page_banner .banner_heading_one {
		line-height: 3rem;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 66%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 25.7%;
	}
	/* section.home_page_banner .swiper-slide img{min-height:8.5rem;} */
	.search_thumbnail .swiper-slide img {
		height: 8.5rem;
	}

	section.home_events_area .events_details_right {
		height: 31.188rem;
	}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 270px !important;
		transition: width 0.5s;
	}

		#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active.center {
			width: 508px !important;
		}

	#categoryProductSection .owl-stage-outer .owl-stage {
		column-gap: 0px;
	}
	/* home category slider start */
	/* section.home_category_area .home_category_image { height: 500px; }
		section.home_category_area #categoryProductSection .owl-item.active .medium_height_card { height: 320px !important; }
		section.home_category_area .large_height_card { height: 680px; }
		section.home_category_area .large_height_card .home_category_image { height: 1050px; } */
	/* home category slider end */

	section.home_category_area .home_category_name span {
		max-width: 9.25rem;
		line-height: 1.2;
	}
}

@media (max-width: 1280px) {
	/* .voucher_card .voucher_image {
	height: 190px;
} */
	.voucher_card .voucher_validation {
		font-size: 15px;
	}

	.voucher_card .voucher_title,
	.voucher_card .voucher_title a {
		/* font-size: 25px;  */
		font-size: 22px;
		line-height: 30px;
	}

	section.home_events_area .event_thumb_title {
		font-size: 18px;
	}

	section.home_events_area .event_thumb_price {
		font-size: 25px;
	}

	footer .footer_bottom .footer_links {
		width: 50%;
		margin: 0;
	}

	footer .footer_social {
		width: 15%;
	}

		footer .footer_social li {
			margin: 0 5px;
		}

	.filter_box .filter_categories ul li a {
		font-size: 15px;
	}

	.button_ui a {
		padding: 5px 25px;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_pricing.nw-price-tag
	.button_ui
	a {
		padding: 10px 10px;
		font-size: 12px;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_pricing
	.price-tag.home-sub-page {
		width: 55%;
		gap: 0;
	}

	section.section_box.what_new_area
	.event_listing
	.voucher_card
	.voucher_details {
		padding: 10px;
	}

	.inner_page_banner .banner_srch_area input[type='text'],
	.inner_page_banner .banner_srch_area select {
		width: 390px;
	}

	.section_box.faq_area {
		padding: 80px 40px;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 66%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 25.5%;
	}

	section.home_category_area #categoryProductSection {
		height: 100%;
	}

	section.home_category_area .home_category_name {
		min-height: 8rem;
	}

	section.home_page_banner .banner_info {
		padding: 100px 0 30px 0;
	}

	.price-tag.home-sub-page .deal span {
		font-size: 12px;
	}

	.price-tag.home-sub-page .mrp .line-through {
		font-size: 12px;
	}

	.voucher_card.grey_card .voucher_details .voucher_pricing.nw-price-tag {
		gap: 10px;
	}

	#eventProductSection .button_ui a {
		height: 42px;
		padding: 8px;
		font-size: 12px;
	}

	.voucher_card .voucher_pricing .voucher_price {
		font-size: 18px;
	}

		.voucher_card .voucher_pricing .voucher_price span {
			font-size: 16px;
		}
}

@media (min-width: 1193px) and (max-width: 1194px) {
	.banner_srch_heading {
		justify-content: center;
		padding-bottom: 15px;
	}

	.inner_page_banner .banner_srch_area form {
		flex-direction: column;
		justify-content: center;
	}

	.inner_page_banner .banner_srch_area .banner_srch_actions {
		justify-content: center;
	}

	.banner_srch_area {
		padding: 0;
	}

	.voucher_card .voucher_title,
	.voucher_card .voucher_title a {
		font-size: 21px;
	}
}

@media (max-width: 1180px) and (min-width: 1179px) {
	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active.center {
		width: 415px !important;
	}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 214px !important;
	}

	section.home_category_area .home_category_name {
		flex-direction: column;
		row-gap: 15px;
	}

	section.home_category_area .large_height_card {
		height: 100%;
	}

	section.home_category_area .home_category_image {
		/* height: 520px;  */
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 100% !important;
	}

	.voucher_card .voucher_details {
		padding: 20px 20px;
	}

	.voucher_card .voucher_location {
		min-height: 3rem;
	}

	section.home_category_area .home_category_name span {
		max-width: 100%;
	}

	section.home_category_area .home_category_name {
		min-height: 12rem;
	}

	section.home_category_area .large_height_card {
		height: 640px !important;
	}

	.banner_srch_area form {
		flex-direction: column !important;
		gap: 20px !important;
	}

	.inner_page_banner h3 {
		min-height: 200px;
	}

	.banner_srch_area {
		padding: 0 0 0 0;
	}

	header .container-fluid {
		padding: 0 15px;
	}

	section.home_page_banner .banner_info {
		padding: 100px 0 30px 0;
	}

	.inner_page_banner.inner_banner_with_srch {
		height: 400px;
	}

	.keywordTags_ul_new {
		padding-top: 100px !important;
	}
}

@media (max-width: 1024px) {
	/*    .hidden-for-tablet { display: none !important; }*/
	header .container-fluid {
		padding: 0 10px;
	}

	.navbar-toggler {
		background: var(--theme-orange);
		padding: 5px;
		transition: box-shadow 0.5s ease;
		font-size: normal;
	}

		.navbar-toggler img {
			width: 22px;
			margin-top: -1px;
		}

		.navbar-toggler .navbar-toggler-icon {
			width: auto;
			height: auto;
			line-height: 0;
		}

	.section_box {
		padding: 50px 0;
		position: relative;
		z-index: -1;
	}

		.section_box.faq_area {
			padding: 50px 40px;
		}

	section.home_page_banner .banner_top {
		margin: 80px 0 0 30px;
	}
	/* section.home_page_banner .swiper-slide { height: 350px; } */
	section.home_page_banner .banner_info {
		font-size: 30px;
		padding: 70px 0 30px 0;
	}

	section.home_page_banner::before {
		display: none;
	}

	section.home_page_banner .slider_cta a {
		font-size: 16px;
		padding: 8px 35px;
	}

	section.home_page_banner .search_thumbnail li {
		width: 32%;
		height: 100px;
	}
	/* section.home_page_banner .banner_slider { margin:0; } */
	section.home_page_banner .banner_slider .slider_paginations {
		left: auto;
		transform: unset;
		right: 10px;
	}

	section.home_page_banner .banner_slider #numberSlides {
		font-size: 14px;
	}

	.banner_srch_area {
		padding: 10px 20px;
	}

		.banner_srch_area .banner_srch_actions {
			margin: 12px 0 0 0;
		}

		.banner_srch_area form {
			flex-direction: column;
		}

		.banner_srch_area label {
			font-size: 15px;
		}

		.banner_srch_area input[type='text'],
		.banner_srch_area select {
			width: 225px;
			padding: 9px 13px;
			font-size: 15px;
		}

	.section_heading_box .section_heading {
		width: 70%;
	}

	.section_heading_box h3.main_title {
		font-size: 38px;
	}

	.section_heading_box h5.sub_title {
		font-size: 20px;
	}

	.button_ui a {
		padding: 5px 12px;
		display: inline-flex;
	}
	/* .voucher_card .voucher_image {
	height: 160px;
} */
	.voucher_card .voucher_title,
	.voucher_card .voucher_title a {
		font-size: 18px;
		display: flex;
		width: 100%;
		white-space: nowrap;
		overflow: hidden !important;
		text-overflow: ellipsis;
		min-height: auto;
	}

	#eventProductSection .button_ui a {
		font-size: 10px;
		display: flex;
		align-items: center;
	}

	.voucher_card .voucher_validation {
		text-align: center;
		font-size: 15px;
	}

	.voucher_card .voucher_details {
		padding: 10px;
	}

	.voucher_card .voucher_sub_title {
		font-size: 18px;
		min-height: 3rem;
	}

	.voucher_card .voucher_venue {
		font-size: 16px;
		min-height: 60px;
	}

	.voucher_card .voucher_location {
		margin: 5px 0 0 0;
		min-height: 3rem;
	}

	section.home_category_area .category_details {
		margin: 20px 0 0 0;
	}

	section.home_category_area .medium_height_card {
		height: auto;
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 350px !important;
	}

	section.home_category_area .home_category_image {
		/* margin: -130px 0 0 -100px; 
			 width: 350px; 
			 height: 300px; */
	}

	section.home_category_area .home_category_name {
		flex-direction: column;
	}

		section.home_category_area .home_category_name span {
			font-size: 15px;
		}

		section.home_category_area .home_category_name a {
			width: 40px;
			height: 40px;
			padding: 0px 0 0 0;
			margin: 10px 0 0 0;
		}

	section.home_category_area .large_height_card {
		height: auto !important;
	}

		section.home_category_area .large_height_card .home_category_image {
			/* width: 700px; height: 700px; margin: -230px 0 0 -150px;  */
		}

	section.home_category_area .home_category_pagination {
		bottom: 40px;
	}

		section.home_category_area .home_category_pagination:after {
			background: url(../images/pagination_line_responsive.svg) no-repeat;
			background-position: center;
		}

	section.home_events_area .events_details {
		padding: 30px 0 0 0;
	}

		section.home_events_area .events_details .events_details_left,
		section.home_events_area .events_details .events_details_right {
			width: 100%;
		}

	section.home_events_area .events_hightlight .events_images {
		height: 400px;
	}

	section.home_events_area .event_info h5 {
		font-size: 30px;
		font-weight: bold;
	}

	section.home_events_area .events_details_right {
		padding: 30px 0 0 0;
	}

	section.home_events_area .events_details .nav-pills {
		flex-direction: row;
		flex-wrap: nowrap;
	}

	section.home_events_area .nav-pills .nav-link {
		margin: 10px 15px;
		min-width: 380px;
	}

	section.home_events_area .nav-pills .event_thumb {
		width: 50px;
		height: 50px;
	}

	section.home_events_area .event_thumb_info {
		padding: 0 0 0 20px;
	}

	section.home_events_area .event_thumb_title {
		font-size: 18px;
	}

	section.home_events_area .event_thumb_price {
		font-size: 25px;
	}
	/* section.home_events_area .nav-pills .nav-link:last-child { display: none; } */

	/* section.home_events_area .nav-pills .nav-link.hidden-for-tablet{ display: none; } */
	.filter_box .filter_categories {
		padding: 15px 5px 15px 0;
	}

	.inner_page_banner {
		margin: 0;
	}

		.inner_page_banner.inner_banner_with_srch {
			height: 350px;
		}

		.inner_page_banner .container-fluid {
			padding: 0;
		}

		.inner_page_banner .inner_srch_box {
			margin: 0;
			border-radius: 0;
			border: none;
			bottom: 0;
		}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
		position: absolute;
		bottom: 0;
		top: 0;
	}

	.inner_page_banner .banner_srch_area input[type='text'],
	.inner_page_banner .banner_srch_area select {
		width: 300px;
	}

	.inner_page_banner.inner_banner_with_srch {
		margin: 0;
	}

	.contact_info p br {
		display: none;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 65%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 24.7%;
	}
	/* section.home_page_banner .swiper-slide img{min-height:6.5rem;} */
	.search_thumbnail .swiper-slide img {
		height: 6.5rem;
	}
	/*section.home_events_area .events_details .nav-pills.marquee { animation: none; overflow-x: auto; display: flex; align-items: center; justify-content: flex-start; }*/
	section.home_events_area .events_details_right {
		height: auto;
	}

	.section_box.contact_us_area .cnt-inner,
	.section_box.contact_us_area .rght-form {
		padding: 1rem 1rem;
	}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 200px !important;
		transition: width 0.5s;
	}

		#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active.center {
			width: 450px !important;
		}

	section.home_category_area #categoryProductSection {
		height: 100%;
		margin-top: 20px;
	}
	/* #categoryProductSection .owl-nav, #categoryProductSection .owl-dots { bottom: 70px; } */
	section.home_events_area .events_details_right {
		border-radius: 0;
	}

	section.home_category_area .large_height_card .home_category_image img {
		height: 350px;
	}

	section.home_category_area .home_category_name {
		min-height: 10rem;
	}

	section.home_page_banner .banner_slider_image {
		height: 400px;
	}

	.banner_srch_area form {
		row-gap: 10px;
	}

	.hotel_vouchers_page {
		z-index: 1;
		position: relative;
	}

	.ftr-soc a {
		margin-right: 5px !important;
	}

	.cpy {
		margin-top: 20px;
	}

	.ftr-logo a svg {
		display: none;
	}
	/*21-08-2024*/
	/* section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
	bottom: inherit;
} */
	.home_page header .navbar-brand img {
		width: auto;
	}

	.page_breadcrumds_section {
		flex-direction: row;
	}

	footer .footer_links ul li a {
		position: relative;
		padding-right: 15px;
	}
	/* footer .footer_links ul li a::after {
	right: -10px;
} */
	footer .footer_links ul a {
		padding-right: 0;
	}

	footer .footer_links ul li {
		margin: 5px 0;
		padding: 0 10px;
	}

	.section_box {
		min-height: auto;
	}

	.home_page header .navbar-brand img {
		width: auto;
	}

	.section_heading_box {
		margin-bottom: 30px;
	}

	section.home_selling_voucher .section_heading_box .section_heading {
		margin-bottom: 0;
	}

	.events_details .owl-dots {
		gap: 30px;
	}

	.inner_page_banner.inner_banner_with_srch.events-page img {
		height: 350px;
	}

	.inner_page_banner.inner_banner_with_srch.events-page h3.banner-txt {
		top: 0;
	}

	.inner_page_banner.inner_banner_with_srch.events-page {
		height: 435px;
	}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt em {
		font-size: 24px;
		width: 70%;
	}

	.voucher_card .voucher_pricing {
		margin: 30px 0 0 0;
		/* flex-direction: column; */
		gap: 10px;
	}

	.voucher_pricing .price-tag.home-sub-page {
		width: 100%;
		gap: 0;
	}

	.voucher_pricing .button_ui.detail-btn {
		width: auto;
	}

	section.section_box.top_selling_vouchers .price-tag .deal {
		text-align: center;
	}

	.voucher_card .voucher_pricing .voucher_price {
		font-size: 16px;
	}

		.voucher_card .voucher_pricing .voucher_price span {
			font-size: 14px;
		}

	#eventProductSection .button_ui a {
		font-size: 10px;
		display: flex;
		align-items: center;
		padding: 5px 10px;
		height: inherit;
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	.voucher_card .voucher_sub_title {
		min-height: 2.5rem;
	}
}

@media (max-width: 980px) {
	/* .hidden-for-tablet { display: none !important; } */
	header .navbar-toggler {
		position: relative;
		z-index: 99;
	}

	header .website_logo {
		position: relative;
		z-index: 99;
	}

	header .navbar-brand img {
		width: 70px;
	}

	header .main_header .navbar-collapse {
		position: absolute;
		top: 0 !important;
		background: var(--theme-blue);
		padding: 100px 0 10px 0;
		height: auto !important;
		color: var(--white);
		left: 0 !important;
		width: 100% !important;
		transition: padding 0.5s ease;
	}

	header .navbar-nav .nav-link {
		font-size: 16px;
	}

	header.navbar-fixed .navbar-nav .nav-link {
		font-size: 16px;
	}

	section.home_page_banner .banner_top {
		margin: 70px 0 0 30px;
	}

	section.home_page_banner .banner_slider_image {
		/* padding: 0; */
	}

	.banner_srch_area .banner_srch_actions {
		margin: 6px 0 0 0;
	}

	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		width: 160px;
	}
	/* .voucher_card .voucher_pricing {
	flex-direction: column;
	margin: 0;
} */

	/* .voucher_card .voucher_pricing .voucher_price {
	width: 100%;
	margin: 0;
} */
	/* .voucher_card .voucher_pricing .button_ui {
	width: 100%;
	height: 30px;
} */
	.voucher_card .voucher_pricing .button_ui a {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	/*	section.home_category_area .large_height_card .home_category_image {
		 width: 600px; height: 600px; margin: -260px 0 0 -170px; 
	}*/

	section.home_category_area .large_height_card {
		height: 450px !important;
	}

	section.home_category_area .home_category_pagination {
		position: relative;
		width: 100%;
		bottom: 145px;
	}

	section.home_category_area .home_category_name {
		flex-direction: row;
		padding: 30px 15px 20px 15px;
		flex-direction: column;
	}

		section.home_category_area .home_category_name a {
			margin: 15px 0 0 0;
		}

	section.home_category_area .home_category_pagination .slide_counter {
		width: 50px;
		height: 50px;
		line-height: 2.3em;
	}

	section.home_category_area .home_category_pagination .swiper-button-prev1 {
		width: 30px;
		height: 30px;
	}

	section.home_category_area .home_category_pagination .swiper-button-next1 {
		width: 30px;
		height: 30px;
	}

	section.home_category_area .swiper-slide {
		padding: 0;
	}
	/* section.home_events_area .nav-pills .nav-link { min-width: 240px; } */
	footer {
		padding: 30px 0;
	}

		footer .footer_logo {
			justify-content: center;
		}

			footer .footer_logo img {
				width: 70px;
			}

		footer .footer_links {
			flex-direction: column;
			align-items: center;
		}

			footer .footer_links ul {
				flex-direction: column;
				align-items: center;
			}

				footer .footer_links ul li {
					margin: 5px 0;
				}

				footer .footer_links ul a:before {
					display: none;
				}

		footer p {
			text-align: center;
		}

		footer .footer_bottom {
			align-items: flex-start;
			flex-direction: column;
		}

			footer .footer_bottom .footer_links {
				width: 100%;
				margin: 0;
			}

		footer .footer_social {
			width: 100%;
		}

			footer .footer_social li {
				margin: 0 16px 0 0;
			}

		footer .copy_write {
			width: 100%;
			display: flex;
			justify-content: center;
		}

	section.inner_page_banner.inner_banner_with_srch h3 {
		padding: 30px 0 30px 0;
		font-size: 26px;
		z-index: unset;
		min-height: 350px;
	}

	.inner_page_banner .banner_srch_area form {
		flex-direction: column;
	}

	.inner_page_banner .banner_srch_area .banner_srch_actions {
		margin: 0px 0 0 0;
	}

	.contact_image_area .contact_image {
		width: 400px;
		height: 400px;
	}

	section.home_page_banner .banner_heading_one {
		line-height: 2rem;
	}

	footer .footer_links span {
		margin: 0;
	}

	footer .footer_social ul {
		justify-content: center !important;
	}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 170px !important;
		transition: width 0.5s;
	}

		#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active.center {
			width: 280px !important;
		}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 370px !important;
	}

	.button_ui a img {
		width: 50%;
	}

	section.home_category_area .large_height_card .home_category_image img {
		height: 100%;
	}

	.section_box.contact_us_area .cnt-inner {
		width: 48%;
	}

	.section_box.contact_us_area .lft-cnt-info {
		flex-direction: inherit;
		flex-wrap: wrap;
		column-gap: 20px;
		justify-content: space-between;
	}
	/*17/07/2024 Dipen*/
	.contact_us_area .form .contact-info {
		padding: 10px !important;
	}

	.contact-form form {
		padding: 10px !important;
	}

	.contact-form:before {
		display: none;
	}

	.contact-form form h3.title {
		display: none;
	}

	.voucher_card .voucher_pricing .button_ui a,
	.voucher_card .voucher_pricing .button_ui .btn-voucher {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.events_details .owl-item .item .item-card p {
		min-height: 50px;
	}

	.events_details .owl-dot {
		padding: 0;
	}

	.events_details .owl-dots {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.events_details .owl-dot {
		width: 46%;
	}

	.events_details .owl-dot {
		background-color: #fff;
	}
	/* footer .footer_links ul li a::after {
	right: -10px;
} */
	footer .footer_links ul a {
		padding-right: 0;
	}

	footer .footer_links ul li {
		margin: 5px 0;
		padding: 0 10px;
	}

	.events_details .pagi-btn {
		min-height: 130px;
	}

	.events_details .owl-stage-outer {
		width: 100%;
	}

	#eventProductSection .voucher_card:first-child {
		margin-top: 0;
	}

	.hotel_vouchers_page .price-tag.home-sub-page .deal .deal-txt {
		text-align: center;
	}

	.voucher_card.grey_card .voucher_details .voucher_pricing.nw-price-tag {
		gap: 20px;
		/* min-height: 100px; */
	}
}

@media (max-width: 991px) {
	header .navbar-nav .nav-link:before {
		display: none;
	}

	.section_box.contact_us_area .cnt-inner {
		width: 48%;
	}

	.section_box.contact_us_area .lft-cnt-info {
		flex-direction: inherit;
		row-gap: 30px;
		column-gap: 10px;
	}

	.events_details .owl-item > div {
		width: 100%;
	}

	.events_details .owl-item .item a {
		width: 100%;
		height: 350px;
		border-radius: 10px;
		object-fit: cover;
	}

	.events_details .owl-item .item .item-card {
		width: 100%;
		padding: 10px;
		background: inherit;
		border-radius: 5px;
		min-height: inherit;
		margin-bottom: 20px;
	}

	.events_details .owl-dots {
		width: 100%;
	}

	.events_details .owl-dot {
		width: 46%;
	}

	.events_details #eventProductSection {
		display: flex;
		flex-direction: column;
	}

	.eventTopSection {
		min-height: 260px;
	}

	.inner_page_banner .inner_srch_box {
		bottom: 0;
	}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
		top: -10%;
	}
}

@media screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: landscape) {
	section.section_box.top_selling_vouchers .price-tag .deal {
		text-align: right;
	}
}

@media (max-width: 768px) {
	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		width: 160px;
	}

	section.home_category_area .category_details {
		margin: 0px 0 0 0;
	}

	section.home_category_area .medium_height_card {
		/* height: 290px; */
		height: auto;
	}

	section.home_category_area .home_category_image {
		/* margin: -130px 0 0 -100px; width: 300px; height: 230px; */
	}

	section.home_category_area .home_category_name {
		flex-direction: column;
	}

		section.home_category_area .home_category_name span {
			font-size: 15px; /* min-height: 2rem; */
		}

		section.home_category_area .home_category_name a {
			width: 40px;
			height: 40px;
			padding: 0px 0 0 0;
			margin: 10px 0 0 0;
		}

	section.home_category_area .large_height_card {
		height: 470px;
	}

		section.home_category_area .large_height_card .home_category_image {
			/* .width: 600px; height: 600px; margin: -250px 0 0 -180px;  */
		}

	section.home_category_area .home_category_pagination {
		/* bottom: 50px; */
	}

		section.home_category_area .home_category_pagination:after {
			background: url(../images/pagination_line_responsive.svg) no-repeat;
			background-position: center;
			background-size: 68%;
		}
	/* section.home_events_area .nav-pills .nav-link:nth-child(3) { display: none; } */
	section.home_events_area .nav-pills .nav-link {
		min-width: 350px;
	}

	section.home_events_area .nav-pills .event_thumb {
		width: 70px;
		height: 70px;
	}

	.contact_image_area .contact_image {
		width: 280px;
		height: 280px;
	}

	.contact_image_area {
		margin: 0 0 50px 0;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 63%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 22.7%;
	}

	.banner_srch_area {
		padding: 5px 20px;
	}
	/* section.home_page_banner .swiper-slide img{min-height:5.5rem;} */
	.search_thumbnail .swiper-slide img {
		height: 5.5rem;
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 312px !important;
	}
	/*21-08-2024*/
	.events_details .owl-item > div {
		width: 100%;
	}

	.eventTopSection {
		min-height: 250px;
	}

	.events_details .owl-dots {
		width: 100%;
	}

	.events_details #eventProductSection {
		display: flex;
		flex-direction: column;
	}

	.events_details .owl-item .item a {
		width: 100%;
		height: 350px;
		border-radius: 10px;
		object-fit: cover;
	}

	.events_details .owl-item .item .item-card {
		width: 100%;
		padding: 10px;
		background: inherit;
		border-radius: 5px;
		min-height: inherit;
		margin-bottom: 20px;
	}

	.events_details .owl-stage-outer {
		width: 100%;
	}

	.events_details .owl-item .item .item-card p {
		min-height: 50px;
	}

	.events_details .owl-dot {
		padding: 0;
	}

	.events_details .owl-dots {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.events_details .owl-dot {
		width: 46%;
	}

	.events_details .owl-dot {
		background-color: #fff;
	}

	#category_card_2 .home_category_name {
		flex-direction: row !important;
		min-height: inherit !important;
	}

	.voucher_card .voucher_pricing .voucher_price span {
		font-size: 14px;
		color: var(--font-dark-grey);
	}
}

@media (max-width: 767px) {
	.swiper-container-horizontal > .swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		left: 50%;
	}

	section.home_page_banner .banner_slider_image {
		height: 400px;
	}

	section.home_page_banner .banner_top {
		margin-bottom: 3rem;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 43%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 43%;
	}

	.banner_srch_area {
		padding: 10px 20px;
	}
	/* section.home_page_banner .swiper-slide img{min-height:11.3rem;} */
	.search_thumbnail .swiper-slide img {
		height: 11.3rem;
	}

	.voucher_card .voucher_sub_title {
		min-height: 3rem;
	}

	section.home_page_banner .banner_slider {
		margin: 0 0 0 0;
	}

	#categoryProductSection .owl-stage-outer .owl-stage .owl-item.active {
		width: 100% !important;
		transition: width 0.5s;
	}

	#categoryProductSection .owl-nav,
	#categoryProductSection .owl-dots {
		margin-top: 20px;
	}

	section.home_category_area
	#categoryProductSection
	.owl-item.active
	.medium_height_card {
		height: 100% !important;
	}

	#categoryProductSection .owl-nav,
	#categoryProductSection .owl-dots {
		position: relative;
		bottom: 0;
	}

	section.home_category_area .home_category_card {
		width: 85%;
		margin: 0 auto;
	}

	.section_box.contact_us_area .lft-cnt-info {
		margin-bottom: 30px;
	}

	section.home_category_area .home_category_pagination {
		bottom: 30px;
	}

	section.home_category_area .category_details {
		padding: 0 15px;
	}

	section.section_box.event_listing_area,
	section.section_box.what_new_area {
		padding-left: 0px;
		padding-right: 0px;
	}

	section.home_category_area .large_height_card {
		height: 100% !important;
	}

	.inner_page_banner h3 {
		font-size: 32px;
		display: flex;
		align-items: end;
	}

	.section_box.contact_us_area .cnt-inner {
		width: 100%;
	}
	/*17/07/2024 Dipen*/

	.contact_us_area .form {
		display: flex;
		flex-direction: column-reverse;
	}

		.contact_us_area .form .contact-info {
			padding: 10px !important;
		}

	.contact_us_area .form {
		padding: 10px !important;
	}
	/* .contact_us_area .form h3.title {
	display: none;
} */
	.contact-form:before {
		display: none;
	}

	.circle.one {
		right: 0 !important;
	}

	.ftr-inner {
		margin-bottom: 20px;
	}

	table.pp-table {
		overflow-x: scroll;
		width: 100%;
		display: block;
	}

	#faq {
		padding: 0 !important;
	}

	.inner_page_banner.inner_banner_with_srch {
		height: 450px;
	}

	section.inner_page_banner.inner_banner_with_srch h3 {
		min-height: 250px;
	}
	/* .inner_page_banner .inner_srch_box {
	bottom: 30px !important;
} */
	.events_details .owl-item > div {
		width: 100%;
		flex-direction: column;
		gap: 0;
	}

	.events_details .owl-dot {
		width: 100%;
	}

	section.inner_page_banner.inner_banner_with_srch h3.banner-txt {
		top: -10%;
	}

	.inner_page_banner.inner_banner_with_srch.events-page img {
		height: 188px;
	}

	.inner_page_banner.inner_banner_with_srch.events-page {
		height: 420px;
	}

		.inner_page_banner.inner_banner_with_srch.events-page h3.banner-txt {
			top: -150px;
			display: flex;
			align-items: center;
		}

	#footer {
		text-align: center;
	}

	.ftr-soc {
		margin: 0 auto;
		width: 100%;
	}

	.section_box.what_new_area .voucher_card .voucher_image {
		height: inherit;
	}

	.voucher_card.grey_card .voucher_details .voucher_pricing.nw-price-tag {
		min-height: inherit;
	}

	.voucher_card .voucher_image {
		padding-top: 66.26%;
		height: auto;
	}

		.voucher_card .voucher_image img {
			position: absolute;
			top: 0;
			left: 0;
		}
}

@media (max-width: 740px) {
	header .navbar-brand img {
		width: 70px;
	}

	header .main_header .navbar-collapse {
		padding: 100px 0 10px 0;
	}

	header .navbar-nav .nav-link:hover:before {
		display: none;
	}

	.button_ui {
		margin: 5px 0 16px 0;
	}

		.button_ui a {
			font-size: 14px;
			font-weight: 600;
		}

	section.home_page_banner .banner_top {
		margin: 40px 0 30px 0;
		text-align: center;
		min-height: 15rem;
	}

	section.home_page_banner .banner_slider .slider_paginations {
		left: 50%;
		transform: unset;
		right: unset;
		transform: translateX(-50%);
	}

	.banner_srch_area {
		padding: 20px;
		width: 100%;
	}

		.banner_srch_area .banner_srch_actions {
			flex-direction: column;
			width: 100%;
			padding: 0 20px;
		}

		.banner_srch_area input[type='text'],
		.banner_srch_area select {
			/* width: 100%; */
			width: 330px;
			margin: 10px 0;
		}

	.section_heading_box h3.main_title {
		font-size: 28px;
	}

	.section_heading_box h5.sub_title {
		font-size: 15px;
	}

	.section_heading_box {
		flex-direction: column;
		align-items: flex-start;
	}

		.section_heading_box .section_heading {
			width: 100%;
		}

	.nav-pills .nav-link {
		margin: 0 22px 0 0;
	}

	section.home_category_area .hidden-for-tablet {
		display: none;
	}

	.voucher_card .voucher_details {
		padding: 10px;
	}

	.button_ui.detail-btn {
		margin: 0;
	}

		.button_ui.detail-btn a {
			height: 40px;
			display: flex;
			align-items: center;
		}

	#trendingProductSection .voucher_card .voucher_details {
		min-height: auto;
	}

	.voucher_card .voucher_title,
	.voucher_card .voucher_title a {
		font-size: 16px;
	}

	.voucher_card .voucher_sub_title {
		font-size: 14px;
		font-weight: bold;
	}

	.voucher_card .voucher_venue {
		font-size: 14px;
		font-weight: bold;
		line-height: 16px;
	}

	.voucher_card .voucher_partner {
		padding: 5px 0;
	}

	.voucher_card .voucher_location {
		font-size: 14px;
		line-height: 26px;
	}

	.voucher_card .voucher_pricing .voucher_price {
		font-size: 18px;
		font-weight: 600;
	}

	.voucher_card .voucher_pricing .button_ui a {
		padding: 5px 20px;
	}

	.price-tag .deal span {
		font-size: 14px;
	}

	.price-tag .mrp .line-through {
		font-size: 14px;
	}

	.voucher_card .voucher_validation {
		font-size: 10px;
	}

	section.home_category_area .large_height_card {
		height: auto;
	}

		section.home_category_area .large_height_card .home_category_image {
			/* width: 800px; height: 800px; margin: -430px 0 0 -90px;  */
		}

	section.home_events_area .events_details {
		padding: 10px 0 0 0;
	}

	section.home_events_area .event_info {
		padding: 16px 0 0 0;
	}

	section.home_events_area .event_info_bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	section.home_events_area .event_thumb_info {
		width: 70%;
	}

	section.home_events_area .event_thumb_title {
		width: 100%;
		white-space: nowrap;
		overflow: hidden !important;
		text-overflow: ellipsis;
	}

	section.home_events_area .event_info .events_main_price {
		font-size: 18px;
		font-weight: bold;
		margin: 0;
	}

	section.home_events_area .events_details_right {
		padding: 0;
	}

	section.home_events_area .nav-pills .nav-link {
		min-width: 350px;
	}

	section.home_events_area .event_thumb_info {
		width: 50%;
	}

	section.home_events_area .event_thumb_price {
		font-size: 18px;
	}
	/* .gift_lists .col-xs-12 {
	width: 50%;
} */
	/* .whats_new_list .col-xs-12 {
	width: 50%;
} */
	footer .footer_logo {
		justify-content: center;
	}

	footer .footer_links {
		align-items: center;
	}

		footer .footer_links span {
			margin: 0;
		}

		footer .footer_links ul {
			align-items: center;
		}

	footer p {
		text-align: center;
	}

	footer .footer_social ul {
		justify-content: center !important;
	}

	footer .copy_write {
		justify-content: center;
	}

	.inner_page_banner .banner_srch_area input[type='text'],
	.inner_page_banner .banner_srch_area select {
		width: 330px;
	}

	.inner_page_banner .inner_srch_box {
		padding: 0px;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 43%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 42%;
	}

	.button_ui a img {
		width: 1.125rem;
	}

	section.home_selling_voucher .nav-pills {
		margin-bottom: 5px;
		margin-top: 20px;
	}

	section.home_page_banner .banner_slider_image {
		height: 250px;
	}

	.price-tag.home-sub-page .button_ui {
		margin: 0 !important;
	}

	.voucher_pricing .price-tag.home-sub-page {
		width: 50%;
	}

	.price-tag.home-sub-page .deal {
		padding-right: 10px;
	}

	.price-tag.home-page .deal .deal-txt {
		padding-right: 15px;
	}

	#eventProductSection .price-tag.home-sub-page .deal .deal-txt {
		text-align: right;
	}

	.hotel_vouchers_page
	section.section_box.what_new_area
	.event_listing
	#upcomingShopProductsSection
	.price-tag.home-sub-page
	.deal
	.deal-txt {
		text-align: right;
		padding-right: 10px;
	}
}

@media only screen and (min-device-width: 460px) and (max-device-width: 670px) {
	.price-tag.home-page {
		width: 35%;
		box-shadow: inherit !important;
	}

		.price-tag.home-page .deal .deal-txt {
			padding-right: 20px;
		}

	.voucher_pricing .price-tag.home-sub-page {
		width: 35%;
	}

	.price-tag.home-sub-page .deal .deal-txt {
		text-align: center;
		padding-right: 0;
	}

	.hotel_vouchers_page
	section.section_box.what_new_area
	.event_listing
	#upcomingShopProductsSection
	.price-tag.home-sub-page
	.deal
	.deal-txt {
		text-align: center;
		padding-right: 10px;
	}

	.productPriceAndAvailbility .price-tag.detail-page .deal {
		text-align: center;
	}
}

@media (max-width: 680px) {
	section.home_category_area .large_height_card .home_category_image,
	section.home_category_area .medium_height_card .home_category_image {
		/* width: 650px;
			height: 650px;
			margin: -310px 0 0 -120px;  */
	}

	.section_box.faq_area {
		padding: 50px 0px;
	}

	.srch_location {
		width: 100%;
	}

		.srch_location button.srch_location_btn {
			height: auto;
		}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 42%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 41%;
	}

	section.home_category_area .home_category_card {
		width: 75%;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	section.home_category_area .large_height_card .home_category_image,
	section.home_category_area .medium_height_card .home_category_image {
		/* width: 650px; height: 650px; margin: -310px 0 0 -120px;  */
	}

	section.home_events_area .events_details .nav-pills {
		justify-content: center;
	}

	section.home_events_area .nav-pills .nav-link:nth-child(3) {
		display: block;
	}

	section.home_events_area .nav-pills .nav-link:last-child {
		display: block;
	}

	section.home_events_area .event_thumb_info {
		display: none;
	}

	section.home_events_area .nav-pills .nav-link {
		min-width: auto;
		padding: 10px;
		margin: 10px;
	}

	section.home_events_area .nav-pills .event_thumb {
		width: 50px;
		height: 50px;
	}

	section.home_page_banner .banner_slider .swiper-button-prev {
		left: 37%;
	}

	section.home_page_banner .banner_slider .swiper-button-next {
		right: 35%;
	}

	section.home_page_banner .banner_heading_one {
		padding: 0 2rem 0;
	}

	section.home_page_banner .banner_info {
		font-size: 24px;
	}

	.search_thumbnail .swiper-slide img {
		height: 8.3rem;
	}

	section.home_category_area .home_category_card {
		width: 65%;
		margin: 0 auto;
	}

	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		width: 345px !important;
	}
}

@media (max-width: 480px) {
	.banner_srch_area .banner_srch_actions {
		padding: 0;
	}

	.search_thumbnail .swiper-slide img {
		height: 7.3rem;
	}
}

@media (max-width: 375px) {
	.nav-pills .nav-link {
		font-size: 17px;
	}

	.search_thumbnail .swiper-slide img {
		height: 6rem;
	}
}

@media (max-width: 360px) {
	.banner_srch_area input[type='text'],
	.banner_srch_area select {
		width: 300px !important;
	}
}

@media (max-width: 280px) {
	section.home_events_area .nav-pills .nav-link {
		padding: 4px;
		margin: 3px;
	}
	/* .voucher_card .voucher_image {
	height: 90px;
} */
	.voucher_card .voucher_pricing .button_ui a {
		padding: 10px 0;
	}

	.button_ui a {
		font-size: 10px;
	}
}

/*responsive end*/
