.banner-top img {
	width: 100%;
	height: 100vh;
}

.banner-wrap {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	scroll-margin-top: 100px;
}

.banner-wrap .inner {
	display: flex;
	gap: 90px;
	padding: 60px 0;
	align-items: center;
}

.banner-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0A0B0C;
	z-index: 0;
	opacity: .8;
}

.banner-left {
	flex: 1;
	color: white;
	position: relative;
}

.banner-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
}

.banner-subtitle {
	color: #ddd4d4;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 500px;
}

.banner-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.btn-discover {
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	padding: 12px 25px;
	border-radius: 50px;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.btn-discover:hover {
	background: #FFF;
	color: #000;
}

.btn-discover::after {
	content: '\2192';
	font-size: 20px;
	transform: translateY(-2px);
}

.call-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.call-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.call-icon svg {
	width: 30px;
	height: 30px;
	color: #FFF;
}

.call-info {
	display: flex;
	flex-direction: column;
}

.call-label {
	font-size: 15px;
	color: #FFF;
}

.call-number {
	font-size: 20px;
	font-weight: bold;
	color: #f31830;
}

.clients-box {
	border: 1px solid #5b5b5d;
	border-radius: 15px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 500px;
}

.clients-avatars {
	display: flex;
	align-items: center;
}

.clients-box .avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid #1a1a2e;
	margin-left: -15px;
	background: rgba(0, 0, 0, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	position: relative;
}

.clients-box .avatar img {
	border-radius: 50%;
}

.clients-box .avatar .plus {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.clients-box .avatar:first-child {
	margin-left: 0;
}

.avatar-plus {
	background: #2d2d44;
	font-size: 20px;
}

.clients-text {
	font-size: 16px;
	font-weight: 600;
}

.banner-right {
	width: 50%;
	position: relative;
}

.form-sidebar {
	position: relative;
	background: #FFF;
	border-top: 5px solid #f31830;
}

.form-container {
	padding: 0 40px 40px;
}

.form-sidebar .text-subtitle {
	background-color: #f2f4fa;
	padding: 12px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
}

.form-sidebar .text-subtitle img {
	max-width: 200px;
}

.video-placeholder {
	font-size: 15px;
	text-align: center;
	font-weight: 700;
	max-width: 70%;
	margin: 0 auto 20px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 15px;
	margin-bottom: 15px;
}

.label-text {
	margin-bottom: 5px;
}

.label-text span {
	color: #f31830;
}

.form-input {
	border: none;
	padding: 9px 12px;
	font-size: 15px;
	outline: none;
	transition: all 0.3s;
	width: 100%;
	background: #F4F5F8;
}

.form-input.full-width {
	grid-column: 1 / -1;
}

textarea.form-input {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

.btn-submit {
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	padding: 12px 40px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-submit:hover {
	background: #000;
}

.btn-submit::after {
	content: '\2192';
	font-size: 20px;
	transform: translateY(-1px);
}

.features-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	padding: 40px 60px;
	background: white;
	max-width: 1400px;
	margin: 0 auto;
	border-radius: 0 0 20px 20px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: #ff2e2e;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	flex-shrink: 0;
}

.feature-content h3 {
	font-size: 20px;
	margin-bottom: 8px;
	color: #1a1a2e;
}

.feature-content p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* facts-section */
.facts-section {
	position: relative;
	padding: 50px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* .facts-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .64);
} */

.facts-section .section-header {
	text-align: center;
	margin-bottom: 70px;
}

.facts-section .section-label {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.facts-section .section-label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -60px;
	width: 50px;
	height: 3px;
	background: #f31830;
	transform: translateY(-50%);
}

.facts-section .section-title {
	font-size: 28px;
	text-transform: uppercase;
}

.facts-section .facts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.facts-section .fact-card {
	background: #ffffff;
	border: 8px solid #f31830;
	border-radius: 8px;
	padding: 60px 15px 25px;
	text-align: center;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-section .fact-card .content-text h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.facts-section .fact-card .content-text {
	position: relative;
	z-index: 1;
}

.facts-section .fact-card::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: #f31830;
	transform: scale(.4);
	transition: all 300ms ease;
}

.facts-section .fact-card:hover::after {
	transform: scale(1);
	opacity: 1;
}

.facts-section .fact-card:hover {
	color: #FFF;
}

.facts-section .fact-card:hover .icon-circle {
	background-color: #FFF;
}

.facts-section .icon-circle {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background: linear-gradient(to bottom, #ffffff 0%, #bc0b1e 80%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.facts-section .icon-circle img {
	width: 50px;
	height: 50px;
}

.facts-section .fact-number {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.facts-section .fact-label {
	font-size: 18px;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

/* .facts-section .fact-card:before {
    content: "";
    background: url(https://dev242.kodesolution.com/techon/wp-content/plugins/mascot-core-techon/assets/images/current-theme/icon-lines-5.png);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 138px;
    height: 139px;
	z-index: 1;
} */

/* why choose  */
/* why choose  */
.why-choose {
	background-color: #000;
	color: #FFF;
	position: relative;
	scroll-margin-top: 100px;
}

.why-choose .inner {
	display: grid;
	grid-template-columns: auto 40%;
	padding: 0 var(--container-gutter);
	margin: 0 auto;
	max-width: var(--container);
	width: 100%;
}

.why-choose__content {
	padding: 80px 40px 80px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-choose__label {
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #999;
	font-weight: 600;
}

.why-choose__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.why-choose__features {
	display: flex;
	gap: 60px;
	margin-bottom: 50px;
}

.why-choose__feature {
	display: flex;
	align-items: center;
	gap: 15px;
}

.why-choose__feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-choose__feature-icon svg {
	width: 40px;
	height: 40px;
	fill: white;
}

.why-choose__feature-text {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.why-choose__description {
	color: #b0b0b0;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 30px;
}

.why-choose__services {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.why-choose__service {
	display: flex;
	align-items: center;
	gap: 20px;
}

.why-choose__service-number {
	width: 60px;
	height: 60px;
	border: 2px solid #f31830;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
	padding: 5px;
}

.why-choose__service-name {
	font-size: 17px;
	font-weight: 600;
}

.why-choose__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40%;
}

.why-choose__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* faq  */
.faq-wrap {
	padding: 60px 0;
	position: relative;
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.faq-wrap .inner {
	display: grid;
	grid-template-columns: 40% auto;
	padding: 0 var(--container-gutter);
	margin: 0 auto;
	max-width: var(--container);
	width: 100%;
	gap: 60px;
}

.faq-wrap .left-section {
	display: flex;
	flex-direction: column;
}

.faq-wrap .faq-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-wrap .faq-item {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-wrap .faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

.faq-wrap .faq-question {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.faq-wrap .question-text {
	font-size: 16px;
	font-weight: 600;
	flex: 1;
}

.faq-wrap .toggle-icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-wrap .faq-item.active .toggle-icon {
	transform: rotate(180deg);
}

.faq-wrap .faq-item.active .faq-question {
	color: #f31830;
}

.faq-wrap .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-wrap .faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 25px 20px;
}

.faq-wrap .answer-text {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

.faq-wrap .right-section {}

.faq-wrap .image-card {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 40%;
}

.faq-wrap .image-card img {
	object-fit: cover;
}

/* review  */
.reviews {
	padding: 30px 0;
	scroll-margin-top: 100px;
}

.reviews .title-wrap {
	text-align: center;
}

.title-wrap {
	margin-bottom: 25px;
}

.title-wrap .title {
	font-size: 28px;
	text-transform: uppercase;
	position: relative;
}

.title-wrap .title::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 3px;
	background: #f31830;
	width: 100px;
}

.reviews .title-wrap .title::before {
	left: 50%;
	transform: translateX(-50%);
}

.title-wrap .subtitle {
	font-size: 16px;
	line-height: 1.6;
	max-width: 950px;
	margin: 20px auto 0;
}

.review-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin: 10px 15px 25px;
	min-height: unset !important;
}

.icon-review-card {
	margin-bottom: 10px;
}

.icon-review-card img {
	height: 30px;
	transform: rotate(179deg);
}

.review-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #555;
	font-size: 16px;
	height: 102px;
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 15px;
}

.reviewer-avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.reviewer-info h4 {
	margin-bottom: 5px;
	font-size: 18px;
}

.stars {
	color: #FFD700;
	font-size: 19px;
}

.reviewer-info .stars ul {
	display: flex;
	gap: 0px 1px;
}

.reviewer-info .stars ul li {
	list-style: none;
}

.reviewer-info .stars ul li svg {
	width: 19px;
	height: 19px;
}

.reviews-grid .slick-list {
	margin: 0 -15px;
}

/* about us  */
.about-us {
	padding: 40px 0 60px;
	scroll-margin-top: 100px;
}

.about-us .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-us .image-wrapper {
	position: relative;
}

/* .about-us .image-wrapper .decorative-lines {
	position: absolute;
	left: -30px;
	bottom: -30px;
	width: 240px;
	height: 240px;
	background-image: repeating-linear-gradient(45deg,
			#4A90E2,
			#4A90E2 2px,
			transparent 2px,
			transparent 8px);
	z-index: 2;
} */

.about-us .image-wrapper .image-frame {
	position: relative;
}

.about-us .image-wrapper .image-frame::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 15px;
	left: -15px;
	z-index: 1;
	background: linear-gradient(to bottom, #ffffff 0%, #bc0b1e 80%);
}

.about-us .image-wrapper .image-frame img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 3;
}

.about-us .content .subtitle {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	padding-left: 50px;
}

.about-us .content .subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 3px;
	background-color: #f31830;
}

.about-us .content .title {
	margin-bottom: 10px;
	font-size: 28px;
	background: linear-gradient(to bottom, #ed6170, #bc0b1e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-us .content .description {
	color: #666;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.about-us .content .features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 35px;
}

.about-us .content .features .feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-us .content .features .feature-item .icon {
	width: 60px;
	height: 60px;
	background-color: #f318301c;
	padding: 5px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-us .content .features .feature-item .icon svg {
	width: 30px;
	height: 30px;
	fill: #f31830;
}

.about-us .content .features .feature-item .text {
	font-size: 16px;
	font-weight: 600;
}

.about-us .content .checklist {
	margin-bottom: 35px;
}

.about-us .content .checklist .checklist-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.about-us .content .checklist .checklist-item .check-icon {
	width: 24px;
	height: 24px;
	background-color: #f31830;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-us .content .checklist .checklist-item .check-icon::after {
	content: '\2713';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.about-us .content .checklist .checklist-item .text {
	font-size: 16px;
	font-weight: 500;
}

.about-us .content .cta-button {
	display: inline-block;
	background: linear-gradient(to right, #ed6170 0%, #bc0b1e 100%);
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 18px 40px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.about-us .content .cta-button:hover {
	background: #000;
}

.gg-map {
	display: flex;
}

.gg-map iframe {
	width: 100%;
	height: 300px;
}












.banner-container-slider .form-box {
	position: absolute;
	bottom: 60px;
	right: 60px;
	width: 360px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.banner-container-slider .form-box h2 {
	text-align: center;
	color: #0a7c6b;
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 1.4;
}

.banner-container-slider .form-box input,
.form-box textarea {
	width: 100%;
	padding: 10px 12px;
	margin-bottom: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
}

.banner-container-slider .form-box textarea {
	resize: none;
	height: 80px;
	font-family: unset;
}

.banner-container-slider .form-box button {
	width: 100%;
	padding: 12px;
	background: #016275;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}

section.diamond {
	/* ===== Title ===== */
	/* ===== Description ===== */
	/* ===== Two columns ===== */
	/* ===== Column title ===== */
	/* ===== List ===== */
	/* ===== Responsive ===== */
	padding: 20px 0px;
}

section.diamond .wrapper {
	border: 2px solid #41807f;
	padding: 30px 25px;
	position: relative;
}

section.diamond .title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: #016275;
	margin-bottom: 15px;
}

section.diamond .description {
	text-align: center;
	color: red;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

section.diamond .content {
	display: flex;
	border: 2px solid #f7931e;
}

section.diamond .column {
	flex: 1;
	padding: 20px 25px;
}

section.diamond .column+.column {
	border-left: 2px solid #f7931e;
}

section.diamond .column h3 {
	text-align: center;
	color: #f7931e;
	font-size: 16px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

section.diamond .column ul {
	list-style: none;
}

section.diamond .column li {
	position: relative;
	padding-left: 0px;
	margin-bottom: 10px;
	font-size: 15px;
	color: #016275;
	line-height: 1.5;
	list-style: disc;
	margin-left: 20px;
}

section.diamond .column li::before {}

@media (max-width: 768px) {
	section.diamond .title {
		font-size: 20px;
	}

	section.diamond .description {
		font-size: 16px;
	}

	section.diamond .content {
		flex-direction: column;
	}

	section.diamond .column+.column {
		border-left: none;
		border-top: 2px solid #f7931e;
	}
}

section.diamond .wrapper.ctnr:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: -2px;
	width: 41px;
	height: 41px;
	background-image: url(https://evergreen-bacgiang.com/wp-content/uploads/2021/08/goc1.png);
	background-repeat: no-repeat;
}

section.diamond .wrapper.ctnr:after {
	background-image: url(https://evergreen-bacgiang.com/wp-content/uploads/2021/08/goc2.png);
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: -2px;
	right: -3px;
	width: 41px;
	height: 41px;
}

section.ovw-evergreen {
	padding: 20px 0px;
	/* LEFT */
	/* RIGHT */
	/* RESPONSIVE */
}

section.ovw-evergreen .overview {
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 30px;
	align-items: stretch;
}

section.ovw-evergreen .overview-left h2 {
	color: #016275;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	text-transform: uppercase;
}

section.ovw-evergreen .info-list {
	list-style: none;
	margin-bottom: 25px;
}

section.ovw-evergreen .info-list li {
	display: flex;
	gap: 10px;
	padding: 10px 10px;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}

section.ovw-evergreen .info-list li::before {
	content: "âœ”";
	color: #18a558;
	font-weight: bold;
}

section.ovw-evergreen .info-list strong {
	min-width: 150px;
	color: #333;
}

section.ovw-evergreen .highlight {
	color: #d35400;
	font-weight: 600;
}

section.ovw-evergreen .btn {
	display: inline-block;
	background: #016275;
	color: #fff;
	padding: 14px 30px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 20px;
	font-size: 15px;
}

section.ovw-evergreen .overview-right {
	position: relative;
	border-radius: 16px;
}

section.ovw-evergreen .overview-right img {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	border-radius: 10px;
	object-fit: contain;
}

section.ovw-evergreen .distance-box {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 120px;
	background: #0a8f7a;
	color: #fff;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
}

section.ovw-evergreen .distance-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 10px;
}

section.ovw-evergreen .distance-item:last-child {
	border-bottom: none;
}

section.ovw-evergreen .distance-item strong {
	font-size: 22px;
	display: block;
}

section.ovw-evergreen .distance-item span {
	font-size: 13px;
	opacity: 0.9;
}



section.tva-abulm-member.hinhanhtiendo.tiendo section.gallery {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tva-abulm-member .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.tva-abulm-member .gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tva-abulm-member .gallery-left {
	height: 100%;
}

.tva-abulm-member .gallery-left img {
	min-height: 100%;
}

.tva-abulm-member .gallery-right {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.tva-abulm-member .gallery-item {
	aspect-ratio: 1.3333333333;
}

section.iframe-videos {
	padding: 20px 0px;
}

section.iframe-videos iframe {
	width: 100%;
}

section.box-products1 h1 {
	font-size: 29px;
	color: #0a5f4f;
	margin-bottom: 40px;
	font-weight: 500;
	border-bottom: 2px solid #ededed;
	padding-bottom: 10px;
}

section.box-products1 .content-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

section.box-products1 .map-container {
	flex: 1;
	position: relative;
}

section.box-products1 .map-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

section.box-products1 .info-box {
	width: 33.3333333333%;
	background: linear-gradient(to right, #e8f5f3 0%, #f0f9f7 50%, #fff 100%);
	border: 3px solid #016275;
	padding: 35px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section.box-products1 .info-box h2 .highlight {
	color: #0a9b7f;
}

section.box-products1 .orange-line {
	width: 60px;
	height: 4px;
	background-color: #ff6b35;
	margin-bottom: 25px;
}

section.box-products1 .project-title {
	font-size: 15px;
	color: #0a9b7f;
	margin-bottom: 20px;
	line-height: 1.5;
}

section.box-products1 .description {
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	text-align: justify;
}

section.box-chungcu-abouts {
	background: #038f81;
	padding: 20px 0px;
}

section.box-chungcu-abouts .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

section.box-chungcu-abouts h1 {
	text-align: center;
	color: white;
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

section.box-chungcu-abouts .main-section {
	background: white;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 20px;
}

section.box-chungcu-abouts .content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

section.box-chungcu-abouts .image-section {
	position: relative;
}

section.box-chungcu-abouts .image-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

section.box-chungcu-abouts .text-section {
	padding: 5px 40px;
	display: flex;
	align-items: center;
}

section.box-chungcu-abouts .text-section p {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	text-align: justify;
}

section.box-chungcu-abouts h2 {
	text-align: center;
	color: #0d9488;
	font-size: 26px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
	letter-spacing: 0.5px;
}

section.box-chungcu-abouts .intro-text {
	text-align: center;
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 40px;
	padding: 0 20px;
}

section.box-chungcu-abouts .facilities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

section.box-chungcu-abouts .facility-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

section.box-chungcu-abouts .facility-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

section.box-chungcu-abouts .facility-card img {
	width: 100%;
	/* height: 220px; */
	object-fit: cover;
	display: block;
}

section.box-chungcu-abouts .facility-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to right, #f97316 0%, #fb923c 100%);
	color: white;
	padding: 12px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
	letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
	section.box-chungcu-abouts .facilities-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	section.box-chungcu-abouts h1 {
		font-size: 24px;
	}

	section.box-chungcu-abouts h2 {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	section.box-chungcu-abouts .content-wrapper {
		grid-template-columns: 1fr;
	}

	section.box-chungcu-abouts .text-section {
		padding: 15px 0px 0px;
		text-align: justify;
	}

	section.box-chungcu-abouts .facilities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	section.box-chungcu-abouts h1 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	section.box-chungcu-abouts h2 {
		font-size: 22px;
	}

	section.box-chungcu-abouts .facility-card img {
		/* height: 180px; */
	}

	section.box-chungcu-abouts .facility-label {
		font-size: 11px;
		padding: 10px;
	}
}

@media (max-width: 480px) {
	section.box-chungcu-abouts .container {
		padding: 20px 10px;
	}

	section.box-chungcu-abouts h1 {
		font-size: 18px;
	}

	section.box-chungcu-abouts h2 {
		font-size: 18px;
	}

	section.box-chungcu-abouts .text-section {
		padding: 25px 0px;
	}

	section.box-chungcu-abouts .text-section p,
	section.box-chungcu-abouts .intro-text {
		font-size: 14px;
	}

	section.box-chungcu-abouts .facilities-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	section.box-chungcu-abouts .facility-card img {
		/* height: 200px; */
	}
}


section.box-products1 {
	padding: 20px 0px;
}

.slider-canho {
	/* Custom Slick Arrows */
	/* Custom Slick Dots */
}

.slider-canho .slider-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.slider-canho .slider {
	height: 100vh;
}

.slider-canho .slide {
	position: relative;
	height: 100vh;
	outline: none;
}

.slider-canho .slide img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.slider-canho .content-box {
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #3eada8 0%, #2d9b96 100%);
	padding: 15px 15px;
	max-width: 395px;
	color: white;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slider-canho .content-box h2 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 20px;
	text-transform: uppercase;
	line-height: 1.4;
}

.slider-canho .content-box p {
	font-size: 15px;
	line-height: 1.8;
	text-align: justify;
	font-weight: 300;
}

.slider-canho .slick-prev,
.slider-canho .slick-next {
	width: 30px;
	height: 30px;
	z-index: 20;
	display: flex;
}

.slider-canho .slick-prev:before,
.slider-canho .slick-next:before {
	font-size: 40px;
	opacity: 1;
}

.slider-canho .slick-prev {
	left: 20px;
	opacity: 1;
}

.slider-canho .slick-next {
	right: 20px;
	opacity: 1;
}

.slider-canho .slick-prev,
.slider-canho .slick-next {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(5px);
	border-radius: 0;
}

.slider-canho .slick-prev:hover,
.slider-canho .slick-next:hover {
	background: rgba(255, 255, 255, 0.5);
}

.slider-canho .slick-dots {
	bottom: 30px;
	z-index: 20;
}

.slider-canho .slick-dots li {
	margin: 0 6px;
}

.slider-canho .slick-dots li button:before {
	font-size: 12px;
	color: white;
	opacity: 0.5;
	border: 2px solid white;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	content: '';
}

.slider-canho .slick-dots li.slick-active button:before {
	opacity: 1;
	color: white;
	transform: scale(1.2);
}

.content-member-canho {
	border: 2px solid #fff;
	padding: 20px;
}

/* Logo Section */
section.tiendo {
	/* Description */
	/* Room Gallery */
	/* Payment Section */
	/* Responsive */
}

section.tiendo .logo-section {
	text-align: center;
	margin-bottom: 30px;
}

section.tiendo .logo {
	width: 200px;
	margin: 0 auto;
}

section.tiendo .logo-text {
	color: white;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 3px;
	text-transform: uppercase;
}

section.tiendo .description {
	text-align: center;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 40px;
	padding: 0 20px;
}

section.tiendo .room-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 50px;
}

section.tiendo .room-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section.tiendo .room-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

section.tiendo .room-label {
	padding: 15px;
	text-align: center;
	color: #333;
	font-size: 16px;
	font-weight: 500;
}

section.tiendo .payment-title {
	text-align: center;
	font-size: 26px;
	color: #016275;
	text-transform: uppercase;
	margin-bottom: 30px;
	letter-spacing: 1px;
	font-weight: 600;
}

section.tiendo .payment-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	position: relative;
	padding: 20px 0px 40px;
}

.real-estate {
	background: #f2f2f2;
	border-radius: 8px;
	overflow: hidden;
	/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.real-estate__media {
	position: relative;
	margin: 8px;
	overflow: hidden;
	border-radius: 8px;
}

.real-estate__media .hover-effect::before {
	content: "";
	padding-top: 82.8451882845%;
	display: block;
}

.real-estate__media .hover-effect:hover img {
	transform: scale(1.09);
}

.real-estate__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.real-estate__badges {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.real-estate__tag {
	background: rgba(255, 255, 255, 0.9);
	padding: 1px 9px;
	border-radius: 6px;
	font-size: 13px;
	color: var(--color-1);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}

.real-estate__action {
	display: flex;
	gap: 8px;
}

.real-estate__action-btn {
	border: none;
	padding: 6px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	transition: all 0.3s ease;
}

.real-estate__action-btn.active {
	background: var(--bg-linear);
	color: white;
}

.real-estate__action-btn:hover {
	background: var(--bg-linear);
	color: white;
}

.real-estate__action-btn:hover .icon svg,
.real-estate__action-btn:hover .icon img {
	fill: #fff;
	filter: brightness(2);
}

.real-estate__action-btn .icon {
	line-height: 0;
}

.real-estate__action-btn .icon svg,
.real-estate__action-btn .icon img {
	width: 21px;
	height: 22px;
	object-fit: contain;
}

.real-estate__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 5px 0;
	padding: 5px 0 0 0;
	text-align: center;
	line-height: 1.4;
}

.real-estate__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
	color: #000;
}

.real-estate__price-row {
	padding: 3px 13px;
	background: linear-gradient(45deg, #dcdcdc, #fcfcfc);
}

.real-estate__price-row .icon-price {
	margin-right: 3px;
	line-height: 0;
	transform: translateY(2px);
	display: inline-block;
}

.real-estate__price-row .icon-price svg {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.real-estate__price {
	color: #d31201;
	font-size: 14px;
	font-weight: 500;
}

.real-estate__unit-price {
	color: var(--color-3);
	font-size: 13px;
}

section.tva-abulm-member.hinhanhtiendo.tiendo.pdf-phaply .payment-title {
	padding-top: -1px;
}

.real-estate__location {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--color-3);
	font-size: 14px;
	padding: 10px 13px;
}

.real-estate__location i {
	margin-top: 3px;
	min-width: 12px;
}

.real-estate__specs {
	display: flex;
	gap: 20px;
	padding: 0 13px 12px;
	border-top: 1px solid #f0f0f0;
}

.real-estate__spec-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
}

.list-item-pdf {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px;
}

section.tiendo .payment-column {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section.tiendo .payment-header {
	background: #3d5a6b;
	color: white;
	padding: 15px;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
}

section.tiendo .payment-table {
	width: 100%;
	border-collapse: collapse;
}

section.tiendo .payment-table thead {
	background: #3d5a6b;
	color: white;
}

section.tiendo .payment-table th {
	padding: 12px 8px;
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
}

section.tiendo .payment-table td {
	padding: 12px 8px;
	text-align: center;
	border-bottom: 1px solid #e0e0e0;
	font-size: 13px;
}

section.tiendo .payment-table tbody tr:last-child td {
	border-bottom: none;
}

section.tiendo .payment-table tbody tr:hover {
	background: #f9f9f9;
}

section.tiendo .slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(61, 90, 107, 0.8);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 10;
}

section.tiendo .slider-btn:hover {
	background: rgba(61, 90, 107, 1);
}

section.tiendo .slider-btn.prev {
	left: -20px;
}

section.tiendo .slider-btn.next {
	right: -20px;
}

section.tiendo .slider-btn svg {
	width: 24px;
	height: 24px;
}

.box-chungcu-abouts h2 {
	color: #fff !important;
}

.blog-pages {
	/* Slick customization */
	padding-top: 40px;
}

.blog-pages .slider-container {
	margin: 0 -15px;
}

.blog-pages .slide-item {
	padding: 0 15px;
}

.blog-pages .card {
	background: white;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.blog-pages .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-pages .card-image {
	position: relative;
	width: 100%;
	height: 280px;
	/* overflow: hidden; */
}

.blog-pages .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-pages .date-badge {
	position: absolute;
	top: 20px;
	left: -11px;
	background: white;
	padding: 5px 8px;
	border-radius: 0px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border: 2px solid #446084;
}

.blog-pages .date-day {
	font-size: 18px;
	font-weight: bold;
	color: #00a651;
	line-height: 1;
}

.blog-pages .date-month {
	font-size: 11px;
	color: #666;
	text-transform: uppercase;
	line-height: 1.2;
}

.blog-pages .card-content {
	padding: 5px 10px 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-pages .card-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	line-height: 1.4;
	min-height: 50px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-pages .card-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-pages .slick-dots {
	bottom: -50px;
}

.blog-pages .slick-dots li button:before {
	font-size: 12px;
	color: #00a651;
	opacity: 0.3;
}

.blog-pages .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #00a651;
}

.blog-pages .slick-prev,
.blog-pages .slick-next {
	width: 40px;
	height: 40px;
	z-index: 1;
}

.blog-pages .slick-prev {
	left: -50px;
}

.blog-pages .slick-next {
	right: -50px;
}

.blog-pages .slick-prev:before,
.blog-pages .slick-next:before {
	font-size: 40px;
	color: #00a651;
	opacity: 0.7;
}

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

.scroll-to-bullets.hide-for-medium {
	max-height: 100vh;
	/* overflow: hidden; */
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 98;
	width: 100px;
	right: -49px;
}

.scroll-to-bullets a.active {
	border-color: #446084;
	background-color: #fff;
}

.scroll-to-bullets a {
	background-color: #016275;
	border: 3px solid #fff0;
	border-radius: 30px;
	box-shadow: 1px 1px 1px rgb(0 0 0 / .3);
	display: block;
	height: 15px;
	margin: 10px 15px;
	transition: all .3s;
	width: 15px;
}







.masterplan {
	padding: 30px 0px 15px;
	background-color: #038f81;
	background-position: unset !important;
}


.masterplan__header {
	text-align: center;
	margin-bottom: 15px;
}


.masterplan__surtitle {
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 5px;
	text-align: center;
	padding: 10px 0px 3px;
}


.masterplan__title {
	color: #1a4d7a;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 1px;
}

.masterplan__tabs {
	border-bottom: 1px solid #ddd;
	/* overflow-x: auto; */
	/* white-space: nowrap; */
}

.masterplan__tabs-button {
	padding: 15px 15px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	transition: color 0.3s, background-color 0.3s;
	white-space: nowrap;
	margin-bottom: 0px;
	border: 1px solid #fff;
	border-bottom: none;
}

.masterplan__tabs-button:hover {
	background-color: #ffffff29;
}


.masterplan__tabs-button.is-active {
	background-color: #ffffff;
	font-weight: 300;
	border: 1px solid #fff;
	color: #000;
	border-bottom: none;
}

.masterplan__panel {
	display: none;

}

.masterplan__panel.is-active {
	display: block;
}


.masterplan__map-img {}

.masterplan__map-img .wrap-img {
	padding-bottom: 70.6%;
}


.masterplan__map-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}





.masterplan__products-title {
	color: #8b2f1b;
	font-size: 20px;
	font-weight: 700;
	text-decoration: underline;
	margin-bottom: 25px;
}


.masterplan__products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.map-slider .slick-track {
	display: flex;
}

section.diamond .column h2 {
	color: #016275;
	padding-bottom: 20px;
}

section.ovw-evergreen .overview strong {
	font-weight: 600;
}

section.ovw-evergreen .overview tbody tr:nth-child(2n) {
	background: #cdcdcd;
}

section.ovw-evergreen .overview tbody tr td {
	padding: 5px 10px;
	font-size: 14px;
}


table#tablepress-2 tr:nth-child(1) td {
	background: #345473;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: 200;
	color: #fff;
}

table#tablepress-2 tr:nth-child(2n) {
	background: #f9f9f9;
}

table#tablepress-2 {
	border: none;
	width: 100%;
	height: 100%;
}

table#tablepress-2 tr td {
	border: 1px solid #cdcdcd;
	border-spacing: 0px !important;
	padding: 7px 0px;
}



section.tiendo .payment-column h3 {
	padding: 11px 0px;
	text-align: center;
}

table#tablepress-3 tr:nth-child(1) td {
	background: #345473;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: 200;
	color: #fff;
}

table#tablepress-3 tr:nth-child(2n) {
	background: #f9f9f9;
}

table#tablepress-3 {
	border: none;
	width: 100%;
}

table#tablepress-3 tr td {
	border: 1px solid #cdcdcd;
	border-spacing: 0px !important;
	padding: 7px 10px;
}


.form-section h2 {
	padding-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
}

.footer-container-box .contact-info ul li a {
	color: #fff;
}

.masterplan__tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

section.box-products1 h2 {
	padding-bottom: 20px;
	font-size: 26px;
}

.scroll-to-bullets a {
	position: relative;
	display: block;
}

/* Tooltip */
.scroll-to-bullets a::after {
	content: attr(data-title);
	position: absolute;
	right: 147%;
	/* hiện bên trái bullet */
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 13px;
	padding: 6px 10px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 999;
	width: max-content;
}

/* Hover */
.scroll-to-bullets a:hover::after {
	opacity: 1;
	visibility: visible;
}

.item-news .title:hover {
	color: #016275;
}

section.news-list {
	padding-top: 20px;
}

.slider-canho button svg {
	width: 20px;
	height: 20px;
}

.slider-canho button svg path {
	fill: #fff;
}

.real-estate__title:hover a {
	color: #016275;
}

.blog-pages .card-title:hover {
	color: #016275;
}














.tva-abulm-member.pdf-phaply .real-estate {
	display: flex;
	align-items: center;
}

.tva-abulm-member.pdf-phaply .real-estate__media {
	width: 75px;
	height: 75px;
	object-fit: cover;
}

.tva-abulm-member.pdf-phaply .real-estate__media .hover-effect::before {
	padding-top: 100% !important;
	content: "";
	display: none;
}

.tva-abulm-member.pdf-phaply .real-estate__img {
	position: unset;
}

.tva-abulm-member.pdf-phaply .real-estate__body {
	flex: 1;
}

.tva-abulm-member.pdf-phaply .list-item-pdf {
	grid-template-columns: 1fr 1fr 1fr;
}

.tva-abulm-member.pdf-phaply .real-estate__badges {
	position: unset;
}

.tva-abulm-member.pdf-phaply .download-pdf {
	display: inline-flex;
	align-items: center;
	gap: 0px 0px;
	/* background: #f94851; */
	padding: 0;
	font-size: 12px;
	border-radius: 5px;
	color: #333;
	font-weight: 600;
}



.tva-abulm-member.pdf-phaply .real-estate__action-btn .icon svg {
	width: 18px;
	height: 18px;
	transform: rotate(180deg);
}

.tva-abulm-member.pdf-phaply .real-estate__action-btn {
	padding: 3px;
}

.tva-abulm-member.pdf-phaply .real-estate__title {
	text-align: left;
}

.title-separator {
	display: flex;
	justify-content: center;
	position: relative;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 10px;
}

.title-separator:before {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #016275;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 77px);
}

.title-separator .separator-center {
	display: block;
	width: 32px;
	height: 12px;
	position: relative;
}

.title-separator .separator-center:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #016275;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 8px;
}

.title-separator .separator-center:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #016275;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 8px;
}

.title-separator:after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #016275;
	position: absolute;
	top: calc(50% - 1px);
	right: calc(50% - 77px);
}

.phaplyduanct2 {
	background: #cdcdcd57 !important;
	margin-top: 20px;
	padding-bottom: 40px;
}

.phaplyduanct2 .estate-slider__item .real-estate {
	background: #fff;
}

.payment-title {
	text-align: center;
	font-size: 26px;
	color: #016275;
	text-transform: uppercase;
	margin-bottom: 30px;
	letter-spacing: 1px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.blog-pages .slick-prev {
		left: 23px;
		opacity: 1;
	}

	.blog-pages .slick-next {
		right: 20px;
		opacity: 1;
	}

	.blog-pages .card-title {
		font-size: 16px;
	}

	.blog-pages .card-description {
		font-size: 13px;
	}
}


@media (max-width: 768px) {
	section.tiendo .room-gallery {
		grid-template-columns: 1fr;
		margin-bottom: 25px;
	}

	section.tiendo .logo-text {
		font-size: 24px;
	}

	section.tiendo .payment-title {
		font-size: 20px;
		font-weight: 600;
		margin-bottom: 15px;
	}

	section.tiendo .payment-section {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-bottom: 15px;
	}

	section.tiendo .slider-btn {
		display: flex;
	}

	section.tiendo .payment-column {
		min-width: 100%;
	}
}

@media (max-width: 480px) {
	section.tiendo .container {
		padding: 10px;
	}

	section.tiendo .logo {}

	section.tiendo .logo-icon {}

	section.tiendo .description {
		font-size: 14px;
		padding: unset;
	}

	section.tiendo .payment-table th,
	section.tiendo .payment-table td {
		padding: 10px 5px;
		font-size: 11px;
	}

	section.tiendo .payment-header {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.slider-canho .content-box {
		padding: 25px 20px;
		position: unset;
		max-width: unset;
		transform: unset;
	}

	.slider-canho .content-box h2 {
		font-size: 16px;
	}

	.slider-canho .content-box p {
		font-size: 13px;
	}

	.slider-canho .slick-prev,
	.slider-canho .slick-next {
		width: 40px;
		height: 40px;
	}

	.slider-canho .slick-prev:before,
	.slider-canho .slick-next:before {
		font-size: 30px;
	}

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

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

@media (max-width: 1024px) {
	section.box-products1 h1 {}

	section.box-products1 .content-wrapper {
		flex-direction: column;
	}

	section.box-products1 .info-box {
		width: 100%;
	}

	section.box-products1 .info-box h2 {
		font-size: 2.2rem;
	}
    .scroll-to-bullets.hide-for-medium {
      right: -62px;
  }
}

@media (max-width: 768px) {
	section.box-products1 body {
		padding: 15px;
	}
    section.diamond .wrapper {
      padding: 30px 15px;
  }
    section.diamond .column {
      flex: 1;
      padding: 20px 15px;
  }

	section.box-products1 h1 {
		font-size: 22px;
		margin-bottom: 25px;
	}

	section.box-products1 .content-wrapper {
		gap: 20px;
	}

	section.box-products1 .info-box {
		padding: 25px 20px;
	}

	section.box-products1 .info-box h2 {
		font-size: 1.8rem;
	}

	section.box-products1 .project-title {
		font-size: 15px;
	}

	section.box-products1 .description {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	section.box-products1 h1 {
		font-size: 1.3rem;
	}

	section.box-products1 .info-box h2 {
		font-size: 1.5rem;
	}

	section.box-products1 .project-title {
		font-size: 15px;
	}

	section.box-products1 .description {
		font-size: 14px;
		line-height: 1.6;
	}
}

section.box-products1 .info-box h2 img {
	display: inline;
	float: left;
	margin-right: 20px;
	width: 167px;
	contain-intrinsic-size: 3000px 1500px;
}

@media (max-width: 768px) {
	.tva-abulm-member .gallery {
		grid-template-columns: 1fr;
	}

	.tva-abulm-member .gallery-right {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.tva-abulm-member .gallery-right {
		grid-template-columns: 1fr;
	}
}



@media (max-width: 992px) {
	section.ovw-evergreen .overview {
		grid-template-columns: 1fr;
	}

	section.ovw-evergreen .overview-right {
		height: 350px;
	}

	section.ovw-evergreen .distance-box {
		width: 100px;
	}
}

@media (max-width: 576px) {
	section.ovw-evergreen .overview-left h2 {
		font-size: 20px;
	}

	section.ovw-evergreen .info-list strong {
		min-width: 120px;
		font-size: 14px;
	}

	section.ovw-evergreen .info-list li {
		font-size: 14px;
	}

	section.ovw-evergreen .distance-box {
		width: 90px;
		padding: 15px 10px;
	}

	section.ovw-evergreen .distance-item strong {
		font-size: 18px;
	}
}

section.ovw-evergreen .overview-right:before {
	background: #016275;
	border-radius: 8px;
	border-width: 20px 20px 0px 0px;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 13px;
	top: -12px;
}

section.ovw-evergreen .info-list li:nth-child(2n) {
	background: #f2f2f2;
}

section.ovw-evergreen .btn:hover {
	color: #fff;
}


.tienichchung h2 {
	color: #038f81 !important;
}
.tva-abulm-member {
    padding-bottom: 5px;
}

.tva-abulm-member.tiendo {
    padding-top: 30px;
}
@media (max-width: 992px) {
	.blog-pages .date-badge {
		left: 6px;
	}

	table#tablepress-2 {
		height: auto;
	}

	section.tva-abulm-member.hinhanhtiendo.tiendo section.gallery {
		grid-template-columns: 1fr 1fr;
	}

	.banner-container-slider .form-box {
		display: none;
	}

	.banner-container-slider .slick-prev.slick-arrow {
		opacity: 1;
		left: 10px;
		background: #fff;
		height: 30px;
		width: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.banner-container-slider .slick-next.slick-arrow {
		opacity: 1;
		right: 10px;
		opacity: 1;
		background: #fff;
		height: 30px;
		width: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.banner-container-slider button svg {
		width: 20px;
		height: 20px;
	}




	main#page-home {
		overflow: hidden;
	}

	.banner-top img {
		height: unset;
	}

	.faq-wrap .inner {
		gap: 20px;
	}

	section.ovw-evergreen .btn {
		font-size: 16px;
	}

	.facts-section .facts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 30px;
	}

	.banner-wrap .inner {
		gap: 30px;
	}

	.about-us .inner {
		gap: 35px;
	}

	.about-us .image-wrapper .image-frame::before {
		top: 5px;
		left: -5px;
	}


	section.iframe-videos iframe {
		height: 300px;
	}

	section.box-products1 h2 {
		font-size: 20px;
	}

	section.box-chungcu-abouts h2 {}

	.masterplan__surtitle {
		font-size: 20px;
	}

	.masterplan {
		padding: 0px 0px 15px;
	}

	.masterplan__tabs {
		justify-content: left;
		margin-bottom: 20px;
	}

	.masterplan__tabs-button {
		border-bottom: 1px solid #ddd;
	}

	.slider-canho .slide img {
		height: 400px !important;
	}

	.slider-canho .slide {
		height: auto;
	}

	.slider-canho .slider {
		height: unset;
	}


	.list-item-pdf {
		grid-template-columns: 1fr 1fr !important;
	}

	section.tiendo .room-label {
		font-weight: 600;
	}


}

@media (max-width: 768px) {
.breadcrumb-pages .hero-section {
    padding: 70px 0 70px;
}
	.blog-pages button svg {
		width: 18px;
		height: 18px;
	}

	.blog-pages button {
		width: 20px;
		height: 20px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 5px;
		padding: unset !important;
	}


	.slider-canho .slider-container {
		height: unset;
	}

	section.slider-canho .slick-dots li button:before {
		background: unset !important;
		border: unset;
	}

	.faq-wrap .inner,
	.why-choose .inner {
		grid-template-columns: 1fr;
	}

	.faq-wrap .image-card,
	.why-choose__image {
		position: unset;
		width: 100%;
	}

	.why-choose__content {
		padding: 30px 0;
	}

	.why-choose {
		padding-bottom: 30px;
	}

	.banner-wrap .inner {
		display: block;
	}

	.banner-right {
		width: 100%;
	}

	.banner-wrap .inner {
		padding: 30px 0;
	}

	.about-us .inner {
		grid-template-columns: 1fr;
	}

	.about-us {
		padding: 30px 0;
	}

	.reviews-grid .slick-list {
		margin: 0 -10px;
	}
}

@media (max-width: 576px) {
	.title-wrap .title {
		font-size: 20px;
	}

	.list-item-pdf {
		grid-template-columns: 1fr !important;
	}

	.title-wrap .subtitle {
		font-size: 14px;
	}

	.title-wrap {
		margin-bottom: 15px;
	}

	.faq-wrap {
		padding: 30px 0;
	}

	.why-choose__title {
		font-size: 21px;
		line-height: 1.4;
		margin-bottom: 15px;
	}

	.why-choose__label {
		letter-spacing: 1px;
	}

	.why-choose__description p span {
		font-size: 14px !important;
	}

	.why-choose__services {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.why-choose__service-name {
		font-size: 16px;
	}

	.facts-section .facts-grid {
		gap: 50px 10px;
	}

	.facts-section .icon-circle {
		width: 80px;
		height: 80px;
	}

	.facts-section .fact-card {
		padding: 45px 8px 15px;
		border: 5px solid #f31830;
	}

	.facts-section .section-title {
		font-size: 21px;
	}

	.facts-section .section-label {
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.facts-section {
		padding: 30px 0;
	}

	.facts-section .section-label::before {
		display: none;
	}

	.form-sidebar .text-subtitle {
		font-size: 19px;
	}

	.form-container {
		padding: 0 15px 20px;
	}

	.btn-submit {
		padding: 10px 30px;
		font-size: 14px;
	}

	.banner-title {
		font-size: 21px;
		margin-bottom: 10px;
	}

	.banner-subtitle li span {
		font-size: 14px !important;
	}

	.btn-discover {
		padding: 8px 22px;
		font-size: 14px;
	}

	.banner-actions {
		gap: 10px;
	}

	.call-icon {
		width: 40px;
		height: 40px;
	}

	.call-icon svg {
		width: 22px;
		height: 22px;
	}

	.call-info {
		font-size: 14px;
	}

	.call-box {
		gap: 8px;
	}

	.about-us .content .title {
		font-size: 22px;
	}

	.about-us .content .cta-button {
		padding: 14px 40px;
	}
}