/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}

img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}

custom-dropdown:not(:defined) {
	visibility: hidden;
}
body{
	top:0 !important;
}
iframe.skiptranslate {
	display:none !important;
}
.btn-primary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1rem;
	color: var(--Button-Brand-Text-Icon, #fff);
	text-align: center;
	font-feature-settings: "liga" off, "clig" off;
	font-family: Inter;
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.25rem;
	text-transform: uppercase;
	border-radius: 99999px;
	overflow: hidden;
	z-index: 1;
	transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Nền gradient mặc định */
.btn-primary::before,
.btn-primary::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	transition: opacity 0.4s ease-in-out;
}

/* Gradient mặc định */
.btn-primary::before {
	background: linear-gradient(
		250deg,
		#edf5ff -7.01%,
		#aed4ff 9.88%,
		#3188df 45.49%
	);
	opacity: 1;
}
.btn-primary.loading {
	pointer-events: none;
}
.btn-primary.loading::before {
	animation: pulse-2 2s infinite;
}

@keyframes pulse-2 {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* Gradient hover */
.btn-primary::after {
	background: #24af97;
	opacity: 0;
}

.btn-primary__icon {
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 0.5rem;
	transition: transform 0.4s ease-in-out;
}

.btn--slide.swiper-button-disabled {
	background: var(--Inractive-Disable, #d0d8e1) !important;
	cursor: not-allowed;
	border: 1px solid var(--Inractive-Disable, #d0d8e1) !important;
}
.line-clamp-1 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

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

.line-clamp-4 {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rank-math-breadcrumb {
	max-width: 75rem;
	margin: 0 auto;
	padding: 1.5rem 0;
}
.rank-math-breadcrumb * {
	color: #A9A9A9;
	font-size: 0.9375rem;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 0.9375rem */
}
.rank-math-breadcrumb .last {
	color: var(--Text-Title-Dark-blue, #00358D);
}
.pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination__item {
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 1.5rem;

	color: var(--Button-Outline-Text-Icon-inactive, #283B56);
	font-family: Inter;
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 0.8125rem */
	text-transform: uppercase;
	transition: 0.3s ease;
}

.pagination__item.active {
	background: var(--Button-Brand-Hover---Brand, #24AF97);
	color: var(--Button-Brand-Text-Icon, #FFF);
}
.pagination__item:not(:last-child) {
	margin-right: 0.5rem;
}
.btn--slide {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--Button-Outline-Stroke, #d0d8e1);
	background: var(--Background-White, #fff);
	backdrop-filter: blur(25px);
	transition: all 0.3s ease-in-out;
}
.btn--slide img {
	width: 1rem;
	height: 1rem;
	transition: all 0.3s ease-in-out;
}

.btn--slide.swiper-button-disabled img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%)
		hue-rotate(51deg) brightness(104%) contrast(101%) !important;
}
@media (min-width: 1024.98px) {
	.pagination__item:hover{
		background: var(--Button-Brand-Hover---Brand, #24AF97);
		color: var(--Button-Brand-Text-Icon, #FFF);
	}
	.btn-primary:hover::before {
		opacity: 0;
	}
	.btn-primary:hover::after {
		opacity: 1;
	}

	.btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(49, 136, 223, 0.3);
	}
	.btn-primary:hover > .btn-primary__icon {
		transform: rotate(45deg);
	}.btn--slide:hover {
		background: var(--Button-Brand-BG, #0e0e44);
		transition: all 0.3s ease-in-out;
		border: 1px solid var(--Button-Brand-BG, #0e0e44);
	}

	.btn--slide:hover img {
		filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%)
			hue-rotate(51deg) brightness(104%) contrast(101%);
		transition: all 0.3s ease-in-out;
	}

}
@media (max-width: 639.98px) {
	.pagination__item{
		width: 2.12013rem;
		height: 2.12013rem;
		font-size: 0.68906rem;
		font-style: normal;
		font-weight: 600;
		line-height: 100%; /* 0.68906rem */
	}
	.pagination__item:not(:last-child) {
		margin-right: 0.42rem;
	}
	.rank-math-breadcrumb {
		padding: 0 1rem;
	}
	.rank-math-breadcrumb *{
		font-size: 0.875rem;
		font-style: normal;
		font-weight: 500;
		line-height: 150%; /* 1.3125rem */
		letter-spacing: -0.00875rem;
	}
	.btn-primary {
		padding: 0.75rem 1.5rem;
		font-size: 0.6875rem;
	}
	.btn-primary__icon {
		width: 1rem;
		height: 1rem;
		margin-left: 0.25rem;
	}
}

/* Loading */
.wpcf7-form.submitting .lds-roller {
	display: inline-block;
}
.wpcf7-form.submitting button[type="submit"] .submit-icon {
	display: none;
}
.lds-roller {
	display: none;
	position: relative;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 0.625rem;
}
.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 0.625rem 0.625rem; /* 10px */
}
.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 0.1125rem; /* 1.8px */
	height: 0.1125rem;
	border-radius: 50%;
	background: #fff;
	margin: -0.05625rem 0 0 -0.05625rem; /* -0.9px */
}
.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
	top: 0.97856rem; /* 15.6569px */
	left: 0.97856rem;
}
.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
	top: 1.058rem; /* 16.9282px */
	left: 0.875rem; /* 14px */
}
.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
	top: 1.107rem; /* 17.7274px */
	left: 0.7544rem; /* 12.0706px */
}
.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
	top: 1.125rem; /* 18px */
	left: 0.625rem; /* 10px */
}
.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
	top: 1.107rem;
	left: 0.4956rem; /* 7.9294px */
}
.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
	top: 1.058rem;
	left: 0.375rem; /* 6px */
}
.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
	top: 0.97856rem;
	left: 0.2714rem; /* 4.3431px */
}
.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
	top: 0.875rem; /* 14px */
	left: 0.192rem; /* 3.0718px */
}
@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


