.text-white {
	color: white;
	font-size: 15px;
}

/* 自定义样式*/
.particle {
	position: absolute;
	border-radius: 9999px;
	opacity: 0.7;
	animation: float 15s infinite linear;
}

@keyframes float {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(var(--tx), var(--ty));
	}
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	min-width: 160px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/*  SVG 图标旋转 */
.dropdown:hover .language-switcher__icon {
	transform: rotate(180deg);
}

/* 下拉菜单动画 */
.dropdown-content {
	transition-property: opacity, transform, visibility;
	transition-duration: 200ms;
	transition-timing-function: ease-in-out;
}

/* --- Gaya untuk Video Background --- */
#video-background {
	position: fixed;
	/* Membuat video tetap di posisi saat di-scroll */
	top: 84px;
	right: 0;
	bottom: 0;
	min-width: 100%;
	/* Memastikan video mengisi seluruh lebar */
	min-height: 100%;
	/* Memastikan video mengisi seluruh tinggi */
	width: auto;
	height: auto;
	z-index: -1;
	/* Menempatkan video di belakang konten */
	background-size: cover;
	/* Memastikan video mencakup area sepenuhnya */
	overflow: hidden;
	/* Menyembunyikan bagian video yang melampaui viewport */
	object-fit: cover;
	/* Penting untuk memastikan video mengisi tanpa distorsi */
}


/* Lapisan overlay untuk meningkatkan kontras teks di atas video */
.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* Hitam transparan */
	z-index: -1;
	/* Di atas video, di bawah konten */
}

.img-btn {
	display: flex;
	justify-content: space-between;
}

.btn-s {
	border: 1px solid #fff;
	margin-top: 5px;
}

.btn-b {
	border: 1px solid #000;
}

.img-f {
	border-radius: 10px;
}

.bg-div {
	background-color: #A8E6CF;
}

.header {
	height: 70px;
	/* line-height: 84px; */
}

.logo {
	/* width:100%; */
	width: 200px;
}
.content-child{
	margin: 0px auto;
	text-align: center;
	padding: 30px 20px;
}
#mobileMenu{
	margin-top: 68px;
}
.placeholder-img{
	height: 635px;
	width: 100%;
}
p{
	font-weight: 500;
}
@media (min-width: 768px) {
	.header {
		height: 74px;
		/* padding-top: 10px; */
		/* line-height: 84px; */
	}
	.content-child{
		margin: 0px auto;
		text-align: center;
		padding: 30px 80px;
	}
	.content {
		width: 450px;
		margin: 0 auto;
	}

	.content-img {
		width: 978px;
		margin: 0 auto;
	}

	.btn-s {

		margin-top: 10px;
	}

	#video-background {
		top: 100px;
	}

	.text-gray-300 {
		width: 110px;
	}

	.logo {
		/* width:100%; */
		width: 220px;
	}
}