header {
	position: relative;
	z-index: 1000;
}

.header-top {
	background: linear-gradient(90deg, #00aae0, #acd57f);
	color: white;
	font-size: 14px;
	padding: 2px 0;
	font-weight: 400;
}

.clm.header-top__right {
	text-align: right;
}

header.is-scroll .header-bottom {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.129);
	z-index: 99;
}

.header-top a {
	color: inherit;
}

.header-lang {
	gap: 5px;
}

.header-lang .active {
	color: #e24b2b;
}

.icon-arrow svg {
	width: 20px;
	height: 20px;
}

.header-action button {
	padding: 0;
}
.header-action svg, .header-action img {
	width: 24px;
	height: 24px;
	transform: translateY(3px);
}
.header-action svg path {
	stroke: #FFF;
}

.header-action .cta-btn{
	margin-right: 15px;
}

/* logo header */
.header-logo {
	line-height: 0;
}

.header-logo img {
	max-width: 120px;
	width: 100%;
}

/* header menu */
.header-bottom {
	padding: 12px 0;
	background-color: #000;
}

.header-nav__list {
	gap: 10px 30px;
	margin-right: 20px;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-item .has-child {
	display: none;
	transition: .3s;
}

.nav-item .has-child.active {
	transform: rotate(180deg);
}

.nav-item .icon-arrow {
	padding-top: 2px;
}


.nav-item>a {
	font-weight: 600;
	font-size: 16px;
	color: #FFF;
	text-transform: uppercase;
}
.nav-item>a:hover {
	color: #00aae0;
}

.nav-item:hover .nav-item__sub {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.nav-item__sub li {
	padding: 5px 20px;
}

.nav-item__sub a {
	color: #333;
	font-size: 15px;
	font-weight: 400;
}

/* header-action */
.header-action {
	gap: 10px;
	/* line-height: 2; */
}

.header-action a {
	line-height: 0;
}

/* header-search-mobile */
.header-search {
	position: fixed;
	background: #000000cc;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1001;
	display: none;
}

.header-search__box .ctnr {
	max-width: 600px;
}

.header-search__box .search-input {
	height: 50px;
	width: 100%;
	padding: 10px 65px 10px 15px;
}

.header-search__form {
	position: relative;
}

.header-search__form .search-btn {
	position: absolute;
	background: transparent;
	padding: 0;
	border: none;
	height: 50px;
	width: 50px;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header-search__form .search-btn svg {
	width: 35px;
	height: 35px;
}

.header-search__close {
	background: transparent;
	margin-left: auto;
	display: block;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-search__close svg {
	width: 35px;
	height: 35px;
	stroke: white;
}

.navbar-collapse__heading {
	position: relative;
	border-bottom: 1px solid #eee;
	padding: 10px 10px 5px;
	margin-bottom: 10px;
}

.navbar-collapse__logo {
	max-width: 130px;
	margin: 0 auto;
}

.navbar-collapse__close {
	position: absolute;
	padding: 0;
	right: 0;
	top: 10px;
}

.navbar-collapse__close svg {
	width: 20px;
	height: 20px;
}

.navbar-collapse__close svg path {
	fill: #FFF;
}

.cta-btn{
	display: inline-block;
	position: relative;
	padding: 7px 18px;
	border-radius: 8px;
	box-shadow:0 8px 18px rgba(2,132,199,.35), inset 0 0 0 1px rgba(255,255,255,.12);
	transform-origin: center;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	text-decoration: none;
	outline: none;
	animation: zoomBlink 1.2s ease-in-out infinite;
}

.cta-btn:hover{
	transform: translateY(-2px) scale(1.03);
	box-shadow:0 12px 24px rgba(2,132,199,.45), inset 0 0 0 1px rgba(255,255,255,.18);
	filter: brightness(1.03);
	animation-play-state: paused;
}

.cta-btn:active{
	transform: translateY(0) scale(.99);
}

.cta-btn::after{
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(14,165,233,.45);
	animation: pulseRing 1.8s ease-out infinite;
	pointer-events: none;
}

.cta-btn:focus-visible{
	outline: 3px solid #93c5fd;
	outline-offset: 3px;
}

@keyframes zoomBlink{
	0% { transform: scale(1); filter:brightness(1); }
	45% { transform: scale(1.08); filter:brightness(1.06); }
	50% { transform: scale(1.08); filter:brightness(1.15); }
	100% { transform: scale(1); filter:brightness(1); }
}

@keyframes pulseRing{
	0% { box-shadow:0 0 0 0 rgba(14,165,233,.45); }
	70% { box-shadow:0 0 0 14px rgba(14,165,233,0); }
	100% { box-shadow:0 0 0 0 rgba(14,165,233,0); }
}

.btn-web{
	background: linear-gradient(180deg, #00aae0, #acd57f);
	color: #FFF;
	font-size: 15px;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 30px;
	transition: .3s;
}

.btn-web:hover{
	color: #FFF;
	background: linear-gradient(135deg, #00aae0, #acd57f);
}

.header-top__right .social-icons ul{
	justify-content: right;
	gap: 5px;
}

.social-icons img{
	max-width: 24px;
}
.header-top__right .social-icons ul li img{
	width: 25px !important;
	transform: translateY(3px);
}
.header-bottom__right{
	gap: 10px 15px;
	align-items: center;
}
.header-bottom__right .social-icons{
	line-height: 0;

}
.header-bottom__right .social-icons ul{
	gap: 10px;
}
@media (min-width: 1023px) {
	.nav-item__sub a:hover {
		color: var(--color-2);
	}

	.nav-item__sub {
		position: absolute;
		left: 0;
		top: 100%;
		background: white;
		width: max-content;
		max-width: 330px;
		box-shadow: 0 0 50px rgba(0, 0, 0, .07);
		border-radius: 10px;
		padding: 10px 0;
		transform: translateY(0) scale(1);
		visibility: hidden;
		opacity: 0;
		transition: all .3s ease-in-out;
	}

	.nav-item__sub li {
		position: unset;
		display: flex;
	}

	.nav-item__sub-child {
		position: absolute;
		left: 100%;
		width: max-content;
		background: white;
		height: 100%;
		top: 0;
		padding: 10px 0;
		border-radius: 10px;
	}
}

@media (max-width: 1023px) {
	.header-bottom__row {
		justify-content: space-between;
	}

	.navbar-collapse {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
		background: #000;
		width: 265px;
		height: 100%;
		opacity: 0;
		transform: translateX(-100%);
		transition: all .5s;
	}

	.navbar-collapse.is-open {
		transform: translateX(0);
		opacity: 1;
	}


	.header-nav__list {
		flex-direction: column;
		gap: 0;
	}

	.header-nav__list li>.icon-arrow svg {
		transition: all .3s ease-in;
	}

	.header-nav__list li.is-open>.icon-arrow svg {
		transform: rotate(180deg);
	}

	.nav-item {
		flex-wrap: wrap;
		padding: 10px ;
	}

	.nav-item .icon-arrow {
		position: absolute;
		top: 5px;
		right: 10px;
	}

	.nav-item__sub {
		width: 100%;
		display: none;
	}

	.nav-item ul {
		display: none;
	}

	.nav-item__sub li {
		list-style: circle;
		padding: 5px 30px 5px 0;
		margin-left: 25px;
	}
}

@media (max-width: 640px) {
	.header-logo {
		padding-top: 0;
	}

	.home-about .c-ttl__01 {
		font-size: 2.3rem;
	}
	.header-top__left {
		display: none;
	}
}

.clm.header-top__right {
    display: flex;
    align-items: center;
    gap: 0px 10px;
    justify-content: right;
}

.lengLife-us ul li img {
    height: 24px;
    width: 30px !important;
    display: flex;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 5px;
}

.lengLife-us ul li {
    display: flex;
    gap: 0px 7px;
}

@media (max-width: 550px) { 
	.header-action .cta-btn {
		margin-right: 0;
	}

	.header-logo img{
		max-width: 100px;
	}

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

	.nav-item__sub a {
		color: #FFF;
	}

	.nav-item .has-child {
		display: block;
	}

	.btn-web {
		padding: 10px 12px;
		font-size: 13px;
	}
}	