﻿/* Top Navigation Bar */
.top-nav {
	padding: 25px;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.scrolled .top-nav {
	padding: 12px;
}

.border {
	border-color: #D9D9D9;
}

.max-w-857 {
	padding: 6vw;
}

.min-h300 {
	min-height: 300px;
}

.minus-top {
	margin-top: -290px;
}

.minus-top-20 {
	margin-top: -40px;
}

.input-min-h-88 {
	min-height: 88px;
}

.top-nav .nav-link {
	color: var(--white);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	padding: 0;
	position: relative;
	transition: color 0.3s;
}

.top-nav .nav-link.active {
	font-weight: 500;
}

.top-nav ul li a.nav-link:after {
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	width: 0%;
	content: '';
	border-radius: 4px;
	color: transparent;
	background: var(--white);
	height: 3px;
}

.top-nav a.nav-link:hover,
.top-nav a.nav-link:focus {
	color: var(--white) !important;
}

.top-nav ul li a.nav-link:hover:after,
.top-nav ul li a.nav-link.active:after {
	width: 100%;
}

.top-nav ul li a.nav-link:after,
.top-nav ul li a.nav-link:before {
	transition: all .5s;
}

.top-nav .nav-link:hover {
	color: var(--secondary-color);
}

.main-navigation {
	display: flex;
	gap: 33px;
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 22px;
	cursor: pointer;
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
	position: fixed;
	left: -280px;
	top: 0;
	width: 280px;
	height: 100vh;
	background-color: var(--bs-black);
	z-index: 2000;
	transition: left 0.4s ease-in-out;
	padding: 20px;
	overflow-y: auto;
}

.mobile-sidebar.active {
	left: 0;
}

.sidebar-close {
	background: none;
	border: none;
	color: var(--white);
	font-size: 28px;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 15px;
}

.mobile-sidebar .sidebar-nav {
	margin-top: 60px;
}

.mobile-sidebar .nav-link {
	color: var(--white);
	padding: 12px 10px;
	display: block;
	text-transform: uppercase;
	/*! font-size: 13px; */
	/*! letter-spacing: 1px; */
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s;
	text-decoration: none;
}

.mobile-sidebar .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	/*! color: var(--secondary-color); */
}

/* Overlay for mobile menu */
.menuoverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1500;
	display: none;
	opacity: 0;
	transition: opacity 0.4s;
}

.menuoverlay.active {
	display: block;
	opacity: 1;
}


.dark-bg {
	background: var(--dark-bg);
	color: var(--white);
}


.mt-min-top {
	margin-top: -130px;
}

.l-spacing {
	letter-spacing: 15%;
}

.filter-white {
	filter: brightness(255);
}

.info-inner h3,
.info-inner p {
	color: var(--white);
}

.max-w-410 {
	max-width: 410px;
	border: 1px solid #505050;
	overflow: hidden;
	padding: 27px 2%;
	transition: all 0.3s;
	position: relative;
}

.max-w-410::before {
	content: '';
	position: absolute;
	bottom: 0;
	top: 100%;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.6s ease;
	left: 0;
	right: 0;
}

.max-w-410:hover::before {
	top: 0;
	height: 100%;
}

.max-w-410 .info-header {
	position: relative;
	z-index: 1;
}


.back-arrow {
	width: 73px;
	height: 73px;
	border-radius: 50%;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 13px;
	position: relative;
	overflow: hidden;
}

.back-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	top: 100%;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.6s ease;
	left: 0;
	right: 0;
}

.back-arrow:hover::before {
	top: 0;
	height: 100%;
}

.arrow-goback {
	position: absolute;
	left: -45px;
	top: 50%;
	transform: translateY(-50%);
}

.back-arrow .fa-arrow-left {
	color: #000000 !important;
	font-size: 140%;
}

.max-w-400 {
	max-width: 458px;
	margin: auto;
}

.featured-section.recommendation-card:hover {
	transform: translateY(0px);
}

/* Category Cards */
.category-section {
	padding: 40px 0;
}

.category-card {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	margin-bottom: 30px;
	cursor: pointer;

}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.category-card:hover img {
	transform: scale(1.1);
}

.category-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	padding: 30px 20px;
	transition: all 0.3s;
}

.category-card:hover .category-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.category-title {

	color: var(--text-light);
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0;
	text-transform: capitalize;
}

/* Featured Section - Custom Grid Layout */
.featured-grid-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.featured-side-col {
	flex: 0 0 auto;
	width: 20%;
	padding: 0 15px;
}

.featured-center-col {
	flex: 0 0 auto;
	width: 60%;
	padding: 0 15px;
}

.featured-card-wrapper {
	margin-bottom: 0;
}

.featured-card-top {
	margin-bottom: 16px;
}

/* Featured Section */
.featured-section {
	background-color: #141414;
	padding: 60px 40px;
	margin: 0;
	border-radius: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-content {
	text-align: center;
	color: var(--text-light);
}

.lg-sub-html {
	font-size: 20px;
}

.Countryshow h2 {
	color: var(--red-color);
}

.Countryshow span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 34px;
	font-family: 'Roxborough CF';
}

.custom-border {
	position: relative;
	height: 3px;
	max-width: 666px;
}

.custom-border::after {
	content: "";
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 2px;

	background: linear-gradient(to right,
			transparent,
			rgba(255, 255, 255, 0.6),
			rgba(213, 213, 213, 0.9),
			rgba(255, 255, 255, 0.6),
			transparent);


}

.number-circle {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	background: var(--dark-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: -33px;
	font-family: 'Roxborough CF';
	position: absolute;
	color: #fff;
	left: 50px;
	overflow: hidden;
	font-size: 50px;
	top: -12px;
	z-index: 10;
	/* High z-index taake overflow se bhi dikhay */
	transition: all 0.4s ease;
}

.cardhover {

	padding-top: 63px;
}


.blackbox {
	background: var(--dark-bg);
	color: var(--white);

	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.paddingbox {
	padding: 11px 9%;
}


.coverflow-wrapper {
	width: 100%;
	height: 690px;
	display: flex;
	justify-content: center;
	perspective: 2000px;
	position: relative;
	overflow: hidden;
}

.coverflow {
	position: relative;
	width: 1200px;
	height: 571px;
	transform-style: preserve-3d;
}


.slidethreed {
	position: absolute;
	top: 0;
	left: 50%;
	width: 560px;
	height: 570px;
	transition: all .7s cubic-bezier(.25, .8, .25, 1);
	transform-origin: center;
	opacity: 0;
	pointer-events: none;
}

.slidethreed img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

/* Active */
.slidethreed.active {
	transform: translateX(-50%) translateZ(0) rotateY(0deg) scale(1);
	opacity: 1;
	z-index: 10;
}

/* Left 1 */
.prev1 {
	transform: translateX(-118%) rotateY(90deg) scale(.85);
	opacity: .8;
	z-index: 8;
}

/* Left 2 */
.prev2 {
	transform: translateX(-150%) rotateY(85deg) scale(.7);
	opacity: .5;
	z-index: 6;
}

/* Left 3 */
.prev3 {
	transform: translateX(-185%) rotateY(90deg) scale(.55);
	opacity: .3;
	z-index: 4;
}

/* Right 1 */
.next1 {
	transform: translateX(22%) rotateY(-85deg) scale(.85);
	opacity: .8;
	z-index: 8;
}

/* Right 2 */
.next2 {
	transform: translateX(53%) rotateY(-95deg) scale(.7);
	opacity: .5;
	z-index: 6;
}

/* Right 3 */
.next3 {
	transform: translateX(80%) rotateY(-90deg) scale(.55);
	opacity: .3;
	z-index: 4;
}

.coverflow-wrapper .nav {
	position: absolute;
	bottom: 3px;
	display: flex;
	gap: 20px;
}

.coverflow-wrapper .nav button {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	border: 1px solid #D3D3D3;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s;
	background: #fff;

}

.coverflow-wrapper .nav button:hover {
	background: #1C1C1C;
	color: #fff;
	border: 1px solid #1C1C1C;
}

.coverflow-wrapper .nav button:hover img {
	filter: brightness(255);

}

.blog h2 {
	font-size: 36px;
	line-height: 44px;
	margin-top: 40px;
}

.blog h3 {
	font-size: 27px;
	line-height: 37px;
	margin-bottom: 0;
}

.blog p {
	font-size: 19px;
	line-height: 28px;
	margin-bottom: 15px;
}

.blog a {
	color: var(--bs-black);
	text-decoration: none;
	transition: color 0.3s;
}

.blog ul {
	padding-left: 20px;
}

ul li {
	list-style-type: disc;

	font-size: 19px;
	line-height: 28px;
	margin-bottom: 10px;
}

ol li {
	list-style-type: decimal;
	font-size: 19px;
	line-height: 28px;
	margin-bottom: 10px;
}


.blog .paddingbox {
	padding: 31px;
}

.blog a:hover h3 {
	text-decoration: underline;
}

.blog .blackbox {
	justify-content: start;
}

.texttrasfar {
	text-transform: capitalize;
}

.blog-inner .blackbox {
	flex-direction: initial;
}

.min-w140 {
	min-width: 140px;
}

/* LEFT CONTENT */

.blogdetails {
	flex: 1;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 4%;
	font-size: 23px;
	color: #fff;
	margin-top: -10px;
	justify-content: center;
	margin-bottom: 20px;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 13px;
}

.meta-item svg {
	color: #fff;
}

.meta-item strong {
	font-weight: 500;
}


/* SIDEBAR */

.sidebar-wrapper {
	width: 420px;
}

.sidebar {
	background: #111;
	color: #fff;
	padding: 30px 35px;
	/* position:sticky; */
	top: 140px;
}

.sidebar h3 {
	margin-top: 0;
	margin-bottom: 25px;
}

/* toc container */
.toc {
	position: relative;
}

/* vertical progress line background */
.toc::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: #333;
}

/* progress fill line */
.toc-progress {
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 0;
	background: #fff;
	transition: height 0.25s;
}

/* links */

.toc a {

	display: block;
	color: #cacaca;
	text-decoration: none;
	padding: 10px 0 10px 15px;
	position: relative;
	transition: 0.3s;

	font-size: 18px;
}

/* animated left border */
.toc a::before {

	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}

/* hover */
.toc a:hover {
	color: #fff;
}

/* ACTIVE LINK */
.toc a.active {

	color: #fff;
	font-weight: 500;
}

.toc a.active::before {

	width: 10px;
}

.min-auto {
	min-height: auto;
}

.minw-auto {
	min-width: auto;
}

.mapsize {
	height: 750px;
}

.contactvideo {
	padding-bottom: 40.3%;
}

/* testimonial box */
.testimonial-box {
	position: relative;
	background: #fff;
	border-radius: 0;
	padding: 20px 20px 20px 48px;
	box-shadow: rgba(0, 0, 0, .0980392) 2px 2px 2px 0px;
	border: 1px solid #f5f5f5;
	transition: all 0.4s ease;
}

.testimonial-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}


/* speech arrow */
.testimonial-box:after {
	content: "";
	position: absolute;
	bottom: -29px;
	left: 80px;
	width: 30px;
	column-rule-color: #fff;
	perspective-origin: 15px 15px;
	transform-origin: 15px 15px;
	filter: drop-shadow(rgba(0, 0, 0, .0980392) 2px 2px 1px);
	border-top: 30px solid #fff;
	border-right: 30px solid rgba(0, 0, 0, 0);
	border-bottom: 0px solid rgba(0, 0, 0, 0);
	border-left: 0px solid rgba(0, 0, 0, 0);
}

.testimonial-box:before {
	bottom: 47px;
	box-sizing: border-box;
	color: #bbb;
	content: "“";
	display: block;
	height: 96px;
	left: 55px;
	position: absolute;
	right: 515.391px;
	text-size-adjust: 100%;
	top: 20px;
	width: 24.6094px;
	column-rule-color: #bbb;
	perspective-origin: 12.2969px 48px;
	transform-origin: 12.2969px 48px;
	border: 0px none #bbb;
	font: normal normal normal normal 60px/96px Georgia, serif;
	margin: -25px 0px 0px -40px;
	outline: #bbb none 0px;
}

/* quote icon */
.quote-icon {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 28px;
	color: #cfcfcf;
}

/* rating circles */
.rating {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
}

.rating span {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #00a680;
	display: flex;
}

.dotview {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #00a680;
	margin: auto;
}

/* text */
.testimonial-text {
	color: #777;
	font-size: 14px;
	line-height: 21px;
	font-style: italic;
}

/* read more */
.read-more {
	color: #000;
	font-weight: 500;
	text-decoration: none;
}


/* user info */
.user-info {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 21px;
	padding-left: 20px;
}

.user-info img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.user-name {
	font-weight: 400;
	color: #777;
	text-transform: uppercase;
}

.user-date {
	font-size: 14px;
	color: #777;
	text-transform: uppercase;
}

/* Social Icons Section */
.social-icons-section {
	padding: 20px 0;

}

.social-icon-box {
	border-radius: 0px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 225px;
	transition: transform 0.3s ease;
}

.social-icon-box:hover {
	transform: translateY(-5px);
}

.social-icon-box i {
	font-size: 80px;
	color: white;
}

.facebook-box {
	background: var(--facebook-blue);
}

.tripadvisor-box {
	background: var(--tripadvisor-green);
}

.trustpilot-box {
	background: var(--trustpilot-navy);
}

.holidaycheck-box {
	background: var(--holidaycheck-blue);
}

.google-box {
	background: var(--google-blue);
}

.google-icon-custom {
	width: 100px;
	height: 100px;
}

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

	.testimonial-box {
		padding: 20px 15px 20px 45px;
	}

	.quote-icon {
		left: 10px;
	}

	.testimonial-box:after {
		left: 50px;
	}

}

/* Business Card - Left Side */
.google-business-card {
	padding: 3px 2px;
	text-align: left;
}

.business-logo {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	margin-bottom: 15px;
	object-fit: cover;
}

.business-name {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 7px;
	color: #333;
	font-family: 'Graphik Web';
}

.business-rating {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #fdb914;
}

.business-rating .stars {
	color: #FDB914;
	margin-left: 5px;
}

.review-count {
	color: #555;
	font-size: 16px;
	margin-bottom: 4px;
}

.powered-by {
	font-size: 17px;
	color: #555;
	margin-bottom: 15px;
}

.powered-by .google-text {
	color: #4285F4;
	font-weight: 500;
}

.review-on-google-btn {
	background: #4285F4;
	color: white;
	padding: 7px 17px 10px;
	border-radius: 20px;
	text-decoration: none;
	display: inline flow-root list-item;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.3s ease;
	line-height: 1;
}

.review-on-google-btn:hover {
	background: #357ae8;
	color: white;
}

.reviewlogo img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

/* Review Cards */
.reviews-slider-wrapper {
	position: relative;
	padding: 0 15px;
}

.google-review-card {
	background: #f4f4f4;
	border-radius: 0;
	padding: 25px 20px;
	margin: 0 10px;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
	border: 0px solid #e8e8e8;
	position: relative;
	min-height: 240px;
	transition: all 0.4s ease;
}


.google-icon-small {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 20px;
	color: #4285F4;
}


.reviewer-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.reviewer-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: white;
	font-size: 16px;
	flex-shrink: 0;
}

.reviewer-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.reviewer-info h6 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #154fc1;
	font-family: 'Graphik Web';
}

.reviewer-info p {
	margin: 1px 0 0 0;
	font-size: 13px;
	color: #555;
}

.review-rating {
	color: #FDB914;
	margin-bottom: 7px;
	font-size: 12px;
}

.review-content {
	font-size: 13px;
	line-height: 1.6;
	/*! color: #555; */
	max-height: 99px;
	overflow-y: auto;
	padding-right: 5px;
}

/* Custom Scrollbar for Review Content */
.review-content::-webkit-scrollbar {
	width: 4px;
}

.review-content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.review-content::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 10px;
}

.review-content::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

/* Firefox Scrollbar */
.review-content {
	scrollbar-width: thin;
	scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Slick Slider Customization */
.slick-slider {
	margin-bottom: 40px;
}

.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	z-index: 1;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.slick-prev:hover,
.slick-next:hover {
	background: white;
}

.slick-prev {
	left: -20px;
}

.slick-next {
	right: -20px;
}

.slick-prev:before,
.slick-next:before {
	color: #333;
	font-size: 18px;
	opacity: 1;
}

/* Slick Dots */
.smalldot .slick-dots {
	bottom: 14px;
	position: relative;
	margin-top: 15px;
}

.smalldot .slick-dots li button:before {
	font-size: 10px;
	color: #ddd;
	opacity: 1;
}

.smalldot .slick-dots li.slick-active button:before {
	color: #FDB914;
	opacity: 1;
}

.smalldot .slick-dots li button {
	color: #fff;
	background: #ccc;
}

.smalldot .slick-dots li {
	border: 0px solid #fff;
	width: 16px;
	height: 16px;
}

.btn-g {
	background: #fff;
	border-radius: 50%;
	padding: 2px;
}

.smalldot .slick-dots li.slick-active button {
	background: #FDB914;
}


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

	.google-business-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {

	.slick-prev {
		left: -10px;
	}

	.slick-next {
		right: -10px;
	}
}

@media (max-width: 1680px) {

	.mapsize {
		height: 550px;
	}
}


/* responsive */

@media(max-width:900px) {

	.container {
		flex-direction: column;
	}

	.sidebar {
		position: relative;
	}

}

/* Responsive Design */
@media (max-width: 1480px) {
	.fs-55 {
		font-size: 46px;
	}

	.top-nav {
		padding: 6px;
	}
}

@media (max-width: 991px) {
	.main-navigation {
		display: none !important;
	}

	.mobile-toggle {
		display: block;
	}

	.featured-section {
		min-height: 400px !important;
		padding: 50px 30px;
	}

	.fs-55 {
		font-size: 40px;
	}


}

@media (min-width: 992px) {
	.mobile-sidebar {
		display: none;
	}
}

@media (max-width: 767px) {
	.max-w-410 {
		max-width: 100%;
		padding: 27px 4%;
	}

	.post-meta {
		margin-top: 7px;
	}

	.sidebar-wrapper {
		width: 100%;
	}

	.mapsize {
		height: 442px;
	}

	.partnership-section h2 {
		font-size: 44px;
	}

	.mt-min-top {
		margin-top: -71px;
	}

	.i-ph-h {
		height: 37vh;
	}

	.featured-grid-row {
		flex-direction: column;
	}

	.featured-grid-row>div {
		width: 100% !important;
	}


	.category-card {
		margin-bottom: 30px;
	}

	.scrolled .top-nav {
		padding: 0px;
	}

	.fs-21 {
		font-size: 18px;
	}

	.fs-55 {
		font-size: 32px;
	}

	.sidebar {
		top: 0px;
	}

	.blog h2 {
		font-size: 29px;
		line-height: 36px;
		margin-top: 30px;
	}

	.blog h3 {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: 0;
	}

	.meta-item {
		gap: 5px;
	}

	.meta-item img {
		width: 12px;
		height: 12px;
	}

	.post-meta {
		font-size: 12px;
	}

	.Countryshow span {
		font-size: 24px;
	}

	.carousel-item img {
		height: 30vh;
	}

	.carousel-item.payment-banner img {
		height: 9vh;
	}

	.toc::before {
		left: -11px;
	}

	.toc-progress {
		left: -11px;
	}

	.category-section {
		padding: 26px 0;
	}

	.number-circle {
		width: 70px;
		height: 70px;
		margin-top: -27px;
		top: -12px;
	}

	.cardhover {
		padding-top: 45px;
	}
	.toc a {
	padding: 5px 0 5px 15px;
	font-size: 16px;
	}


}

@media (max-width: 576px) {
	.back-arrow {
		width: 44px;
		height: 44px;

	}
.headdigfont br{display: none;}
	.partnership-section h2 {
		font-size: 34px;
	}

	.arrow-goback {
		position: relative;
		left: 0;
		top: -8px;
		transform: translateY(-50%);
	}


	.featured-content h3 {
		font-size: 21px;
		line-height: 28px;
	}

	.coverflow {
		width: 100%;
		height: 400px;
		overflow: hidden;
	}

	.slidethreed {
		width: 100%;
		height: auto;

	}

	.coverflow-wrapper .nav button {
		width: 50px;
		height: 50px;

	}

	.coverflow-wrapper .nav {
		bottom: 1px;
	}

	.coverflow-wrapper .nav button img {
		width: 20px;

	}

}

@media (max-width: 558px) {

	.coverflow-wrapper {
		height: 480px;
		overflow: hidden;
	}
}

@media (max-width: 398px) {

	.coverflow-wrapper {
		height: 410px;
		overflow: hidden;
	}

}


/* Arrows */
.slick-prev,
.slick-next {
	font-size: 20px;
	line-height: 0;
	position: absolute;
	top: 43%;
	display: block;
	width: 28px;
	height: 28px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(-0, -50%);
	cursor: pointer;
	color: #5c5c5c;
	border: none;
	outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before,
.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	opacity: .75;
	color: white;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -9px;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-prev:before {
	content: '←';
}

[dir='rtl'] .slick-prev:before {
	content: '→';
}

.slick-next {
	right: -8px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}

.slick-next:before {
	content: '→';
}

[dir='rtl'] .slick-next:before {
	content: '←';
}

/*  Section wrapper  */
.hiw-section {
	position: relative;
	padding: clamp(5rem, 10vw, 9rem) 0 clamp(6rem, 11vw, 10rem);
	background: var(--off-black);
	overflow: hidden;
}

.hiw-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	opacity: .03;
	pointer-events: none;
}

.hiw-section::after {
	content: '';
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 80vw;
	height: 80vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 168, 76, .06) 0%, transparent 70%);
	pointer-events: none;
}


/* â”€â”€ Step card â”€â”€ */
.step-card {
	position: relative;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 2px;
	padding: 2.6rem 2rem 2.4rem;
	height: 100%;
	text-align: center;
	transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
	cursor: default;
	overflow: hidden;
}

/* corner accent */
.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-top: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
	opacity: 0;
	transition: opacity .35s ease;
}

.step-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-bottom: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	opacity: 0;
	transition: opacity .35s ease;
}

.step-card:hover {
	border-color: rgba(201, 168, 76, .4);
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 168, 76, .08);
}

.recommendation-card:hover::before,
.recommendation-card:hover::after {
	opacity: 1;
}

.step-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid var(--card-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.4rem;
	background: linear-gradient(135deg, rgba(201, 168, 76, .08), transparent);
	transition: border-color .35s, background .35s;
}

.step-card:hover .step-icon {
	border-color: var(--gold);
	background: linear-gradient(135deg, rgba(201, 168, 76, .18), rgba(201, 168, 76, .04));
}

.step-icon i {
	font-size: 1.7rem;
	color: var(--gold);
	transition: transform .35s ease;
}

.step-card:hover .step-icon i {
	transform: scale(1.15);
}

.step-num {
	position: absolute;
	top: 1rem;
	right: 1.1rem;
	font-size: 1.85rem;
	color: var(--gold);
	opacity: .35;
	letter-spacing: .08em;
}

.step-title {
	font-style: italic;
	font-size: clamp(1.8rem, 2vw, 1.4rem);
	font-weight: 400;
	color: var(--white);
	margin-bottom: 1rem;
}

.step-body {
	color: var(--white);
}

.steps-grid {
	--bs-gutter-y: 1.5rem;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim {
	animation: fadeUp .7s ease both;
}

.step-col:nth-child(1) .anim {
	animation-delay: .05s;
}

.step-col:nth-child(2) .anim {
	animation-delay: .18s;
}

.step-col:nth-child(3) .anim {
	animation-delay: .31s;
}

.step-col:nth-child(4) .anim {
	animation-delay: .44s;
}

.step-col:nth-child(5) .anim {
	animation-delay: .57s;
}

.step-col:nth-child(6) .anim {
	animation-delay: .70s;
}

.hiw-heading-wrap {
	animation: fadeUp .6s ease both;
	animation-delay: 0s;
}

.payment-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	justify-content: center;
	padding: 10px 16px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pay-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
}

.visa {
	font-family: 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 900;
	color: #1a1f71;
	letter-spacing: -1px;
	font-style: italic;
}

.mastercard svg {
	width: 38px;
	height: 28px;
}

.jcb-wrap {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	height: 28px;
	width: 38px;
}

.jcb-blue {
	background: #003087;
	width: 13px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 2px;
}

.jcb-red {
	background: #cc0000;
	width: 13px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 2px;
}

.jcb-green {
	background: #007b40;
	width: 13px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 2px;
}

.jcb-blue span,
.jcb-red span,
.jcb-green span {
	font-size: 9px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.5px;
}

.jcb-letter {
	font-size: 13px;
	font-weight: 900;
	font-family: Arial;
}

.amex {
	background: #2671b2;
	color: #fff;
	font-size: 7px;
	font-weight: 900;
	letter-spacing: 0.3px;
	border-radius: 4px;
	padding: 2px 5px;
	text-align: center;
	line-height: 1.3;
	height: 28px;
	width: 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.amex .amex-top {
	font-size: 6px;
	letter-spacing: 1px;
	opacity: 0.85;
}

.amex .amex-main {
	font-size: 8.5px;
	letter-spacing: 0.5px;
	font-weight: 900;
}

.amex .amex-bot {
	font-size: 5.5px;
	letter-spacing: 0.3px;
	opacity: 0.85;
}

.unionpay {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	height: 28px;
	width: 46px;
	position: relative;
	background: #fff;
	border: 1px solid #ddd;
}

.up-red {
	background: #c0392b;
	width: 14px;
	border-radius: 2px 0 0 2px;
}

.up-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #e8001c;
	padding: 0 3px;
}

.up-content .up-cn {
	font-size: 7px;
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.5px;
}

.up-content .up-en {
	font-size: 5px;
	color: #fff;
	letter-spacing: 0.2px;
}

.up-stripe {
	width: 5px;
	background: linear-gradient(180deg, #e8001c 33%, #006633 33%, #006633 66%, #003087 66%);
}

.thai {
	display: flex;
	align-items: center;
	gap: 3px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 2px 6px;
	height: 28px;
}

.thai-logo {
	width: 20px;
	height: 20px;
}

.thai-text {
	font-size: 9px;
	color: #1a3a6b;
	font-weight: 700;
	line-height: 1.2;
}

.thai-text .thai-sub {
	font-size: 6px;
	color: #555;
	font-weight: 400;
	letter-spacing: 0.2px;
}

.paypal {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #cbfbde;
	color: #fff;
	font-size: 16px;
	border-radius: 0;
	padding: 30px 12px;
}

.pay-card {
	background: #adc9e1;
	border-radius: 0px;
	padding: 36px 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	height: 100%;
	border: 1px solid #ece9e4;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s, box-shadow 0.25s;
	position: relative;
	overflow: hidden;
}
.revolut{background: #ffdd84;}
.video-box {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	cursor: pointer;
}

.video-box video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 12px 18px;
	border-radius: 50%;
	font-size: 18px;
}

/* TABS */
.faq-tabs-wrapper {}

.faq-tabsbkp {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	scrollbar-width: none;
	padding: 0 16px;
	justify-content: center;
}

.faq-tabs::-webkit-scrollbar {
	display: none;
}

.faq-tab-btnbkp {
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 2px 2px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.faq-tabs {
	/* display: flex; */
	overflow-x: auto;
	gap: 15px;
	scrollbar-width: none;
	padding: 0px 16px;
	justify-content: center;
	flex-direction: column;
	max-width: 884px;
	margin: auto;
}

.faq-tab-btn {
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 7px 0px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
	display: inline-block;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	width: max-content;
	margin: 2px 13px;
}

.faq-tab-btn:hover {
	color: var(--red-color);
}

.faq-tab-btn.active {
	color: var(--red-color);
	border-bottom-color: var(--red-color);
}

.faq-tab-btn.active i {
	color: var(--red-color);
}

/* CONTENT */
.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
	animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.section-desc {
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 300;
	margin-bottom: 36px;
}

/* ACCORDION */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--card-bg);
	border: 1px solid var(--gray);
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.faq-item.open {
	border-color: var(--gray);
}

.faq-question {
	width: 100%;
	background: #f0f0f0;
	border: none;
	padding: 22px 26px;
	text-align: left;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 24px;
	font-family: 'Roxborough CF';
}

.faq-question .q-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--gold-dim);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.3s;
	font-size: 14px;
	color: var(--red-color);
}

.faq-item.open .q-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer-inner {
	padding: 0 26px 24px 26px;
	line-height: 1.75;
	border-top: 1px solid var(--gold-light);
	padding-top: 18px;
}

.faq-item.open .faq-answer {
	max-height: 3200px;
}

/* CONTACT STRIP */
.contact-strip {
	background: var(--dark);
	border-radius: 14px;
	padding: 40px 44px;
	margin-top: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.contact-strip h4 {
	color: #fff;
	font-size: 1.3rem;
}

.contact-strip p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.88rem;
	margin-top: 5px;
}

.contact-btn {
	background: var(--gold);
	color: var(--dark);
	border: none;
	padding: 13px 30px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.contact-btn:hover {
	opacity: 0.85;
}

.pagging ul li {
	margin: 0 5px;
	list-style: none;
}

.pagging ul li a {
	border-radius: 0px;
	font-size: 13px;
	color: #A6A7AD;
	line-height: 19px;
	/*! text-align: center; */
}

.pagging ul li a span svg {
	width: 10px;
	height: 10px;
	fill: #808495;
}

.pagging ul li a span {
	line-height: 10px;
}

.pagging ul li a:hover {
	background: #141414;
	border-color: #141414;
	color: #fff;
}

.pagging ul li a.active {
	background: #141414;
	border-color: #141414;
	color: #fff !important;
}

.pagging ul li a:hover svg {
	fill: #fff;
}

.pagging ul li.allpage {
	width: 110px;
}

.pagging ul li.allpage .select2-choice {
	height: 35px;
	border-color: #E9E9F0 !important;
}

.pagging ul li.allpage .select2-chosen {
	font-size: 13px;
	line-height: 25px;
	margin-top: 0;
	color: #A6A7AD
}

.pagging ul li.allpage .select2-arrow b {
	background-position: right 10px center !important;
	background-size: 25% !important;
}

.pagging ul li.allpage .select2-choice:hover {
	background: none;
}
.faq-answer-inner p{font-size: 19px;}
@media (max-width: 1391px) {
	.blog p {
		font-size: 16px;
	}

	ul li {
		font-size: 16px;
		line-height: 24px;
	}
	.faq-answer-inner p{	font-size: 16px;
		line-height: 24px;}
}

@media (max-width: 767px) {
	.faq-tabs {
		display: flex;
		gap: 2px;
		padding: 0px 3px;
		justify-content: start;
		flex-direction: initial;
	}

	.faq-tab-btn {
		margin: 2px 9px;
	}

	.fs-42 {
		font-size: 32px;
	}

	.pagging ul li {
		margin: 0 3px;
	}

	.pagging ul li a {
		font-size: 12px;
		padding: 6px 9px;
	}

}

@media (max-width: 576px) {
	.faq-question {
		padding: 9px 14px;
		font-size: 18px;
	}

	.faq-answer-inner {
		padding: 16px 18px 18px;
	}

	.contact-strip {
		padding: 28px 24px;
	}

	.carousel-item.payment-banner img {
		height: 54px;
	}

	.social-icon-box {
		min-height: 100px;
	}

	.social-icon-box img {
		width: 70px;
	}

	.social-icon-box.facebook-box img {
		width: 25px;
	}

	.user-info img {
		width: 30px;
		height: 30px;
	}

	.slick-slider {
		margin-bottom: 0;
	}

	.blog .paddingbox {
		padding: 18px;
	}

	.blog-inner h3 {
		font-size: 15px;
		line-height: 20px;
	}

	.blog p {
		line-height: 25px;
	}

	.footer-links li {
		margin: 0;
	}


}

.iframethamb{
    position:relative;
    width:100%;
    padding-top:56.25%;
    cursor:pointer;
	padding-bottom: 0;
}

.video-thumbnail{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:rgba(0,0,0,0.6);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.iframethamb iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

.Wise {
    background: #9fe870;
}


@media (min-width: 768px) {
    .showroom-box .d-md-flex {
        align-content: center !important;
        flex-wrap: wrap;
    }
	.showroom-box a.a-link {
		margin-top: 0px;
	}
}

.showroom-box .d-md-flex .a-link:nth-child(3) {
    line-height: 20px; 
}
.page-template-template-pay #lookbook .pay-card.Wise img {
    width: 175px;
}

.category-section .slidethreed img {
    object-position: top;
}