/* #page-home {} */

.home-about {
	display: flex;
	align-items: center;
	padding: 40px 0 0;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.home-about__row {
	gap: 20px 0;
	align-items: center;
}

.home-about .c-ttl__01 {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 0;
}

.home-about .c-ttl__01 p {
	text-transform: none;
	font-size: 20px;
	font-weight: 500;
}

.home-about__content {
	padding-right: 0;
}


.home-about__divider {
	width: 125px;
	height: 2px;
	background-color: #1A4B7B;
	margin: 10px 0 20px 0;
}

.home-about__description {
	color: #595959;
	line-height: 1.5;
	font-size: 15px;
	margin-bottom: 20px;
}

.home-about__image {
	position: relative;
	padding: 0 0 5% 5%;
	z-index: 1;

}

.home-about__image-child {
	overflow: hidden;
	line-height: 0;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease;
}

.home-about__image-child:hover {
	transform: scale(1.05);
}

.home-about__image-child img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-about__image-child:nth-child(2) {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50%;
	z-index: 2;
	box-shadow: none;
	animation: upDown 4s ease-in-out infinite;
}

.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: #1A4B7B;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 77px);
}

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

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

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

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

.home-about2__image-child.hover-effect_1 img {
	animation: upDown 4s ease-in-out infinite;
}

@keyframes upDown {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}

.home-about2 .line {
	width: 177px;
	/* margin: 0 auto; */
	position: relative;
	height: 2px;
	display: block;
	margin-top: 10px;
}

.home-about2 .line::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 35px);
	background: linear-gradient(360deg, #347bbb, #006C35) !important;
	transition: all .3s ease-in-out;
}

.home-about2 .line::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 35px);
	background-color: #a4d164;
	transition: all .3s ease-in-out;
}

.home-about2 .line::after {
	left: auto;
	right: 0;
	width: 27px;
	background: #75a93f;
}

.home-about2 .c-ttl__02>* {
	display: inline-block;
	font-size: 2.7rem;
	font-weight: 700;
	margin-bottom: 5px;
	line-height: 1.3;
	position: relative;
	color: #006C35;
	text-transform: uppercase;
}

.banner-hero .hero:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgb(26 75 123 / 62%), rgb(0 108 53 / 48%) 70%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (max-width: 768px) {
	.home-about__image {
		padding: 0;
	}

	.home-about__title {
		font-size: 2.5rem;
	}

	.home-about {
		padding: 25px 0 15px;
	}

}

/*  */
.benefits {
	border-bottom: 1px solid #a3d8fe3d;
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.benefits__item {
	padding: 40px 30px;
	position: relative;
	align-items: center;
	display: flex;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.benefits__item:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #a3d8fe3d;
}

.benefits__item:hover {
	background-color: #fafafa;
	/* transform: translateY(-2px); */
}

.benefits__icon {
	width: 54px;
	height: 54px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.benefits__ct {
	width: calc(100% - 65px);
	color: #666;
	padding-left: 10px;
	line-height: 1.6;
}

.benefits__ct p {
	padding-bottom: 5px;
	margin: 0;
}

.benefits__ct strong {
	color: #006C35;
	font-size: 18px;
	font-weight: 700;
}

.benefits__item:hover .benefits__icon {
	transform: scale(1.1);
}

.benefits__icon svg,
.benefits__icon img {
	width: 54px;
	height: 54px;
	stroke: #eb6d26;
	fill: none;
	stroke-width: 2;
}

.benefits__icon::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0em;
	width: 62px;
	height: 62px;
	z-index: -1;
	background: #b0e8f8;
	border-radius: 70% 30% 71% 29% / 25% 31% 69% 75%;
	animation: morph_rotate 4s linear infinite forwards paused;
	animation-play-state: running;
	transition: 0.4s;
}

.benefits__title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.benefits__description {
	color: #666;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.benefits__grid {
		grid-template-columns: 1fr;
	}

	.benefits__item:not(:last-child):after {
		display: none;
	}

	.benefits__item:not(:last-child) {
		border-bottom: 1px solid #e0e0e0;
	}

	.benefits__item {
		padding: 20px 15px;
	}
}

/*  */
.home-product {
	padding: 30px 0 40px;
}


.home-about2 {
	background-color: #73c5da1f;
	background-image: url("../images/h3-banner1.png");
	background-repeat: no-repeat;
	background-position: center right;
	padding: 50px 0 0 0;
}

.home-about2__description {
	margin-bottom: 20px;
	color: #595959;
	font-size: 17px;
}

.home-about2__row {
	--gutter: 30px;
	gap: 10px 0;
}

.why-choose {
	/* background: linear-gradient(45deg, #bae5ff, #6edcfd, blue); */
	color: white;
	padding: 30px 0;
	background-position: 50% 50%;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.why-choose__row {
	--gutter: 0;
}

.why-choose .c-ttl__01-accent {
	/* font-size: 100px; */
	opacity: .1;
	background: transparent;
	color: #f6e9e4;
}

.why-choose__image {
	line-height: 0;
	height: 100%;
}

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

.why-choose__right {
	/* padding: 80px 60px 50px; */
	/* background: linear-gradient(360deg, #347bbb, #006C35); */
	/* box-shadow: inset 1px 1px 6px #2b60aa6e; */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-choose__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 80px;
	margin-top: 25px;
}

.why-choose__list-item {
	align-items: start;
	background: #ccc;
	border-radius: 50%;
	text-align: center;
	background-image: linear-gradient(150deg, #eaeeef 0%, #cbd7d9 100%);
	border: 6px solid #e7e7e7d6;
	height: 235px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}


.why-choose__list-icon {
	width: 62px;
	/* position: relative; */
	/* z-index: 1; */
}

.why-choose__list-icon::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0em;
	width: 62px;
	height: 62px;
	z-index: -1;
	background: #4386fe;
	border-radius: 70% 30% 71% 29% / 25% 31% 69% 75%;
	animation: morph_rotate 4s linear infinite forwards paused;
	transition: 0.4s;
}

.why-choose__list-icon::before {
	animation-play-state: running;
}


.why-choose__list-icon img {
	width: 100%;
}

.why-choose__list-ct {
	color: #333;
	list-style: 1.5;
	font-size: 20px;
}

.why-choose__list-ct h3 {
	font-size: 16px;
	margin-bottom: 5px;
}

.why-choose__list-ct h2 {
	margin-bottom: 10px;
	font-size: 35px;
}

.why-choose__list-ct p {
	line-height: 1.3;
}

.why-choose__list-ttl {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: var(--color-main);
}

section.home-about.khuyenmai {
	padding: 30px 0px;
}

@media (max-width: 768px) {
	.why-choose__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.why-choose__right {
		padding: 5px 15px 0;
	}

	.home-product {
		padding: 30px 0 15px;
	}

	.why-choose__list-item {
		/* width: 200px;
		height: 200px;
		margin: 0 auto; */
		width: 100%;
		position: relative;
		height: auto;
	}

	.why-choose__list-item::before {
		content: "";
		padding-top: 100%;
		display: block;
		width: 100%;
	}

	.why-choose__list-ct {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		font-size: 1.6rem;

	}

	.why-choose__list-ttl {
		font-size: 2rem;
	}

	.why-choose {
		background-position: bottom center !important;
		background-repeat: no-repeat !important;
		background-size: contain !important;

	}
}

@keyframes morph_rotate {
	0% {
		border-radius: 70% 30% 71% 29%/25% 31% 69% 75%;
		transform: rotate(1turn);
	}

	50% {
		border-radius: 29% 71% 34% 66%/39% 62% 38% 61%;
	}

	100% {
		border-radius: 70% 30% 71% 29%/25% 31% 69% 75%;
		transform: rotate(0turn);
	}
}

.news-system .news-item__ct {
	text-align: center;
}

.news-system .news-item__desc {
	text-align: inherit;
}

.news-system .news-item__redmore {
	text-transform: uppercase;
}

.news-system .news-item__redmore .icon,
.news-system .news-item__area {
	display: none;
}

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

.home-review {
	background: url(../images/bg-img.jpg) no-repeat left bottom/cover;
	padding: 80px 0 50px;
	position: relative;
	z-index: 1;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: left bottom !important;
}

.home-review::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.193);
	z-index: -1;
}

.review-block {
	width: 50%;
	margin-left: auto;
}

.review-block .c-ttl__01-accent {
	background: white;
	background-clip: text;
	opacity: .9;
}

.slide-review:hover .slick-arrow {
	opacity: 1;
}

.slide-review .slick-arrow:hover svg,
.slide-review .slick-arrow:hover svg path {
	fill: var(--color-2);
}

.slide-review .slick-arrow svg {
	width: 30px;
	height: 30px;
}

.slide-review .slick-prev {
	left: -15px;
}

.slide-review .slick-next {
	right: -15px;
}

.slide-review__wrap {
	/* padding-right: 60px; */
}

.slide-review__desc {
	margin-bottom: 25px;
	/* font-size: 18px; */
	margin-top: 15px;
	color: #595959;
}

.slide-review__info-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.slide-review__info-avatar img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.slide-review__info-ct {
	width: calc(100% - 90px);
	padding-left: 10px;
}

.slide-review__info-name {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
}

.slide-review__info-postion {
	color: #595959;
	font-size: 15px;
}

.home-news {
	padding: 30px 0 40px;
}

.home-news .c-ttl__01-accent.sm {
	font-size: 80px;
}

.home-news .js-slide .slick-list {
	padding-bottom: 2px;
}

section.chungnhan {
	padding: 30px 0px;
}

section.chungnhan .images {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #cdcdcd;
	filter: drop-shadow(2px 4px 6px #cdcdcd);
}

section.chungnhan .name-book {
	text-align: center;
	padding: 10px;
	position: absolute;
	overflow: hidden;
	background: #ffffff96;
	width: 100%;
	bottom: 0;
}

section.chungnhan .images img {
	width: 100%;
	object-fit: cover;
}

section.chungnhan .item-book-one:hover img {}

section.home-promotional {
	padding-bottom: 40px;
}

section.home-about.khuyenmai .home-about__image {
	padding: 0 0 0% 2%;
}

.line::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 35px);
	background: linear-gradient(360deg, #347bbb, #006C35) !important;
	transition: all .3s ease-in-out;
}

.line {
	width: 177px;
	position: relative;
	height: 2px;
	display: block;
	margin-top: 10px;
}

.line::after {
	left: auto;
	right: 0;
	width: 27px;
	background: #75a93f;
}

.line::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 35px);
	background-color: #a4d164;
	transition: all .3s ease-in-out;
}

.camnhan {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
}

.item-book-one {
	padding-top: 10px;
}

section.chungnhan .images img {
	display: block;
}

.camnhan .line::after {
	right: 2px;
	left: unset;
	width: 27px;
}

section.chungnhan .images {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	background: #fff;
	padding: 10px;
	border: 3px solid #006C35;
	filter: drop-shadow(2px 4px 2px #cdcdcd);
}

section.chungnhan .images img {
	display: block;
	border-radius: 5px;
}

.home-category__desc {
	max-width: 75%;
	margin: auto;
	font-size: 15px;
	color: #595959;
}

.value {
	background: #005caa;
	/* padding: 27px 0; */
	position: relative;
}

.value:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #006C35f0;
	z-index: 9;
}

.value-box {
	position: relative;
	display: flex;
	text-align: left;
	align-items: center;
	width: 80%;
	justify-content: center;
	margin: 0 auto;
	padding: 40px 0;
	z-index: 999;
}

.value .desc p {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	/* -webkit-line-clamp: 2; */
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
}

.phone_in {
	background: var(--color-main);
	color: #fff;
	text-transform: uppercase;
	padding: 5px 20px;
	font-weight: 600;
	border-radius: 25px;
	display: inline-block;
	width: auto;
	margin: 15px auto;
	text-align: center;
}

.phone_in:hover {
	color: white;
	background: var(--color-main2);
}

.why_choose__list_in {
	margin: 30px 0;
}

.why_choose__list_in li {
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}

.why_choose__list {
	color: #fff;
}

.why_choose__list-ct h3 {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 22px;
	color: #006C35;
}

.why_choose__list-ct .desc {
	font-size: 16px;
	font-weight: 300;
}

.why_choose__list-ct .desc p {
	font-weight: 400;
	color: #333;
}

.desc_news_content {
	margin-top: 30px;
	color: #333;
	font-size: 17px;
}

.desc_news_content ul:not(:last-child) {
	margin-bottom: 10px;
}

.desc_news_content:not(:last-child) {
	margin-bottom: 30px;
}

.desc_news_content ul li {
	list-style: disc !important;
	margin-left: 18px;
}

.banner-hero .hero {
	position: relative;
	background: linear-gradient(135deg, rgb(26 75 123 / 62%), rgb(0 108 53 / 48%) 70%), url(https://bizweb.dktcdn.net/100/283/734/themes/623629/assets/slider2_loading.jpg?1759908287340) center / cover no-repeat;
	padding: 28vh 0px;
}

.banner-hero .hero .wrap {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
	padding: 78px 0;
	position: relative;
	z-index: 999;
}

.banner-hero .chip {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef2f7;
	font-size: 12px;
	margin-bottom: 10px;
	font-weight: 600;
}

.banner-hero .hero h1 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 44px;
	line-height: 1.1;
}

.banner-hero .hero p {
	color: #eef3ff;
	font-size: 18px;
	margin: 0 0 18px;
}

.banner-hero .btn.primary {
	background: #D4AF37;
}

.banner-hero .btn {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
	font-size: 13px;
}




.section-duan {
	padding: 40px 0px 60px 0;
}

.section-duan h2.section-title {
	font-size: 28px;
	color: #1A4B7B;
	text-transform: uppercase;
	text-align: left;
}

.section-duan .grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.section-duan .card {
	position: relative;
	text-align: center;
}

.section-duan .feat .tag {
	font-size: 12px;
	color: #fff;
	background: #1a4b7b;
	padding: 4px 8px;
	border-radius: 999px;
}

.section-duan .feat h3 {
	margin: 8px 0 6px;
	font-size: 20px;
}

.section-duan .section-sub {
	font-size: 16px;
	color: #1A4B7B;
	font-weight: 600;
	margin-bottom: 5px;
	text-transform: none;
	display: grid;
	grid-template-columns: 20px auto;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.section-duan .feat .des {
	font-size: 14px;
}

.section-duan article.card.feat img {
	border-radius: 10px;
}

.section-duan .tag-section-duan {
	position: absolute;
	top: 25px;
	left: 33px;
}

.section-duan .title-duan {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	gap: 20px;
}

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

.form-cta h2.section-title {
	font-size: 28px;
	color: #1A4B7B;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.form-cta .section-sub {
	color: #6b7280;
	margin: 0 0 22px;
}

.form-cta form.card.form-grid-left h3 {
	padding-left: 10px;
	border-left: 2px solid #cdcdcd;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.form-cta .form-box-card-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	flex-wrap: wrap;
}

.form-cta .card {
	background: #fff;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	padding: 24px;
	display: grid;
	gap: 12px;
	border-left: 4px solid #1A4B7B;
}

.form-cta form.card.form-grid-left input {
	padding: 12px;
	border-radius: 5px;
	border: 1px solid #dde6f3;
}

.form-cta form.card.form-grid-left textarea {
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #dde6f3;
	font-family: unset;
}

.form-cta .btn.primary {
	background: #D4AF37;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 600;
	padding: 12px;
}

.form-cta .box-form-cta-title {
	text-align: center;
	margin-bottom: 40px;
}

.form-cta .form-grid-right h3 {
	margin: 0 0 6px;
	color: #1a4b7b;
}

.form-cta .form-grid-right p {
	color: #6b7280;
	margin: 0 0 12px;
}

.form-cta .box-whatapp .btn {
	background: #006C35;
	color: #fff;
	border: 2px solid #006C35;
}

.form-cta .btn {
	display: inline-block;
	padding: 8px 25px;
	border-radius: 999px;
	background: #D4AF37;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	font-size: 13px;
}

.form-cta .btn.ghost {
	background: transparent;
	border: 2px solid #D4AF37;
	color: #000;
}








@media (max-width: 1023px) {
	.review-block {
		width: 100%;
	}

	.js-slide {
		padding: 0 10px;
	}

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

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

	.home-review {
		padding: 60px 0 25px;
	}

	.home-news .c-ttl__01-accent.sm {
		font-size: 35px;
	}

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


.kodelisting-form-field {
	display: flex;
	align-items: center;
	gap: 0px 14px;
	margin-bottom: 20px;
}

.field-input-wrap.checkin-date select {
	height: 48px;
	font-size: 14px;
	background: none;
	border-color: rgb(26 75 123 / 23%);
	border-style: solid;
	border-width: 1px;
	border-radius: 0;
	color: #666666;
	width: 100%;
	padding: 0px 12px;
}

section.Check_Availability .hedding-item-right-Check_Availability p {
	position: relative;
	display: inline-block;
	z-index: 1;
	color: #d2d2d2;
	font-size: 18px;
	line-height: 1.4;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	padding-bottom: 0;
}

section.Check_Availability .hedding-item-right-Check_Availability p:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 100%;
	margin-left: 5px;
	width: 37px;
	height: 10px;
	background-image: url(../images/before.png);
}

section.Check_Availability .hedding-item-right-Check_Availability h2 {
	color: #fff;
	font-size: 50px;
	font-weight: 200;
	margin-bottom: 15px;
}


section.Check_Availability .hotline-item-right-Check_Availability {
	display: flex;
	align-items: center;
	gap: 0px 20px;
	color: #FFF;
}

section.Check_Availability .hotline-item-right-Check_Availability .icon-text span {
	color: #FFF;
}

section.Check_Availability .content p {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

section.Check_Availability h5.icon-box-title {
	font-size: 24px;
	color: #fff;
}


section.Check_Availability .ctnr {
	position: relative;
}

section.blog-news {
	padding: 40px 0px;
	background: url(../images/bg-shape-1.png);
	background-position: bottom left;
	background-repeat: no-repeat;
}

.list-item-blog-news .splide__track {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}


.splide__track {
	position: relative;
	display: block;
	/* margin-left: 3rem; */
	/* width: 30%; */
	margin-top: 30px;
}

section.Check_Availability .item-left-Check_Availability {
	width: 60%;
	background: #fff;
	padding: 35px 15px 10px;
	border-radius: 15px;
	position: relative;
}

section.Check_Availability .item-left-Check_Availability::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 97.5%;
	height: 100%;
	border-radius: inherit;
	background: #1a4b7bd1;
	z-index: -1;
	margin: 0 8px;
}

section.Check_Availability .item-left-Check_Availability::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	width: 94%;
	height: 100%;
	border-radius: inherit;
	background: #1a4b7bb3;
	z-index: -2;
	margin: 0 20px;
}

section.Check_Availability .box-form-Check_Availability p {
	position: relative;
	z-index: 1;
	color: #666666;
	font-size: 16px;
	line-height: 1.4;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	padding-bottom: 0;
	text-align: center;
}

section.Check_Availability .box-form-Check_Availability h2 {
	font-size: 28px;
	color: #1A4B7B;
	margin-bottom: 20px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

section.Check_Availability .field-input-wrap.checkin-date input,
section.Check_Availability .field-input-wrap textarea {
	height: 45px;
	font-size: 14px;
	background: none;
	border-color: rgb(26 75 123 / 23%);
	border-style: solid;
	border-width: 1px;
	border-radius: 0;
	color: #666666;
	width: 100%;
	padding: 10px 12px;
	font-family: var(--font-heading-family);
}

section.Check_Availability .field-input-wrap textarea {
	height: unset;
}

section.Check_Availability .field-wrap {
	width: 100%;
}

section.Check_Availability .kodelisting-form-label {
	margin-bottom: 5px;
}

section.Check_Availability .btn-theme-colored1 {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
}

section.Check_Availability .container-Check_Availability {
	display: flex;
	height: 100%;
	align-items: center;
	padding: 30px 0px 50px;
	position: relative;
	z-index: 2;
}

section.Check_Availability .item-right-Check_Availability {
	height: 100%;
	padding: 0px 50px;
	width: 40%;
	display: flex;
	align-items: center;
	padding-right: 0px;
}

section.Check_Availability {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: relative;
	width: 98%;
	margin: 0 auto;
	border-radius: 25px;
	overflow: hidden;
}

section.Check_Availability .hedding-item-right-Check_Availability p {
	position: relative;
	display: inline-block;
	z-index: 1;
	color: #fff;
	font-size: 17px;
	line-height: 1.4;
	text-transform: none;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	padding-bottom: 0;
}

section.Check_Availability .hedding-item-right-Check_Availability p:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 100%;
	margin-left: 5px;
	width: 37px;
	height: 10px;
	background-image: url(../images/before.png);
}

section.Check_Availability .hedding-item-right-Check_Availability h2 {
	color: #fff;
	font-size: 37px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
}

section.Check_Availability .content-item-right-Check_Availability {
	color: #Fff;
}

section.Check_Availability .content-item-right-Check_Availability p {
	padding-bottom: 20px;
}

section.Check_Availability .hotline-item-right-Check_Availability {
	display: flex;
	align-items: center;
	gap: 0px 20px;
	color: #FFF;
}

section.Check_Availability .hotline-item-right-Check_Availability .icon-text span {
	color: #FFF;
}

section.Check_Availability .content p {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

section.Check_Availability h5.icon-box-title {
	font-size: 24px;
	color: #fff;
}

section.Check_Availability .ctnr {
	position: relative;
}

section.Check_Availability:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(26 75 123 / 85%);
	/* background: #1a4b7b; */
	z-index: 1;
}

section.Check_Availability .btn-theme-colored1 {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	border-radius: 5px;
}

.btn-theme-colored1 {
	color: #fff;
	background: #D62828;
	min-height: 56px;
	padding: 0 15px;
	text-align: center;
	width: 267px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
}

section.Check_Availability .hotline-item-right-Check_Availability {
	display: flex;
	align-items: center;
	gap: 0px 20px;
	color: #FFF;
	line-height: 1.3;
	margin-top: 20px;
	justify-content: end;
}

.img-google img {
	height: 46px;
}

.img-google {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	justify-content: right;
}

.img-google .left {
	padding-right: 25px;
	display: flex;
	gap: 10px;
	border-right: 1px solid #1A4B7B;
}

.img-google .right {
	margin-left: 25px;
}

.icon-item-right-Check_Availability img {
	height: 50px;
}

section.home-service {
	padding: 40px 0px;
}

.service-column__wrap .des {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 10px;
	text-align: justify;
	font-size: 14px;
}

.service-column__wrap {
	border: 1px solid #1A4B7B;
	border-radius: 8px;
	display: block;
	padding: 10px;
	height: 100%;
	color: #333;
}

.service-column__ttl {
	font-size: 17px;
	text-align: center;
	font-weight: 700;
	display: -webkit-box;
	text-transform: uppercase;
	-webkit-line-clamp: 2;
	color: #1A4B7B;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 39px;
	transition: .3s;
}

.service-column__wrap .see-detail {
	background-color: #1A4B7B;
	color: #FFF;
	padding: 5px 15px;
	border-radius: 30px;
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	transition: .3s;
}



.about-savina .clean-wrapper {
	display: flex;
	gap: 20px;
	padding: 50px 15px 40px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-savina .clean-left {
	position: relative;
	width: 50%;
}

.about-savina .year-box h2 {
	font-size: 60px;
	font-weight: 700;
	color: #D62828;
}

.about-savina .year-box {
	padding-left: 30px;
	text-align: left;
}

.about-savina .year-box p {
	color: #707070;
}

.about-savina .img-group {
	margin-top: 30px;
	position: relative;
}

.about-savina .img-group img {
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 14px 29px rgba(19, 19, 19, .13);
	border: 6px solid #fff;
}

.about-savina .img1 {
	max-width: 390px;
}

.about-savina .img2 {
	max-width: 280px;
	position: absolute;
	right: 0;
	top: 40px;
	transform: translateY(-50%);
}

.about-savina .call-box {
	display: flex;
	gap: 20px;
	position: absolute;
	bottom: 35%;
	transform: translateY(50%);
	color: #fff;
	line-height: 1.5;
	right: 20px;
	background: #D62828;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	align-items: center;
	transition: 1s;
}

.about-savina .call-box:hover {
	bottom: 34%;
}

.about-savina .call-box span {
	font-size: 15px;
	color: #fff;
}

.about-savina .call-box h4 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}


.about-savina .clean-right {
	width: 46%;
	font-size: 16px;
}

.home-icon {
	width: 20px;
	height: 20px;
}

.about-savina .tag {
	font-size: 25px;
	color: #1A4B7B;
	font-weight: 700;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: right;
}

.about-savina .tag span {
	margin-right: 6px;
}

.about-savina .clean-right h2 {
	font-size: 38px;
	font-weight: 700;
	color: #1A4B7B;
	line-height: 1.2;
	margin-bottom: 10px;
}

.about-savina .desc {
	color: #555;
	/* margin-bottom: 30px; */
	font-size: 15px;
	padding-top: 5px;
	line-height: 1.6;
}

.about-savina .features {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-top: 20px;
}

.about-savina .item {
	display: flex;
	gap: 15px;
}

.about-savina .item:hover img {
	animation: toRightFromLeft .3s forwards;
}

@keyframes toRightFromLeft {
	49% {
		transform: translate(100%);
	}

	50% {
		opacity: 0;
		transform: translate(-100%);
	}

	51% {
		opacity: 1;
	}
}

.about-savina .ic {
	min-width: 90px;
	padding: 15px;
	width: 90px;
	height: 90px;
	border-radius: 6px;
	background-color: #1a4b7b14;
	font-size: 24px;
	color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-savina .item h3 {
	font-size: 25px;
	color: #1A4B7B;
	font-weight: 700;
	margin-bottom: 5px;
}

.about-savina .item p {
	font-size: 16px;
	color: #333;
	line-height: 1.3;
}

@media (max-width: 900px) {
	.about-savina .img2 {
		display: none;
	}
}

@media (max-width: 768px) {

	.about-savina .clean-left,
	.about-savina .clean-right {
		width: 100%;
	}

	.about-savina .img2 {
		display: block;
	}

	.about-savina .call-box {
		left: 50%;
		transform: translateX(-50%);
	}

}


.about-savina .img1 img {
	border: none;
}

.about-savina .tag span img {
	height: 18px;
}

.SERVICES .header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 15px;
	color: #1A4B7B;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.SERVICES .header-icon {
	width: 30px;
	height: 30px;
	background-color: #1A4B7B;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 17px;
}

.SERVICES .service-card {
	padding: 40px 30px;
	position: relative;
	transition: all 0.4s ease;
	border-top: 1px solid #cdcdcd;
}

.SERVICES .service-card:nth-child(2) {}

.SERVICES .service-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.SERVICES .service-left {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1;
	margin-right: 20px;
}

.SERVICES .service-icon {
	width: 90px;
	height: 90px;
	padding: 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.SERVICES .service-card .service-icon {
	background-color: white;
	border: 1px solid #1A4B7B;
}

.SERVICES .icon-svg {
	width: 60px;
	height: 60px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.SERVICES .service-card .icon-svg {
	stroke: #1A4B7B;
}

.SERVICES .service-text h2 {
	font-size: 28px;
	color: #1A4B7B;
	margin-bottom: 6px;
	font-weight: 700;
}

.SERVICES .service-text p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	max-width: 583px;
}

.SERVICES .service-card .discover-btn {
	background-color: white;
	color: #1a4b7b;
}

.SERVICES .service-card:hover .discover-btn {
	background-color: #D62828;
	color: #FFF;
}

.SERVICES .arrow {
	display: flex;
}

.SERVICES .arrow svg {
	width: 16px;
	height: 16px;
	transform: rotate(-34deg);
}

.SERVICES .service-image {
	position: absolute;
	max-width: 250px;
	z-index: 1;
	left: 0;
	display: flex;
	align-items: center;
}

.SERVICES .service-image img {
	border-radius: 20px;
	opacity: 0;
	transition: 0.4s ease;
	transform: scale(0.8);
}

.SERVICES .service-card:hover .service-image img {
	transform: scale(1);
	opacity: 1;
}

@media (max-width: 992px) {
	.SERVICES .service-left {
		flex-direction: column;
		align-items: start;
		width: 100%;
	}

	.SERVICES .service-icon {
		width: 100px;
		height: 100px;
	}

	.SERVICES .icon-svg {
		width: 50px;
		height: 50px;
	}

	.SERVICES .service-image {
		width: 250px;
		height: 270px;
		right: 30px;
	}
}

@media (max-width: 768px) {
	.SERVICES .service-card {
		padding: 15px;
	}

	.SERVICES .service-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.SERVICES .service-image {
		position: relative;
		right: 0;
		top: 0;
		transform: none;
		width: 100%;
		max-width: 400px;
		height: unset;
		margin: 20px auto 0;
		opacity: 1;
	}

	.SERVICES .service-text h2 {
		font-size: 28px;
		text-align: center;
	}

	.SERVICES .service-text p {
		font-size: 15px;
		text-align: center;
	}

	.SERVICES .discover-btn {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.SERVICES .service-icon {
		width: 80px;
		height: 80px;
	}

	.SERVICES .icon-svg {
		width: 40px;
		height: 40px;
	}
}


.SERVICES {
	background: #1a4b7b12;
	width: 98%;
	margin: 0 auto;
	border-radius: 25px;
	padding: 30px 0px;
}

/* .SERVICES .ctnr {
	max-width: 1400px;
} */

.SERVICES .member-right {
	display: flex;
	align-items: center;
	gap: 0px 57px;
	width: 40%;
	position: relative;
	justify-content: right;
}

.SERVICES .service-card:hover {
	background: #1a4b7b26;
	border-radius: 25px;
}

.SERVICES .service-card:hover .service-icon {
	background: #1A4B7B;
}

.SERVICES .service-card:hover .service-icon img {
	filter: brightness(0) invert(1);
}

.SERVICES .service-card:hover .service-icon svg {
	fill: #fff;
}

.slideshow-img img {
	height: 707px;
}

.slideshow .slick-dots li {
	width: 60px;
	height: 5px;
	background: #fff;
	opacity: .2;
	border: 0;
	border-radius: 0;
}

.slideshow .slick-dots li.slick-active {
	background: #D62828;
	opacity: 1;
}

.slideshow .slick-dots {
	bottom: 10px;
}

.slideshow .slick-arrow {
	background: #FFF;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

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

.slideshow .slick-arrow svg {
	width: 16px;
	height: 16px;
}

.box-wordwrap-iner-text {
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.slideshow-content .slideshow-text {
	color: white;
	font-size: 45px;
	padding-bottom: 10px;
	text-transform: uppercase;
	font-weight: 700;
}

h4.slideshow-text {}

.slideshow-text {
	font-size: 15px;
	font-weight: 500;
}

h2.slideshow-title {
	transition: all 800ms ease;
}

.slideshow-title {
	font-size: 45px;
	max-width: 100%;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	margin: 5px 0px 15px 0px;
	text-transform: capitalize;
}

.desp-content-banner {
	width: 100%;
	padding: 0px 0px;
}

.desp-content-banner {
	-webkit-transition: all 800ms ease;
	transition: all 800ms ease;
}

.desp-content-banner p {
	color: #fff;
	display: inline-block;
	text-align: center;
}

.box-wordwrap-iner-text .box-flex-call-us {
	margin-top: 30px;
	justify-content: center;
}

.box-flex-call-us {
	display: flex;
	align-items: center;
}

.box-wordwrap-iner-text .box-flex-call-us a.read-more {
	width: fit-content;
	border: 1px solid #289042;
	background-color: #289042;
	text-transform: uppercase;
	font-size: 14px;
	padding: 9px 23px 9px 23px;
	gap: 0px 10px;
	border-radius: 50px;
}

.slideshow-content .box-flex-call-us a.read-more {
	border: 1px solid #fff !important;
	color: #fff;
	background: no-repeat;
}

.box-flex-call-us a.read-more {
	background: transparent;
	border: 1px solid #fff;
	padding: 9px 30px;
	color: #fff;
	font-weight: 500;
}

.read-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	color: #010f34;
}

.read-more {
	width: fit-content;
	background-color: white;
	padding: 6px 20px;
	border-radius: 5px;
	font-size: 16px;
	color: black;
	font-weight: 600;
}

.box-flex-call-us a svg {
	width: 20px;
	height: 15px;
	stroke: #fff;
}

.read-more svg path {
	margin-left: 10px;
	stroke: #fff;
}

.slider-phnoe {
	display: flex;
	align-items: center;
	font-weight: bold;
}

.slider-phnoe {
	padding-left: 40px;
}

.slideshow-content .slider-phnoe .icon {
	background: rgb(255, 255, 255);
	color: #289042;
}

.slider-phnoe .icon {
	width: 50px;
	height: 50px;
	background-color: rgb(233, 127, 32);
	text-align: center;
	line-height: 50px;
	color: #fff;
	border-radius: 50px;
	-webkit-animation: playSlowAnimation2 1800ms linear infinite;
	animation: playSlowAnimation2 1800ms linear infinite;
	margin-right: 10px;
}

.slider-phnoe h4 {
	font-size: 16px;
	color: #fff;
	margin-top: 2px;
	font-weight: 400;
	margin-bottom: 0;
}

.slider-phnoe .text h3 {
	margin: 0px;
	color: rgb(233, 127, 32);
	font-weight: 600;
}

.slideshow-content .ctnr {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.slider-phnoe .text h3 a {
	color: #fff;
}

.newBlog .header {
	text-align: center;
	margin-bottom: 30px;
}

.newBlog .header-icon {
	display: grid;
	grid-template-columns: 20px auto;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #1A4B7B;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.newBlog .header h1 {
	font-size: 33px;
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.2;
}

.newBlog .blog-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	margin-bottom: 20px;
}

.newBlog .blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.newBlog .blog-card-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.newBlog .blog-card-content {
	padding: 20px 25px;
}

.newBlog .blog-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #666;
	justify-content: end;
}

.newBlog .blog-date::before {
	content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â';
	margin-right: 5px;
}

.newBlog .blog-category {
	background-color: #1a4b7b14;
	color: #1A4B7B;
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: 600;
}

.grid-3-slider .slick-slide {
	margin: 0 12px;
}

.grid-3-slider .slick-list {
	margin: 0 -12px;
}

.newBlog .blog-title {
	font-size: 17px;
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.newBlog .blog-title:hover {
	color: #D62828;
}

.newBlog .slider-section {
	position: relative;
}

.newBlog .blog-slider .slick-slide {
	padding: 0 7px;
}

.newBlog .blog-slider .slick-list {
	/* margin: 0 -15px; */
}

.newBlog .featured-card {
	position: relative;
}

.newBlog .featured-card .blog-card-image {
	display: block;
	height: 473px;
}

.newBlog .featured-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
	color: white;
}

.newBlog .featured-date {
	background: white;
	color: #1a1a1a;
	width: max-content;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	padding: 15px 10px;
	margin: 0 0 20px auto;
}

.newBlog .featured-date-num {
	font-size: 24px;
	line-height: 1;
}

.newBlog .featured-date-month {
	font-size: 14px;
	text-transform: uppercase;
}

.newBlog .featured-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.newBlog .featured-desc {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.95;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.newBlog .slick-prev,
.newBlog .slick-next {
	width: 45px;
	height: 45px;
	z-index: 10;
}

.newBlog .slick-prev {
	left: -55px;
}

.newBlog .slick-next {
	right: -55px;
}

.newBlog .slick-prev:before,
.newBlog .slick-next:before {
	font-size: 35px;
	opacity: 0.8;
	color: #2d8659;
}

.newBlog .slick-dots {
	bottom: -45px;
}

.newBlog .slick-dots li button:before {
	font-size: 12px;
	color: #2d8659;
	opacity: 0.4;
}

.newBlog .slick-dots li.slick-active button:before {
	color: #2d8659;
	opacity: 1;
}

.about-savina .item h4 {
	font-size: 21px;
	margin-bottom: 10px;
}

.newBlog .header h2 {
	font-size: 28px;
	color: #1A4B7B;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.slider-phnoe .icon svg {
	height: 25px;
	width: 25px;
}

.slideshow-content .slider-phnoe .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.slideshow-content .slider-phnoe .icon i {
	display: flex;
	align-items: center;
}

.hedding-item-right-Check_Availability h3 {
	color: #fff;
}

.hedding-item-right-Check_Availability ul li {
	color: #fff;
	margin-bottom: 10px;
	list-style: disc;
	margin-left: 20px;
}

.newBlog .featured-title {
	color: #fff;
}


@media (max-width: 1200px) {
	.newBlog .blog-grid {
		grid-template-columns: 1fr;
	}

	.newBlog .featured-card {
		min-height: 500px;
	}

	.newBlog .featured-card .blog-card-image {
		min-height: 500px;
	}

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

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

	.SERVICES .service-image img {
		opacity: 1;
	}
}

@media(max-width:990px) {
	section.Check_Availability .item-left-Check_Availability {
		width: 46%;
	}

	section.Check_Availability .item-right-Check_Availability {
		padding-left: 30px;
	}

	.SERVICES .member-right {
		width: 53%;
	}

	.about-savina .call-box {
		display: none;
	}

	.SERVICES .service-content {
		gap: 0px 20px;
	}

	.SERVICES .service-content {
		gap: 0px 20px;
	}
}

@media (max-width: 768px) {
	.box-wordwrap-iner-text {
		width: 100%;
	}

	.box-wordwrap-iner-text .box-flex-call-us {
		flex-direction: column;
		align-items: start;
		gap: 20px;
		contain-intrinsic-block-size: auto 100px;
		align-items: center;
	}

	.slider-phnoe {
		padding-left: 0px;
	}

	.about-savina .clean-right h2 {
		font-size: 28px;
	}

	.SERVICES .service-left {
		align-items: center;
		gap: 15px;
		margin-right: 0;
	}

	section.Check_Availability .container-Check_Availability {
		flex-direction: column;
	}

	section.Check_Availability .item-left-Check_Availability {
		width: 100%;
	}



	section.Check_Availability .item-right-Check_Availability {
		width: 100%;
	}


	.SERVICES .member-right {
		width: 100%;
		flex-direction: column;
		gap: 15px 0px;
	}

	.about-savina .call-box {
		display: none;
	}

	.newBlog .header h1 {
		font-size: 32px;
	}

	.newBlog .featured-card {
		min-height: 450px;
	}

	.newBlog .featured-card .blog-card-image {
		min-height: 450px;
	}

	.newBlog .featured-title {
		font-size: 28px;
	}

	.newBlog .blog-card-image {
		height: 250px;
	}

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

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

	.section-duan .title-duan {
		display: block;
	}

	.section-duan .title-duan .see-more {
		display: none;
	}

	.section-duan h2.section-title {
		font-size: 22px;
		text-align: center;
		margin-top: 10px;
	}

	.section-duan .feat h3 {
		font-size: 18px;
	}

	.section-duan {
		padding: 25px 0px 30px 0;
	}
}

section.newBlog {
	padding: 34px 0px;
}

@media (max-width: 550px) {
	.slideshow-img img {
		height: 400px;
	}

	.slideshow-content .slideshow-text {
		font-size: 20px;
	}

	.slideshow-content .desc_slide {
		font-size: 16px;
	}

	.box-wordwrap-iner-text .box-flex-call-us {
		margin-top: 15px;
	}

	.box-wordwrap-iner-text .box-flex-call-us a.read-more {
		padding: 6px 23px 6px 23px;
	}

	.about-savina .img2 {
		max-width: 170px;
	}

	.about-savina .img1 {
		max-width: 270px;
	}

	.about-savina .year-box {
		padding-left: 0px;
	}

	.about-savina .year-box h2 {
		font-size: 50px;
	}

	.about-savina .clean-right h2 {
		font-size: 22px;
	}

	.about-savina .clean-wrapper {
		padding: 30px 5px 25px;
	}

	.SERVICES .header {
		font-size: 20px;
	}

	.SERVICES {
		padding: 5px 0px;
	}

	.SERVICES .service-text h2 {
		font-size: 20px;
	}

	.SERVICES .service-image img {
		transform: scale(1);
	}

	section.Check_Availability .box-form-Check_Availability p {
		font-size: 14px;
	}

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

	section.Check_Availability .item-left-Check_Availability {
		padding: 25px 15px 10px;
	}

	section.Check_Availability .item-right-Check_Availability {
		padding-left: 0px;
		margin-top: 40px;
	}

	section.Check_Availability .hedding-item-right-Check_Availability h2 {
		font-size: 22px;
	}

	section.Check_Availability .hedding-item-right-Check_Availability p {
		font-size: 14px;
	}

	.img-google img {
		height: 35px;
	}

	.img-google .left {
		padding-right: 16px;
	}

	.img-google .right {
		margin-left: 18px;
	}

	.newBlog .header h2 {
		font-size: 20px;
	}

	.newBlog .featured-title {
		font-size: 20px;
	}

	.newBlog .featured-date-month {
		font-size: 11px;
	}

	.newBlog .featured-date-num {
		font-size: 22px;
	}

	.newBlog .featured-card {
		min-height: 350px;
	}

	.newBlog .featured-card .blog-card-image {
		height: 400px;
	}

	.newBlog .featured-card .blog-card-image {
		min-height: 400px;
	}

	section.newBlog {
		padding: 25px 0px 10px;
	}

	section.footer-ctnr .hero-text h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.about-savina .tag,
	.about-savina .item h3 {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.newBlog .header h1 {
		font-size: 24px;
	}

	.newBlog .featured-overlay {
		padding: 25px;
	}
}

.slideshow-content {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: var(--container);
	max-width: 100%;
	padding: 15px;
	z-index: 2;
	transition: 2s all;
}

.slideshow .slideshow-img {
	position: relative;
}

.slideshow .slideshow-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 1;
}

.slideshow-box.slick-current .slideshow-content {
	top: 50%;
}

.doi-tac {
	padding: 30px 0 10px;
}

.doi-tac .slick-slide {
	margin: 0 8px;
}

.doi-tac .slick-list {
	margin: 0 -8px;
}

.doi-tac h2,
.dich-vu h2 {
	font-size: 28px;
	color: #1A4B7B;
	margin: 0 0 10px;
	text-transform: uppercase;
	text-align: center;
}

.dich-vu {
	background-color: #1a4b7b12;
	padding: 40px 0;
}

.item-dich-vu {
	margin-top: 14px;
}

.img-100 {
	position: relative;
	height: 0;
	overflow: hidden;
	display: block;
}

.img-100>img {
	object-fit: cover;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s linear;
}

.item-dich-vu .wrap-img {
	padding-bottom: 106%;
	border-radius: 8px;
}

.item-dich-vu .wrap-img:hover img {
	transform: scale(1.1);
}

.item-dich-vu .wrap-img::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: linear-gradient(180deg, transparent 7.07%, rgba(5, 19, 40, 0.9) 100%);
	z-index: 1;
}

.item-dich-vu .content {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.item-dich-vu .content .title {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #FFF;
	text-shadow: rgb(0, 0, 0) 1px 1px 0px;
}

.item-dich-vu .content .num {
	font-size: 65px;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 2px #fff;
	position: relative;
}

.item-dich-vu .content .num::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 80%;
	height: 5px;
	border-radius: 30px;
	background-color: #D62828;
}

@media (max-width: 768px) {

	.doi-tac h2,
	.dich-vu h2 {
		font-size: 20px;
	}

	.dich-vu {
		padding: 25px 0;
	}

	.item-dich-vu {
		margin-top: 15px;
	}
}