* {
	font-family: 'HomeNest';
}

/* ============================== */
/* Start- Các quy trình dịch vụ chung */
/* ============================== */
.homenest__procedure-section {
	width: 100%;
	padding: 0 40px;
	margin-bottom: 100px;
}

.homenest__procedure-section__container {
	background: url('/wp-content/uploads/2025/06/page-header-bg.webp') center / cover;
	padding: 100px 120px;
	border-radius: 16px;
	position: relative;
}

.homenest__procedure-section__container::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('/wp-content/uploads/2025/06/page-header-bg-shape.svg') center / contain no-repeat;
}

.homenest__procedure-section__wrapper {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 50px;
}

h2.homenest__procedure-section__title {
	font-size: 43px;
	position: static;
	width: unset;
	clip-path: unset;
	line-height: 140%;
}

p.homenest__procedure-section__desc {
	color: #000;
	font-size: 18px;
	line-height: 160%;
	width: 500px;
}

.homenest__procedure-section__contain {
	display: flex;
	list-style: none;
	height: 450px;
	padding: 0;
	gap: 12px;
	width: 100%;
}

@keyframes FadeIn {
	from {
		opacity: 0;
	}to {
		opacity: 1;
	}
}

.homenest__procedure-section__item {
	height:  100%;
	flex-grow: 1;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	border-radius: 8px;

	background-size: cover;
	background-position: center;
}

li.homenest__procedure-section__item::before {
	content: "";
}

.homenest__procedure-section__item:not(.active) {
	cursor: pointer;
}

.homenest__procedure-section__item.active {
	flex-grow: 7;
}

.homenest__procedure-section__item.active .hn__heading {
	opacity: 0;
}

.homenest__procedure-section__item .hn__heading {
	background-color: #fff;
	opacity: 1;
	transition: all .3s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.hn__heading .number {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 12px;
	font: 400 36px "Anton";

	/* 	Viền chữ */
	background-image: linear-gradient(92.16deg, #020C6A 0%, #1A85F8 56.7%, #66E5FB 100%);
	-webkit-background-clip: text !important;
	-webkit-text-stroke: 2px transparent;
	color: #fff !important;
}

.hn__heading > div:not(.number) {
	writing-mode: vertical-rl;
	margin: 0;
	transform: rotate(180deg) translateX(50%);
	position: absolute;
	bottom: 16px;
	left: 50%;
	font-size: 20px;
	font-weight: 500;
	background: linear-gradient(180deg, #020C6A 0%, #1A85F8 56.7%, #66E5FB 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
}

.homenest__procedure-section__item .hn__heading-and-content {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	display: grid;
	grid-template-areas: "num head"
		"ctn ctn";
	grid-template-columns: 100px 1fr;
	grid-gap: 16px;
	opacity: 0;
	animation: FadeIn .3s linear .2s forwards;
	align-items: center;
}

.homenest__procedure-section__item .hn__heading-and-content .number {
	grid-area: num;
	font: 400 80px "Anton";
	line-height: 1.1em;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: #fff;
	color: transparent;
}

.homenest__procedure-section__item .hn__heading-and-content .heading {
	margin: 0;
	display: inline-block;
	font-size: 32px;
	font-weight: 500;
	color: #fff;
}

.homenest__procedure-section__item .hn__heading-and-content p.content {
	margin: 0;
	grid-area: ctn;
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	line-height: 1.6em;
}

.homenest__procedure-section__item:not(.active) .hn__heading-and-content {
	display: none;
}

@media only screen and (max-width: 1600px) {
	.homenest__procedure-section__container {
		padding: 100px 88px;
	}
}


@media only screen and (max-width: 1350px) {
	.homenest__procedure-section {
		padding: 0px;
	}
	.homenest__procedure-section__container {
		padding: 100px 40px;
		border-radius: 0px;
	}
}

@media only screen and (max-width: 1200px) {
	.homenest__procedure-section__container {
		padding: 100px 32px;
	}
}

@media only screen and (max-width: 1024px) {
	ul.homenest__procedure-section__contain {
		flex-direction: column;
		height: unset;
	}
	.homenest__procedure-section__item {
		height: 70px;
	}
	.homenest__procedure-section__item.active {
		height: 300px;
	}
	.hn__heading > div:not(.number) {
		position: static;
		transform: unset;
		writing-mode: unset;
	}
	.hn__heading .number {
		position: static;
	}
	.homenest__procedure-section__item .hn__heading {
		display: flex;
		align-items: center;
		gap: 20px;
		padding: 0 20px;
	}

}

@media only screen and (max-width: 768px) {
	.homenest__procedure-section__container {
		padding: 100px 20px;
	}
	h2.homenest__procedure-section__title {
		font-size: 24px;
	}
}

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

	p.homenest__procedure-section__desc {
		font-size: 14px;
	}
	.homenest__procedure-section__item .hn__heading-and-content {
		grid-template-columns: 75px 1fr;
		grid-gap: 16px;
		opacity: 0;
		animation: FadeIn .3s linear .2s forwards;
		align-items: center;
	}
	.homenest__procedure-section__item .hn__heading-and-content p.content {
		font-size: 14px;
		line-height: 1.5em;
	}
	.homenest__procedure-section__item .hn__heading-and-content .number {
		font: 400 60px "Anton";
		line-height: 1em;
	}
	.hn__heading .number {
		font: 400 28px 'Anton';
	}
	.hn__heading > div:not(.number) {
		font-size: 18px;
	}
	.homenest__procedure-section__item .hn__heading-and-content .heading {
		font-size: 24px;
	}
}

@media only screen and (max-width: 480px) {
	.homenest__procedure-section__container {
		padding: 60px 16px;
	}


}
/* ============================== */
/* End - Các quy trình dịch vụ chung */
/* ============================== */




/* ============================== */
/* Start - Các câu hỏi thường gặp */
/* ============================== */
.homenest__faq-section {
	--gradient: linear-gradient(92.16deg,#020c6a 0%,#1a85f8 56.7%,#66e5fb 100%);
	padding: 0px 160px;
	padding-top: 120px !important;
	padding-bottom: 120px !important;
}

.homenest__faq-section__title {
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
}

.homenest__faq-section__item {
	display: grid;
	grid-template-areas: "num ques btn"
		". answ .";
	grid-template-columns: 15% 1fr 150px;
	grid-column-gap: 24px;
	justify-items: flex-start;
	align-items: center;
	padding: 32px 0;
}

.homenest__faq-section__item:not(:first-of-type) {
	border-top: 1px solid #ccc;
}

p.homenest__faq-section__number {
	grid-area: num;
	font-size: 48px;
	font-weight: 700;
	background: var(--gradient);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

h3.homenest__faq-section__question {
	font-size: 20px;
	line-height: 1.5em;
}

p.homenest__faq-section__answer {
	grid-area: answ;
	font-size: 17px;
	max-height: 0px;
	overflow: hidden;
	transition: max-height .5s ease;
}

.homenest__faq-section__item.showanswer p.homenest__faq-section__answer {
	max-height: 200px;
}

p.homenest__faq-section__answer span {
	padding-top: 20px;
	display: block;
	line-height: 1.5em;
}

button.homenest__faq-section__btn {
	--size-btn: 36px;
	grid-area: btn;
	width: var(--size-btn);
	height: var(--size-btn);
	border: 0;
	position: relative;
	z-index: 0;
	border-radius: 5px;
	overflow: hidden;
	background: #f0f2f4;
	cursor: pointer;
}

button.homenest__faq-section__btn path {
	stroke: #000;
}

.homenest__faq-section__item.showanswer button.homenest__faq-section__btn path,
button.homenest__faq-section__btn:hover path {
	stroke: #FFF;
}

button.homenest__faq-section__btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--gradient);
	opacity: 0;
	transition: opacity .5s ease;
}

.homenest__faq-section__item.showanswer button.homenest__faq-section__btn::before, 
button.homenest__faq-section__btn:hover::before {
	opacity: 1;
}

button.homenest__faq-section__btn :where(.plus, .minus) {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

button.homenest__faq-section__btn .plus {
	opacity: 1;
}

.homenest__faq-section__item.showanswer button.homenest__faq-section__btn .plus {
	opacity: 0;
}

@media only screen and (max-width: 1600px) {
	.homenest__faq-section {
		padding: 0 128px;
	}
}

@media only screen and (max-width: 1350px) {
	.homenest__faq-section {
		padding: 0 40px;
	}
	h3.homenest__faq-section__question {
		font-size: 18px;
	}
	p.homenest__faq-section__answer {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1200px) {
	.homenest__faq-section {
		padding: 0 32px;
	}
}

@media only screen and (max-width: 1024px) {
	.homenest__faq-section {
		padding: 0 24px;
	}

	p.homenest__faq-section__answer {
		font-size: 15px;
	}
}

@media only screen and (max-width: 768px) {
	.homenest__faq-section {
		padding: 0 20px;
	}
	.homenest__faq-section__item {
		grid-template-columns: 60px 1fr 36px;
		grid-column-gap: 20px;
	}
	h3.homenest__faq-section__question {
		font-size: 17px;
	}
	p.homenest__faq-section__number {
		font-size: 32px;
	}
}

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

}

@media only screen and (max-width: 480px) {
	.homenest__faq-section {
		padding: 0 16px;
	}
	p.homenest__faq-section__answer {
		font-size: 14px;
	}
	p.homenest__faq-section__number {
		font-size: 28px;
	}
	.homenest__faq-section__item {
		grid-template-columns: 40px 1fr 36px;
	}
}
/* ============================== */
/* End - Các câu hỏi thường gặp */
/* ============================== */








.homenest__price-list-section {
	padding: 100px 160px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	width: 100%;
}

img.homenest__price-list-section__background {
	position: absolute;
	top: 0;
	transform: translate(-50%, 0);
	z-index: -1;
}

.homenest__price-list-section__swiper {
	margin: 0;
	width: 100% !important;
}

.homenest__price-list-section__wrapper {
	display: flex;
}

h2.homenest__price-list-section__title {
	font-size: 40px;
	line-height: 1.5em;
	text-transform: uppercase;
}

p.homenest__price-list-section__desc {
	font-size: 16px;
}

.homenest__price-list-section__container {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.homenest__price-list-section__ctn {
	padding: 0 10px;
}

.homenest__price-list-section__boxed {
	padding: 16px;
	background: #f0f2f4;
	display: inline-flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
}

p.homenest__price-list-section__desc span {
	color: var(--color);
	font-weight: 600;
}

.homenest__price-list-section__boxed .line {
	width: 100%;
	height: 1px;
	background: #fff;
}

p.homenest__price-list-section__label {
	width: 150px;
	margin-left: -26px;
	font-size: 18px;
	padding: 15px;
	text-align: center;
	background: var(--bgTenDichVu) center/cover;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
}

p.homenest__price-list-section__text-contact {
	font-size: 14px;
}

ul.homenest__price-list-section__hidelists {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s ease;
}

ul.homenest__price-list-section__hidelists.showlist {
	max-height: 1000px;
}

ul.homenest__price-list-section__lists, ul.homenest__price-list-section__hidelists {
	list-style: none;
	font-size: 15px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

ul.homenest__price-list-section__hidelists {
	margin-top: -9px;
}

.homenest__price-list-section__btn-price {
	display: flex;
}

:where(ul.homenest__price-list-section__lists, ul.homenest__price-list-section__hidelists) li {
	display: flex;
	align-items: center;
	gap: 5px;
	min-height: 30px;
}

:where(ul.homenest__price-list-section__lists, ul.homenest__price-list-section__hidelists) svg {
	stroke: var(--color);
	min-width: 18px;
	width: 18px;
}

a.homenest__price-list-section__btn {
	width: 110px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient( to right, #e64b48, #2463ff, #ff7a1a, #5bb9ff, #ff2831, #e64b48, #2463ff );
	background-size: 600% 200%;
	animation: backgroundBtnContact 5s linear infinite;
	border-radius: 4px;
}

.homenest__price-list-section__price {
	width: calc(100% - 100px);
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.homenest__price-list-section__price > *, .homenest__price-list-section__price::after {
	position: absolute;
	inset: 0;
	text-align: center;
	line-height: 45px;
	font-size: 30px;
	font-weight: 700;
	color: #000085;
}

.homenest__price-list-section__price::after {
	content: attr(data-text);
	transform: translateY(100%);
	transition: transform .5s linear;
}

.homenest__price-list-section__price > span {
	transform: rotate(0deg) scale(100%);
	transform-origin: top center;
	transition: transform .5s linear;
}

.homenest__price-list-section__btn-price:hover .homenest__price-list-section__price > span {
	transform: rotate(-180deg) scale(0%);
}

.homenest__price-list-section__btn-price:hover .homenest__price-list-section__price::after {
	transform: translateY(0%);
}

.homenest__price-list-section__swiper-pagination {
	position: static !important;
	margin-top: 36px;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.homenest__price-list-section__swiper-pagination span {
	margin: 0 !important;
	width: 50px;
	height: 3px;
	border-radius: 2px;
}

.homenest__price-list-section__swiper-pagination span.swiper-pagination-bullet-active {
	width: 100px;
	background: linear-gradient(  92.16deg,  #2f3fcf 0%,  #1a85f8 56.7%,  #66e5fb 100% );
}

@keyframes backgroundBtnContact {
	from {

		background-position: left 0% center;
	}
	to {

		background-position: left 100% center;
	}
}

@media only screen and (max-width: 1600px) {
	.homenest__price-list-section {
		padding: 100px 128px;
	}
}

@media only screen and (max-width: 1350px) {
	.homenest__price-list-section {
		padding: 100px 40px;
	}
}

@media only screen and (max-width: 1200px) {
	.homenest__price-list-section {
		padding: 100px 32px;
	}
}

@media only screen and (max-width: 1024px) {
	.homenest__price-list-section {
		padding: 100px 24px;
	}
}

@media only screen and (max-width: 768px) {
	.homenest__price-list-section {
		padding: 100px 20px;
	}
	h2.homenest__price-list-section__title {
		font-size: 24px;
	}
}

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

@media only screen and (max-width: 480px) {
	.homenest__price-list-section {
		padding: 0px 16px 64px;
	}

}

