@media screen and (max-width: 380px) {
	.menu-list li {
		width: 70px;
	}
}

@media screen and (min-width: 380px) {
	.menu-list li {
		width: 90px;
	}
}

@media screen and (max-width: 630px) {
	.navbar {
		padding: 0px;
	}

	.footer {
		padding: 0px 0px;
	}

	.right-menu {
		display: none;
	}

	.privacy_container {
		padding: 0px;
	}

	.privacy_container .word_content {
		padding: 30px;
	}
}

@media screen and (min-width: 630px) {
	.navbar {
		padding: 0px 10%;
	}

	.footer {
		padding: 0% 10%;
	}

	.right-menu .wrap {
		margin-right: 20px;
	}

	.privacy_container {
		padding: 0% 10%;
	}

	.privacy_container .word_content {
		padding: 30px 80px;
	}
}

* {
	margin: 0%;
	padding: 0;
}

div {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-corner {
	display: block;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
	border-right-color: transparent;
	border-left-color: rgba(0, 0, 0, 0.1);
}
[v-cloak] {
	display: none;
}
.advertising {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 1%;
	color: #333;
	overflow-x: auto;
	overflow-y: hidden;
}

.navbar {
	width: 100%;
	position: relative;
	z-index: 1;
	background-color: #8f3ac0;
}

.navbar-container {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 5px rgba(26, 15, 63, 0.71);
	padding: 0px 10px;
	background-color: #aa57da;
}

.menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	cursor: pointer;
	transform: skew(-10deg);
	transition: all 0.1s ease;
	position: relative;
	top: -5px;
	filter: drop-shadow(0 15px 20px #632985);
	box-shadow: 0 5px 0 #632985;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu-btn img {
	width: 22px;
}

.menu-btn:active {
	letter-spacing: 0px;
	transform: skew(-10deg) translateY(8px);
}

.menu-list {
	width: 100%;
	background-color: #c98aee;
}

.menu-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0px;

}

.menu-list ul li {
	font-family: "Barlow";
	text-align: center;
	cursor: pointer;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.logo {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-left: 10px;
	transform: scale(.8);
	transform-origin: 0%;
	cursor: pointer;

}

.logo .logo-image {
	height: 75%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.iback {
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 20%;
	right: 5%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	cursor: pointer;
	background-color: #aa57da;
	box-shadow: 0px 0px 10px rgba(26, 15, 63, 0.71);
}

.goup {
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 30%;
	right: 5%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	cursor: pointer;
	box-shadow: 0px 0px 10px rgba(26, 15, 63, 0.71);
	background-color: #aa57da;
}

.footer {
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	box-sizing: border-box;
	background-color: #8f3ac0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-wrap {
	height: 100%;
	background-color: #aa57da;
	width: 100%;
	box-shadow: -5px 2px 10px -5px rgba(26, 15, 63, 0.71),
		0px 0px 0px 0px transparent,
		0px 0px 0px 0px transparent,
		5px 2px 10px -5px rgba(26, 15, 63, 0.71);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer .img {
	height: 30%;
	min-height: 34px;
}

.footer .img>img {
	height: 100%;
}

.footer .word {
	padding: 5px;

}

.footer .word>span {
	display: inline-block;
	cursor: pointer;
}

.footer .word .split {
	margin: 0px 15px;
	color: white;
}

.footer .word .info {
	font-size: 12px;
	color: white;
}

.footer .word a {
	text-decoration: none;
}