#carousel-home {
	position: relative;
}

#carousel-home .static {
	position: static;
}

a {
	color: #000;
}

#carousel-home .cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	opacity: 1 !important;
}

#carousel-home .owl-carousel .owl-slide {
	height: 660px;
	position: relative;
}

@media (max-width: 767px) {
	#carousel-home .owl-carousel .owl-slide {
		height: 480px;
	}
}

#carousel-home .owl-carousel .owl-slide-animated {
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	-ms-transform: translateX(20px);
	-o-transform: translateX(20px);
	transform: translateX(20px);
	opacity: 0;
	visibility: hidden;
	-moz-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	-webkit-transition: all 50ms ease;
	-ms-transition: all 50ms ease;
	transition: all 50ms ease;
}

#carousel-home .owl-carousel .owl-dots {
	bottom: 15px;
	width: 100%;
	position: absolute;
}

.slide-text {
	padding-top: 15px;
	font-size: 21px;
	font-size: 1.3125rem;
}

.slide-text h2,
.slide-text h3 {
	font-size: 46px;
	font-size: 2.875rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}

@media (max-width: 767px) {

	.slide-text h2,
	.slide-text h3 {
		font-size: 42px;
		font-size: 2.625rem;
	}
}

.slide-text strong {
	font-weight: 700;
	font-size: 28px;
	font-size: 1.75rem;
}

.slide-text.white {
	color: #fff;
}

.slide-text.white h2,
.slide-text.white h3 {
	color: #fff;
}

#icon_drag_mobile {
	position: absolute;
	right: 20px;
	bottom: 20px;
	background: url(../img/drag_icon.svg) 0 0 no-repeat;
	width: 50px;
	height: 30px;
	opacity: 0.6;
	z-index: 99;
	display: none;
}

@media (max-width: 767px) {
	#icon_drag_mobile {
		display: block;
	}
}

a.btn_explore {
	z-index: 99;
	background: #fff;
	display: block;
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	line-height: 65px;
	text-align: center;
	position: absolute;
	bottom: 40px;
	left: 50%;
	margin-left: -30px;
	font-size: 24px;
	font-size: 1.5rem;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
	animation: pulseanime 2.5s infinite;
	-webkit-animation: pulseanime 2.5s infinite;
}

a.btn_explore:hover {
	bottom: 30px;
}

@-webkit-keyframes pulseanime {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes pulseanime {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

/*custom css*/
.home-filter {
	position: absolute;
	width: 100%;
	bottom: -50px;
	z-index: 111;
}

.home-filter-main {
	background-color: #fff;
	padding: 30px;
}

.home-filter-main .dropdown {
	width: 100%;
	position: relative;
	display: inline-block;
	font-family: Arial, sans-serif;
}

.home-filter-main .dropdown-search {
	display: block;
	width: 100%;
	padding: 8px 16px;
	border: 2px solid #e9e9e9;
	border-radius: 7px;
	outline: none;
	text-align: left;
	font-size: 16px;
	font-family: "Poppins", Helvetica, sans-serif;
}

.home-filter-main .dropdown-search:focus {
	background-color: #f6f6f6;
}

.home-filter-main .dropdown .dropdown-list {
	position: absolute;
	overflow: auto;
	z-index: 9;
	top: 45px;
	left: 0;
	width: 100%;
	max-height: 250px;
	padding: 8px;
	display: none;
	border-radius: 7px;
	background: #fff;
	border: 1px solid #e9e9e9;
	box-shadow: 0 1px 2px rgb(204, 204, 204);
}

.home-filter-main .dropdown .dropdown-list::-webkit-scrollbar {
	width: 7px;
}

.home-filter-main .dropdown .dropdown-list::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 25px;
}

.home-filter-main .dropdown .dropdown-list::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 25px;
}

.home-filter-main .dropdown .dropdown-list::-webkit-scrollbar-thumb:hover {
	background: #b3b3b3;
}

.home-filter-main .dropdown-list li {
	display: none;
	padding: 10px;
	border-radius: 4px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.home-filter-main .dropdown-list li:hover {
	background-color: #f2f2f2;
}

.home-filter-main .not-found {
	cursor: default;
}

.home-city-list {
	margin-bottom: 30px;
}

.home-city-list .city_main a {
	color: #222;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-city-list .city_main a i {
	background-color: #ddecff;
	font-size: 28px;
	border-radius: 50px;
	color: #222;
}

.city_main {
	background-color: #ffffff;
	padding: 15px;
	border-radius: 8px;
	margin: 10px 10px 10px 0px;
}

/* custom-css detail-page*/

.main-category-container {
	/* overflow: hidden; */
}

.categories-tab-head h4 {
	font-size: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.naccs {
	padding: 0px 0px;
	/* position: relative; */
	max-width: 100%;
	margin: 0 auto;
}

.naccs .menu {
	position: sticky;
	top: 0;
}

.naccs .menu div {
	background-color: #fff;
	border-radius: 5px;
	padding: 15px 20px 15px 40px;
	margin-bottom: 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
	font-weight: 700;
	transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div span.light {
	height: 10px;
	width: 10px;
	position: absolute;
	top: 24px;
	left: 15px;
	background-color: #f49320;
	border-radius: 100%;
	transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div.active span.light {
	left: 0;
	height: 100%;
	width: 3px;
	top: 0;
	border-radius: 0;
}


ul.nacc {
	/* height: 400px !important; */
	position: relative;
	/* height: 0px; */
	list-style: none;
	margin: 0;
	padding: 0;
	transition: .5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li {
	/* opacity: 0;
	transform: translateX(50px);
	position: absolute; */
	list-style: none;
	transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li.active {
	transition-delay: .3s;
	z-index: 2;
	opacity: 1;
	transform: translateX(0px);
}

.categories-tab {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	border-radius: 10px;
	padding: 20px;
	/* max-width: 96%; */
	/* margin: 0px 20px 20px 0px; */
	display: flex;
	background-color: #fff;
}

.categories-tab p {
	margin: 5px 0px !important;
}

.categories-tab .categories-cnt .spe_text {
	color: #f48020 !important;
	margin: 10px 0px;
}

.categories-tab .categories-cnt h4 a {
	color: #000;
}

.categories-tab .categories-cnt h4 a:hover {
	color: #f3a838;
}

.categories-tab h4 {
	font-size: 22px;
}

.detail-cnt-head a {
	color: #f48020 !important;
}

.restro-review h6 a {
	color: #000;
}

.accordion-content p a {
	color: #f48020;
}

.categories-tab .categories-img {
	max-width: 250px;
	height: auto;
	margin: 0 auto;
}

.categories-tab .categories-img img {
	/* max-width: 90%; */
	margin: 0 auto;
	text-align: center;
	border-radius: 10Px;
}

.categories-tab i {
	color: #f3a838;
	font-size: 18px;
	margin-top: 5px;
}

/* rastaurant-detail-page */
.detail-cnt {
	background-color: #f4f4f4;
	padding: 50px 30px;
	border-radius: 10px;
}

.detail-cnt-head p {
	font-size: 16px;
	margin-bottom: 5px;
}

.detail-cnt-head span {
	color: #000;
	font-size: 20px;
	font-weight: 500;
}

.detail-cnt-head a {
	font-size: 16px;
	font-weight: 600;
	text-decoration: underline;
}

.detail-cnt-head h6 {
	display: grid;
	justify-content: center;
}

.detail-cnt-head ul {
	display: flex;
	padding: 0px;
	/* margin-left: 15px; */
	margin-bottom: 0px;
}

.detail-cnt-head ul a {
	text-decoration: none;
}

.detail-cnt-head ul li {
	list-style: none;
	margin-right: 5px;
}

.detail-tab .tabs-container {
	width: 100%;
	height: auto;
	background-color: white;
	border-radius: 20px;
	margin-top: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.detail-info {
	text-align: center;
}

.detail-tab .tabs {
	padding: 10px;
}

/* .detail-tab .tab-links {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #f0f0f0;
} */

.detail-tab .tab-link {
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 500;
	padding: 10px;
	color: #000;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
}

.detail-tab .tab-link.active,
.detail-tab .tab-link:hover {
	color: #f48020;
}

.detail-tab .tab-link i {
	margin-right: 10px;
}

.detail-tab .tab-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -1px;
	left: 50%;
	background: #f48020;
	transition: all 0.4s ease;
}

.detail-tab .tab-link.active::after {
	width: 100%;
	left: 0;
}

.detail-tab .tab-content {
	display: none;
	animation: fadeInUp 0.5s ease;
	padding: 30px;
}

.detail-tab .tab-content.active {
	display: block;
}

.detail-tab .tabs .tab-content p {
	font-size: 16px;
	margin-bottom: 15px;
}

.detail-tab .tabs .tab-content p span {
	font-weight: 500;
}

.detail-tab .tab-content h5 {
	font-size: 18px;
	margin-bottom: 20px;
}

.detail-tab .tab-content .restro-img img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

/* Responsive Design */
/* @media screen and (max-width: 600px) {
	.detail-tab .tab-links {
		flex-direction: column;
		align-items: center;
	}

	.detail-tab .tab-link {
		text-align: center;
		width: 100%;
		padding: 15px 0;
	}
} */
/* Default styles */
.detail-tab .tab-links {
	/* display: flex; */
	justify-content: space-between;
	flex-wrap: wrap;
	/* Allows wrapping for responsiveness */
	border-bottom: 1px solid #f0f0f0;
	gap: 10px;
	/* Optional: adds spacing between buttons */
}

.detail-tab .tab-link {
	flex: 1 1 calc(20% - 10px);
	/* Default for larger screens, 5 buttons per row */
	text-align: center;
	padding: 9px;
	/* border: 1px solid #ccc; */
	background-color: #fff;
	cursor: pointer;
	box-sizing: border-box;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
	.detail-tab .tab-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		/* Center-align tabs in mobile view */
		gap: 10px;
	}

	.detail-tab .tab-link {
		flex: 1 1 calc(50% - 10px);
		/* Two tabs per row */
		margin-bottom: 10px;
	}
}


.detail-tab .tab-content li span {
	min-width: 120px;
	display: inline-block;
}

.detail-cnt-head .restro-logo {
	margin-bottom: 15px;
	border-radius: 5px;
	max-width: 120px;
	height: auto;
}

/* 1-tab */
.resto-review-img {
	display: flex;
}

.restro-review h5 {
	font-size: 14px;
}

.restro-review h5 a {
	text-decoration: underline;
}

.restro-review h5 span {
	margin-right: 20px;
	color: #f48020 !important;
}

.tab-content p a {
	text-decoration: underline;
}

h1 {
	text-align: center;
}

.accordion li {
	list-style: none;
	margin: 0;
}

.accordion-trigger {
	margin: 10px 0 0;
	padding: 16px;
	background: #f4f4f4;
	transition: .2s ease-in;
	color: #222;
	font-size: 18px;
	border-radius: 8px;
}

.accordion-trigger:hover {
	cursor: pointer;
	background: #DADADA;
}

.accordion-content {
	background: #f4f4f4;
	padding: 20px;
	margin-top: 10px;
	border-radius: 10px;
}

.restro-accordion .accordion-content textarea {
	width: 100%;
	border: none;
	padding: 10px 15px;
	border-radius: 6px;
}

.restro-accordion ul {
	margin: 0px !important;
	padding: 0px !important;
}

.custom-btn {
	background-color: #f49320 !important;
	color: #fff !important;
}

.custom-btn:hover {
	background-color: transparent !important;
	color: #f49320 !important;
	border: 1px solid #f49320 !important;
}

.review-main {
	margin-bottom: 50px;
}

.near_restro {
	display: flex;
	background-color: #fff;
	padding: 10px 10px 0px;
	border-radius: 10px;
}

.near_restro-img img {
	border-radius: 5px;
}

.review-main .list_r {
	background-color: #f4f4f4;
	padding: 20px;
	border-radius: 10px;
}

.list_r ul {
	padding-left: 0px !important;

}

.list_r ul li {
	list-style: none;
}

.list_r ul li a {
	font-size: 16px;
}

.list_r ul li a:hover {
	color: #1877f2;
}

.review-main .list_r i {
	color: #f3a838;
}

.near_restro-detail h5 {
	font-size: 16px;
	margin-bottom: 0px;
}

.near_restro-detail i {
	font-size: 12px;
}

.list_r h6 p {
	margin-bottom: 0px !important;
}

.list_r p {
	font-size: 16px;
}

.list_r h6 {
	font-size: 18px;
	margin: 10px 0px;
}

.near_restro-detail p {
	font-size: 14px;
}

footer.row.add_bottom_25 {
	padding-bottom: 0px;
}

.list_r a {
	color: #222;
}

.detail-main {
	padding: 15px 15px 30px;
	border-radius: 15px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.detail-cnt-head {
	padding-bottom: 30px;
	border-bottom: 1px solid #444;
}

.restro-accordion .accordion-content h4 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 500;
}

.restro-accordion .accordion-content p {
	font-size: 16px;
	margin-bottom: 10px;
}

.restro-accordion .accordion-content p span {
	color: #000;
	font-weight: 500;
}

a.review-send {
	background-color: #f48020;
	color: #fff;
	padding: 10px;
	border: 1px solid #f48020;
	margin-top: 5px;
	width: auto;
	padding: 10px 30px;
}

.restaurant-p a {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

.detail-tab .schedule-list {
	padding-left: 0px;
	list-style: none;
}

.detail-tab .schedule-list li {
	font-size: 16px;
	margin: 5px 0px;
}

/*review start*/
.detail-review a {
	text-decoration: none;
}

.detail-review #testimonials {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.detail-review .testimonial-box-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.detail-review .testimonial-box {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	padding: 20px;
	margin-bottom: 15px;
	cursor: pointer;
}

.detail-review .profile-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
}

.detail-review .profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.detail-review .profile {
	display: flex;
	align-items: center;
}

.detail-review .name-user {
	display: flex;
	flex-direction: column;
}

.detail-review .name-user strong {
	color: #3d3d3d;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.detail-review .name-user span {
	color: #979797;
	font-size: 0.8rem;
}

.detail-review .reviews {
	color: #f9d71c;
}

.detail-review .box-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.detail-review .client-comment p {
	font-size: 0.9rem;
	color: #4b4b4b;
}

.detail-review .testimonial-box:hover {
	transform: translateY(-5px);
	transition: all ease 0.3s;
}

@media(max-width:1060px) {
	.detail-review .testimonial-box {
		width: 45%;
		padding: 10px;
	}
}

@media(max-width:790px) {
	.detail-review .testimonial-box {
		width: 100%;
	}

	.detail-review .testimonial-heading h1 {
		font-size: 1.4rem;
	}
}

@media(max-width:340px) {
	.detail-review .box-top {
		flex-wrap: wrap;
		margin-bottom: 10px;
	}

	.detail-review .reviews {
		margin-top: 10px;
	}
}

.detail-review ::selection {
	color: #ffffff;
	background-color: #252525;
}

.review-report,
.presentation-main,
.attractions-wrp {
	display: flex;
	align-items: center;
}

.review-bottom .review-report a {
	font-size: 16px;
	margin-right: 14px;
	text-decoration: underline;
}

.review-bottom {
	display: flex;
	justify-content: space-between;
}

.review-like a {
	font-size: 18px;
	margin: 5px;
}

.detail-menu img {
	width: 50%;
}

.restro-img {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	/*justify-content: space-between !important;*/
}

.restro-img .review-img {
	background-color: #fff;
	/* padding: 8px; */
	border-radius: 5px;
	width: 30%;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	/* margin: 10px 15px 20px 0px; */
}

.presentation-main img {
	min-width: 250px;
	border-radius: 8px;
	margin-right: 20px;
}

.presentation-main {
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.presentation-detail h4 {
	font-size: 20px;
}

.attra-main {
	width: 100%;
	/* padding: 10px; */
	/* border-radius: 10px; */
	text-align: center;
	margin: 10px;
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}

.attra-main img {
	width: 100%;
	border-radius: 6px;
	margin-bottom: 10px;
}

.attra-main h4 {
	font-size: 18px;
	margin-bottom: 0px;
}

.restro-img h6 {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 0px;
}

/*today css*/
.tab-login {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
}

.accordion-content .Upload-img [type=file] {
	border-radius: 5px !important;
}

.review-slide .item a img {
	margin: 20px 0px 10px !important;
	/*	border-radius: 5px !important;*/
}

.review-slide .owl-dots,
.review-slide .owl-nav {
	display: none;
}

.restro-review h6 {
	display: flex !important;
	justify-content: space-between !important;
	font-size: 14px;
}

.restro-review h6 span {
	color: #f48020 !important;
}

.restro-review h5 {
	font-size: 18px;
	margin-bottom: 15px;
	padding-top: 15px;
}

.restro-review h6 a {
	text-decoration: underline;
}

.restro-accordion .accordion-content textarea {
	width: 100%;
	border: none;
	padding: 10px 15px;
	border-radius: 6px;
	margin: 10px 0px;
}

.list_r ul li {
	list-style: none;
	line-height: 28px;
}

.list_r ul li a {
	font-size: 16px;
	color: #444444;
}

.list_r ul li a:hover {
	color: #000;
}

.list_r h4 {
	font-size: 22px;
}

.guide-cnt p {
	margin-bottom: 5px !important;
}

.restro-event img {
	max-width: 100%;
	width: 40%;
}

.restro-event {

	/*	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
	border-radius: 10px;
}

.restro-offer .offer-cnt h5,
.restro-offer .offer-cnt p {
	margin-bottom: 5px !important;
}

.restro-offer {
	border: 1px solid #4444441f;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;

}

.job-list-1 .job-location {
	display: flex;
}

.job-list-1 .job-location h5 {
	color: #747474;
	font-size: 16px;
}

.job-list-1 .job-location i {
	margin-right: 8px;
}

.job-list-1 h6 {
	font-size: 20px;
	margin-bottom: 10px;

}

.job-list-1 h5 {
	margin-bottom: 0px !important;
}

.job-list-1 {
	border: 1px solid #4444441f;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

.footer-selector .clearfix .styled-select {
	width: 50% !important;
}

.accordion h5 {
	display: flex;
	justify-content: space-between;
}

.accordion .accordion-trigger i {
	transition: transform 0.3s ease !important;
}

.accordion .accordion-trigger.active i {
	transform: rotate(180deg) !important;
}

.accordion .accordion-trigger:active i {
	transform: rotate(180deg) !important;
}

.detail-tab .tab-content p a {
	color: #f48020;
}

.naccs {
	display: flex;
	flex-direction: column;
}

.register-head h5 {
	color: #747474;
	font-weight: 400;
	font-size: 18px;
}

.register-head h3 {
	margin-bottom: 20px;
}

.sign_up .main h6 {
	font-size: 18px;
}

.my-profile {
	margin: 0px 0px 50px 0px;
}

.profile-head {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.profile-btm-cnt {
	background-color: #fff;
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.profile-detail h3 {
	margin-top: 20px;
	font-size: 16px;
	color: #747474;
}

.profile-detail h4 {
	font-size: 16px;
	color: #000;
	font-weight: 500;
	word-wrap: break-word;
}

.profile-head h5 {
	color: #1877f2;
}

.profile-head img {
	border-radius: 50%;
	height: 80px;
	width: 80px;
}

.restaurant-profile-img {
	margin-top: 20px;
	width: 50%;
}

.detail-tab .tabs-container-profile {
	background-color: #f4f4f4 !important;
}

.tabs-container-profile .tab-link {
	background-color: #f4f4f4 !important;
	font-size: 16px !important;
}

.restaurant-profile {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.signup-head {
	margin: 40px 0px;
}

.header-head {
	display: flex;
	justify-content: space-between;
	align-items: center;

}

.resgister-btn a.btn_r,
.btn_r {
	background-color: #f49320;
	color: #fff;
	width: 100%;
	padding: 10px 25px;
	border-radius: 5px;
	font-size: 16px;
	margin-right: 10px;
}

.profile-detail {
	margin-top: 20px;
}

.resgister-btn a.btn_r,
.btn_r:hover {
	border: 1px solid #f49320;
	background-color: #f4f4f4;
	color: #f49320;
}

.edit-head {
	display: flex;
	justify-content: space-between;
}

.edit-head i {
	background-color: #f49320;
	color: #fff;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	font-size: 20px;
	justify-content: center;
	display: flex;
	align-items: center;
	align-items: center;
}

.profile-detail .form-group {
	margin-bottom: 30px !important;
}

.profile-detail .form-group input {
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: 1px solid #e3e3e3 !important;
	border-radius: 0px !important;
	/* border: none; */
}

.profile-btm-cnt .profile-head {
	padding: 0px !important;
	box-shadow: none;
}

.btn_submit {
	border: none;
	background-color: #f49320;
	border: 1px solid #f49320;
	outline: none;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	padding: 8px 25px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	font-size: 16px;
	border-radius: 5px;
}

a.btn_submit.full-width,
.btn_submit.full-width {
	display: block;
	width: 100%;
	text-align: center;
}

/* Chrome, Safari, Edge, Opera ke liye */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox ke liye */
input[type="number"] {
    appearance: textfield; /* -moz-appearance ki jagah */
}


/* Mobile view adjustments */
@media (max-width: 768px) {
	#menu {
		order: 1 !important;
		/* Force menu to appear first */
		margin-top: 50px;
	}

	.main-category-container {
		overflow: hidden;
	}

	.categories-tab {
		padding: 20px 10px;
		width: 95%;
		margin: 10px auto;
	}

	/* #menu {
		padding-bottom: 100%;
	} */

	#cards {
		order: 2 !important;
		/* Force cards to appear second */

	}

	.review-report,
	.presentation-main,
	.attractions-wrp .pm-1 {
		display: block !important;
	}

	.presentation-main img {
		height: 200px !important;
		width: 100% !important;
	}

	.presentation-detail {
		margin-top: 20px;
	}

	.detail-menu img {
		width: 100%;
	}

	.restro-event img {
		max-width: 100%;
		width: 100%;
	}

	.detail-tab .tab-content {
		padding: 25px 10px;
	}

	.restaurant-profile,
	.profile-head,
	.profile-btm-cnt {
		padding: 20px;
	}

	.restaurant-profile {
		text-align: center;
	}

	.restaurant-profile-img {
		width: 100%;
	}

	.signup-head {
		margin: 20px 0px;
	}

	.categories-tab-head h4 {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.detail-main {
		padding: 15px 15px;
	}

	.detail-review .name-user strong {
		font-size: 18px;
	}

	.categories-tab .categories-img {
		max-width: 100% !important;
	}

	/* .categories-tab .categories-img img {
		max-width: 100% !important;
	} */

	.header-head {
		height: 50px;
	}

	.resgister-btn a.btn_r,
	.btn_r {
		padding: 10px 15px;
		font-size: 14px;
		margin-right: 0px;
	}

	.header .container-fluid {
		padding: 0px !important;
	}
	.custom-btn{
		padding: 10px;
	}
	.accordion-trigger{
		font-size: 16px;
	}
	a.review-send{
		padding: 10px 20px;
	}
	.display-5 {
		font-size: 28px;
	}

}