.c-btn-01 {
	display: inline-flex;
	padding: 8px 28px;
	border-radius: 35px;
	line-height: 1.4;
	/* background: linear-gradient(45deg, var(--color-main), var(--color-main2)); */
	color: white;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 150px;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: #f00;
	z-index: 1;
	background: #f00;
}

.c-btn-01--gray {
	background: #9E9E9E;
}

.c-btn-01.modal-close {
	background: lightgray;
	color: black;
}

.c-btn-01::before {
	content: "";
	width: 0;
	height: 100%;
	background: linear-gradient(45deg, var(--color-main2), var(--color-main));
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	transition: all .3s ease;
}

.c-btn-01--blue {
	background: var(--color-main2);
}

.c-btn-01:hover {

	color: white;
	transform: translateY(-2px);
}

.c-btn-01:hover::before {
	width: 100%;
}



/* title */

.c-ttl__01 {
	font-size: 2.7rem;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 10px;
	line-height: 1.3;
	position: relative;
	color: #000;
	text-transform: uppercase;
	z-index: 1;
}

.c-ttl__01::after {
	content: "";
	height: 2px;
	width: 180px;
	background: currentColor;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.after-hidden::after {
	display: none;
}

.c-ttl__01--left::after {
	left: 0;
	transform: translateX(0);
}

.c-ttl__01-accent {
	color: #f6e9e4;
	font-style: italic;
	font-weight: 400;
	/* font-size: 220px; */
	font-size: 170px;
	font-family: var(--font-en);
	position: absolute;
	top: -92px;
	left: -38px;
	z-index: -1;
	background: linear-gradient(208deg, #2971b8, #2978bc, #2975bb);
	background-clip: text;
	color: transparent;
	opacity: .1;
}

.c-ttl__01-accent.sm {
	font-size: 100px;
	top: -56px;
}

.c-ttl__01--center {
	text-align: center;
}

.c-ttl__01--center .c-ttl__01-accent {
	left: 50%;
	transform: translateX(-50%);
}

.c-ttl__02 {
	margin-bottom: 10px;
}

.c-ttl__02-label {
	font-size: 14px;
	font-weight: 400;
	color: #747474;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0px;
	display: block;
}

.c-ttl__02-title {
	font-size: clamp(30px, 5vw, 48px);
	font-weight: 700;
	color: #383838;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

@media (max-width:768px) {
	.c-ttl__01 {
		font-size: 23px;
	}

	.home-about__content {
		padding: 0 5px;
	}

	.home-category__desc {
		max-width: 100%;
	}

	.js-slide__item {
		margin: 0;
	}

	.js-slide .slick-list {
		padding-bottom: 0;
	}

	.c-ttl__01-accent {
		left: 0;
	}

	.home-about .c-ttl__01 p {
		font-size: 16px;
		margin-top: 5px;
	}

	.c-ttl__01-accent.sm {
		font-size: 41px;
		top: -30px;
	}

	.c-ttl__02 {
		font-size: 2.8rem;
		margin-bottom: 15px;
	}

	.c-ttl__02-lead {
		font-size: 55px;
	}

	.modal__footer .btn {
		padding: 7px 20px;
	}
}

/* slide */
.js-slider .slick-list {
	margin: 0 -10px;
}

.js-slider__item {
	margin: 0 10px;
	height: auto;
}

.common-arrow:hover .slick-arrow {
	opacity: 1;
}

.common-arrow .slick-arrow {
	background: linear-gradient(360deg, #347bbb, #1c4594);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.common-arrow .slick-arrow svg {
	width: 20px;
	height: 20px;
	fill: white;
}

/* product */
.product-item {
	/* background-color: #f8f8f8; */
	border-radius: 5px;
	/* box-shadow: 0 4px 13px rgba(0, 0, 0, 0.08); */
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	position: relative;
}

.product-item:hover .product-item__image-figure img {
	transform: scale(1.09);
}

.product-item:hover {
	filter: drop-shadow(2px 3px 2px #555);
}

.product-item__image {
	position: relative;
	/* background: linear-gradient(135deg, #f5f1ed 0%, #ede8e3 100%); */
	/* padding: 40px 20px; */
	text-align: center;
	overflow: hidden;
}

.product-item__image-link {
	line-height: 0;
}

.product-item__badges {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	display: flex;
	justify-content: space-between;
	z-index: 10;
	line-height: 1;
}

.product-item__badge {
	padding: 2px 12px;
	border-radius: 20px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-item__badge--stock {
	background-color: #4CAF50;
	color: white;
}

.product-item__badge--sale {
	background-color: #f44336;
	color: white;
}

.product-item__image-figure {
	position: relative;
	padding-top: 100%;
	display: block;
}

.product-item__image-figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0 20px 0 20px;
	object-fit: cover;
	transition: all .5s ease-in;
}

.product-item__actions {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-item:hover .product-item__actions {
	opacity: 1;
}

.product-item__action {
	width: 40px;
	height: 40px;
	background-color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-item__action:hover {
	background-color: #2c2c2c;
	color: white;
}

.product-item__action svg {
	width: 18px;
	height: 18px;
}

.product-item__content {
	padding: 7px;
	text-align: center;
	background: #ffffffe0;
	position: absolute;
	bottom: 20px;
	width: 90%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 4px;
}

.product-item__rating {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: 15px;
}

.product-item__star {
	width: 16px;
	height: 16px;
	fill: #ffd700;
}

.product-item__star--empty {
	fill: #e0e0e0;
}

.product-item__title {
	font-size: 15px;
	font-weight: 600;
	color: #1c4594;
	line-height: 1.4;
}

.product-item__title>a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #1c4594;
	font-weight: 600;
	text-transform: uppercase;
}

.product-item__price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.product-item__price-current {
	font-size: 1.5rem;
	font-weight: 600;
	color: #BB2428;
}

.product-item__price-original {
	font-size: 1.3rem;
	color: #999;
	text-decoration: line-through;
}




/* category-item */
.category-item {}

.category-item img {
	border-radius: 5px;
}

.category-item__title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.category-item__desc {
	color: #595959;
	overflow: hidden;
	line-height: 1.3;
	font-size: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	/* number of lines to show */
	text-align: center;
	margin-top: 5px;

}

/* posts */
.news-item {
	position: relative;
	padding-left: 0px;
	margin-bottom: 20px;
}

.news-item:hover .news-item__img-child img {
	transform: scale(1.2)
}

.news-item__img {
	position: relative;
	/* margin-bottom: 10px */
}

.news-item__img-child {
	position: relative;
	overflow: hidden;
	border-radius: 6px 6px 0 0;
}

.news-item__img-child:before {
	content: "";
	padding-top: 65%;
	display: block
}

.news-item__img-child img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 3s ease 0s
}

.news-item__area {
	width: 56px;
	height: 56px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px
}

.news-item__area span {
	font-weight: 700;
	position: relative;
	padding-top: 3px
}

.news-item__area span:before {
	content: "";
	width: 30px;
	height: 1px;
	background: currentColor;
	top: 1px;
	left: 50%;
	transform: translate(-50%);
	position: absolute
}

.news-item__cate {
	position: absolute;
	left: -30px;
	top: 0;
	writing-mode: vertical-lr;
	text-align: center;
	background: #fff;
	width: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	box-shadow: 0 .15rem .35rem #00000013;
	color: #2860aa;
	text-transform: uppercase
}

.news-item__cate span {
	transform: rotate(180deg);
	display: inline-block
}

.news-item__ttl {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.news-item__ct {
	background: white;
	padding: 10px;
	box-shadow: 0 0 3px #0000001f;
	border-radius: 0 0 6px 6px;
}

.news-item__desc {
	overflow: hidden;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	color: #595959;
	font-size: 15px;
	line-height: 1.4;
	text-align: justify;
	margin-bottom: 10px;
	min-height: 63px;
	height: 63px;
}

.news-item__ttl a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	font-size: 17px;
	-webkit-box-orient: vertical;
}

.news-item__redmore .icon {
	display: inline-block;
	transform: translateY(5px);
}

.news-item__redmore .icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.news-item__redmore .icon svg path,
.news-item__redmore .icon svg line {
	stroke: currentColor;
}

/* hover */
.hover-effect_1 {
	position: relative;
	overflow: hidden;
	display: flex;
	/* border-radius: 10px; */
	margin-bottom: 10px;
}

.hover-effect_1::after {
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: hsla(0, 0%, 100%, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	content: "";
	z-index: 1
}

.hover-effect_1:hover::after {
	height: 250%;
	transition: all .6s linear;
	background-color: transparent
}

/* sec-breadcrumb */
.sec-breadcrumb {
	background: #eee;
	position: relative;
	z-index: 1;
}


.sec-breadcrumb::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
	background: -o-linear-gradient(bottom, #000000, transparent);
	background: linear-gradient(0, #000000, transparent);
	background-size: 100% 70%;
	background-position: center bottom;
	background-repeat: no-repeat;
	opacity: .5;
}

.sec-breadcrumb::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 280px;
	background: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
	background: -o-linear-gradient(top, black, transparent);
	background: linear-gradient(180deg, black, transparent);
	background-size: 100%;
	background-position: center top;
	z-index: 1;
}

.sec-breadcrumb img {
	display: block;
	width: 100%;
	height: 350px;
	object-fit: cover;
}

@media screen and (max-width: 992px) {
	.sec-breadcrumb img {
		height: 275px;
	}
}

.section__search {
	padding: 50px 0;
}

.why-choose__right .c-ttl__01 {
	color: #fff;
}

.why-choose__right .home-about__divider {
	background-color: #fff;
}

ul.pagination {
	margin-top: 20px;
}

.product-item:hover .product-item__content {
	background: #c41e3a;
	color: #fff;

}



.product-item:hover .product-item__content h3 a {
	color: #fff;
}

@media (max-width: 768px) {
	.product-item__content {
		padding: 10px;
	}

	.home-category {
		padding: 30px 0;
	}
}


/* Tour Item Block */
.tour-item {
	background: #f4fcff;
	border-radius: 16px;
	box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	margin-bottom: 6px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-item:hover {}


.tour-item__header {
	position: relative;
	height: 250px;
	background: linear-gradient(45deg, #4a90e2, #5fb3d4);
	overflow: hidden;
	display: block;
}

.tour-item__timeCode .fa-solid {
	color: #333;
}

.tour-item__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tour-item:hover .tour-item__image {
	transform: scale(1.05);
}

.tour-item__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #004ea1;
	backdrop-filter: blur(10px);
	padding: 5px 18px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	color: white;
	letter-spacing: 0.5px;
}

.tour-item__flag {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 22px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-item__content {
	padding: 24px 24px 15px;
	color: #142640;
}

.tour-item__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}

.tour-item__title>a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
}

.tour-item__description {
	line-height: 1.6;
}

.tour-item__limit {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tour-item__footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 16px;
	padding: 0 24px 25px;
}

.tour-item__wbtn {
	gap: 10px;
}

.tour-item__pricing {
	/* display: flex;
	align-items: center;
	gap: 12px; */
}

.tour-item__price {
	font-size: 16px;
	font-weight: 700;
	color: #004ea1;
	/* display: flex;
	align-items: center; */
	gap: 4px;
}

.tour-item__price-currency {
	font-size: 19px;
}

.tour-item__price-currency img,
.tour-item__price-currency svg {
	width: 25px;
	height: 25px;
}

.tour-item__price--original {
	color: #333;
	text-decoration: line-through;
	font-weight: 500;
	font-size: 16px;
}

.tour-item__button {
	background: #9e9e9e4f;
	color: black;
	border: none;
	padding: 7px 24px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 120px;
	border: 1px solid #e4ebee;
	background: transparent;
}

.tour-item__button.red {
	background: #9e9e9e30;
	color: black;
	border-color: transparent;
}

.tour-item__button:hover {
	background: linear-gradient(45deg, #015aab, #83d3f0);
	transform: translateY(-2px);
	color: white;
	box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.tour-item__button:active {
	transform: translateY(0);
}

/* tour-item2 */
.tour-item2 {
	justify-content: space-between;
}

.tour-item2__img {
	width: 75px;
	height: 66px;
	border-radius: 5px;
}

.tour-item2__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.tour-item2__ct {
	width: calc(100% - 86px);
}

.tour-item2__ttl {
	display: block;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.3;
}

.tour-item2__price {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-main2);
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: end;
}

.tour-item2__price-original {
	color: gray;
	font-size: 12px;
	text-decoration: line-through;
}

/*  */
.drawer-form {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: none;
}

.drawer-form__heading {
	position: relative;
	padding: 10px 10px 10px 55px;
	border-bottom: 1px solid #f3f3f3dd;
}

.drawer-form__close {
	position: absolute;
	left: 26px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	cursor: pointer;
}

.drawer-form__close svg {
	width: 18px;
	height: 18px;
}

.drawer-form__body {
	background: white;
	max-width: 600px;
	margin-left: auto;
}

.drawer-form__content {
	max-height: 100vh;
	overflow-y: auto;
}

.drawer-form__footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 10px;
	border-top: 1px solid lightgray;
}

.drawer-form__cancel {
	background: lightgray;
	color: black;
}

.drawer-form__mask {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: black;
	opacity: .4;
	height: 100%;
	width: 100%;
}

/* modal */
/* Modal Overlay */
/* <div class="modal-overlay" id="basicModal">
        <div class="modal">
            <div class="modal__header">
                <h2 class="modal__title"></h2>
                <p class="modal__subtitle"></p>
                <button class="modal__close">
                    <svg fill="currentColor" viewBox="0 0 16 16">
                        <path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/>
                    </svg>
                </button>
            </div>
            <div class="modal__body">
                <div class="modal__content">
                    
                </div>
            </div>
            <div class="modal__footer">
                <button class="btn btn--secondary modal-close">Close</button>
                <button class="btn btn--primary">Learn More</button>
            </div>
        </div>
    </div> */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay--active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay--active .modal {
	transform: scale(1) translateY(0);
	opacity: 1;
}

/* Modal Container */
.modal {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	transform: scale(0.7) translateY(100px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.modal__content {
	padding: 30px;
}

/* Modal Header */
.modal__header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 24px 32px;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.modal__title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	padding-right: 40px;
}

.modal__subtitle {
	font-size: 14px;
	color: #6b7280;
	margin-top: 4px;
}


.modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: rgba(107, 114, 128, 0.1);
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #6b7280;
}

.modal__close:hover {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	transform: rotate(90deg);
}

.modal__close svg {
	width: 16px;
	height: 16px;
}

.modal__body {
	/* padding: 32px; */
	max-height: 60vh;
	overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
	width: 6px;
}

.modal__body::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.modal__footer {
	background: #f9fafb;
	padding: 10px 32px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.modal__footer.js-center {
	justify-content: center;
}

.modal__footer .btn {
	padding: 10px 20px;
	font-size: 14px;
}

.modal--small {
	max-width: 400px;
}

.modal--large {
	max-width: 1000px;
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 0.3s ease;
}

.fade-out {
	animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.bounce-in {
	animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
	0% {
		transform: scale(0.3) translateY(100px);
		opacity: 0;
	}

	50% {
		transform: scale(1.05) translateY(-20px);
	}

	70% {
		transform: scale(0.9) translateY(10px);
	}

	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.modal__footer {
		padding: 15px 8px;
	}

	.modal__header {
		padding: 15px 8px;
	}

	.modal__title {
		font-size: 20px;
	}

	.modal__content {
		padding: 15px;
	}

	.modal__close {
		top: 12px;
		right: 10px;

	}
}

/* end moodal */
/* experiences-column */
.experiences-column {
	--gutter: 15px;
	gap: 30px 0;
}

.experiences-column__img {
	position: relative;
	overflow: hidden;
	line-height: 0;
}
.experiences-column__wrap.type2 .experiences-column__ct{
	max-height: inherit;
}
.experiences-column__wrap::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: .4;
	display: block;
	transition: all .3s ease-in-out;
}

.experiences-column__wrap:hover .experiences-column__ct {
	max-height: 300px;
}

.experiences-column__wrap:hover .experiences-column__img img {
	transform: scale(1.09);
}

.experiences-column__wrap:hover::after {
	opacity: .6;
}

.experiences-column__img::before {
	content: "";
	padding-top: calc((300 / 369) * 100%);
	display: block;
}

.experiences-column__img img {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	transition: all .6s ease-in-out;
}

.experiences-column__info {
	position: absolute;
	padding: 10px;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: white;
	text-align: center;
	z-index: 2;
}

.experiences-column__ttl {
	margin-bottom: 10px;
	font-size: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.experiences-column__ct {
	max-height: 0;
	overflow: hidden;
	transition: max-height 500ms;
	-webkit-transition: max-height 500ms;
}

.experiences-column__desc {
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.experiences-column__readmore {
	font-weight: 700;
}

@media screen and (max-width: 992px) {
	.experiences-column {
		gap: 10px 0;
	}
}

/* end experiences-column */

/* box faq */
.style-private {
	background: #f4f5f7;
	padding: 50px 0;
}

.style-private__heading {
	margin-bottom: 30px;
}

.style-private__heading .c-ttl__01 {
	margin-bottom: 30px;
}

.private-list {}

.private-list__item {
	background: white;
	border: 1px solid #f3f3f3;
	border-radius: 10px;
	overflow: hidden;
}

.private-list__item:not(:last-child) {
	margin-bottom: 15px;
}

.private-list__item.is-open .private-list__ttl::before {
	content: "\f068";
}

.private-list__ttl {
	position: relative;
	font-weight: 700;
	padding: 10px 40px 10px 15px;
	text-transform: uppercase;
	cursor: pointer;
	/* background: #eeeeee; */
	background: var(--color-main2);
	color: white;
}

.private-list__ttl::before {
	content: "\f067";
	font-weight: 700;
	font-family: "Font Awesome 5 Free";
	position: absolute;
	right: 8px;
	top: 12px;
	color: currentColor;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.private-list__ct {
	display: none;
	padding: 10px 15px;
}
/* box end faq */

.review-content-wrapper {
	max-width: 600px;
	line-height: 1.6;
	position: relative;
}

.review-content {
	max-height: 114px;
	/* Chiều cao ban đầu hiển thị */
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.review-content.expanded {
	max-height: 1000px;
	/* Đủ lớn để mở toàn bộ */
}

.read-more-btn {
	margin-top: 10px;
	background: #007bff;
	color: #fff;
	border: none;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 4px;
}

.read-more-btn:hover {
	background: #0056b3;
}

button.read-more-btn {
	width: unset !important;
	background: unset !important;
	height: unset !important;
	border-radius: unset !important;
	border: none !important;
	font-size: 15px;
	margin-top: 0px !important;
	padding: unset !important;
}


section.EXCELLENT .reviews-container {
	align-items: center;
}

section.EXCELLENT .rating-section {
	border-radius: 8px;
	padding: 10px;
	min-width: 200px;
	text-align: center;
}

section.EXCELLENT .excellent-text {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}

section.EXCELLENT .rating-circles {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 10px;
}

section.EXCELLENT .circle {
	width: 20px;
	height: 20px;
}

section.EXCELLENT .rating-text {
	font-size: 14px;
	color: #000;
	font-weight: 500;
	font-size: 17px;
}

section.EXCELLENT .tripadvisor-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

section.EXCELLENT .tripadvisor-icon {
	width: 30px;
	height: 30px;
	background-color: #00aa6c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

section.EXCELLENT .reviews-grid {}

section.EXCELLENT .review-card {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: relative;
	margin: 0px 8px 10px;
}

section.EXCELLENT .reviewer-header {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

section.EXCELLENT .reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}



section.EXCELLENT .reviewer-info {
	flex: 1;
}

section.EXCELLENT .reviewer-name {
	font-weight: bold;
	color: #000000;
	font-size: 15px;
	margin-bottom: 2px;
}

section.EXCELLENT .review-date {
	color: #666;
	font-size: 13px;
}

section.EXCELLENT .verified-badge {
	width: 20px;
	height: 20px;
}

section.EXCELLENT .review-rating {
	display: flex;
	gap: 3px;
	margin-bottom: 15px;
}

section.EXCELLENT .star {
	width: 16px;
	height: 16px;
}

section.EXCELLENT .review-title {
	color: #333;
	font-size: 16px;
	line-height: 1.4;
}

section.EXCELLENT .review-content {
	color: #000;
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 1.4;
	/* 👈 số dòng muốn hiển thị */
}

section.EXCELLENT .read-more {
	display: inline-block;
	font-weight: 400;
	white-space: nowrap;
	font-size: 13.5px;
	color: rgb(0, 0, 0);
	opacity: 0.5;
	transition: color 300ms ease-out;
	cursor: pointer;
	text-decoration: none !important;
}

section.EXCELLENT .read-more:hover {
	text-decoration: underline;
}




@media (max-width: 768px) {
	section.EXCELLENT .reviews-container {
		flex-direction: column;
	}

	section.EXCELLENT .reviews-grid {
		grid-template-columns: 1fr;
	}
}

section.EXCELLENT {
	background: #e1e1e14f;
	padding: 30px 0px;
}

section.EXCELLENT .tripadvisor-logo img {
	height: 31px;
	display: block;
	margin-top: 11px;
}

.reviews-grid.EXCELLENT-slider .slick-prev {
	opacity: 1;
	left: -5px;
}

.reviews-grid.EXCELLENT-slider .slick-next {
	opacity: 1;
	right: -5px;
}

.reviews-grid.EXCELLENT-slider button {
	width: 30px;
	height: 30px;
	border: 1px solid #d9d9d9;
	background: #fff;
	border-radius: 100%;
	padding: 7px;
	display: flex;
	color: #000;
}