header .header {
    position: fixed;
    width: 100vw;
}

header .header .menu, header .header .logo, header .header .langbx .langbx{
    position: absolute;
}

header .header .logo-up,
header .header .logo-down {
	position:fixed;
    left: 50px;
    top: 40px;
    width: 360px;
}

header .header .logo-up {
	z-index:6;
}
header .header .logo-down {
	z-index:5;
}

header .header .langbx,
header .header .lang,
header .header .langbx .en,
header .header .langbx .cn,
header .header .contactbx{
	display:flex;
	cursor:pointer;
	z-index:5;
}

/*
header .header .lang,
header .header .contactbx {
	position: fixed;
	height: 230px;
	width: auto;
	align-items:center;
	justify-content: center;
	bottom: 0;
}
*/
header .header .lang,
header .header .contactbx {
	position:fixed;

}

header .header .lang {
	right: 50px;
	bottom: 50px;
}

header .header .contactbx {
	bottom:20px;
    width: 160px;
    height: 160px;
	left: 20px;
    align-items:center;
	justify-content: center;
}

header .header .lang .langbx{
	height:100px;
	width:auto;
	border: 1px solid white;
	border-radius: 50px;
	flex-direction:column;
}

header .header .lang .langbx a {
	color:white;
}

header .header .lang .langbx .en,
header .header .lang .langbx .cn{
	position:relative;
    height: 50%;
	align-items:center;
	justify-content: center;
	font-size:16px;
	color:white;
	letter-spacing: -.01rem;
    /*
	-webkit-transition: color 1s,background 1s;
	-moz-transition: color 1s,background 1s;
    -o-transition: color 1s,background 1s;
	transition: color 1s,background 1s;
    */
	padding: 0 0.5rem 0 0.5rem;
}

header .header .lang .langbx .langsp {
	height:1px;
	background:white;
	z-index:6;
}

header .header .lang .langbx .cn {
	border: 0px;
	border-radius: 50px 50px 0px 0px;
}

header .header .lang .langbx .en {
	border: 0px;
	border-radius: 0px 0px 50px 50px;
}
/*
header .header .lang .langbx .en:hover,
header .header .lang .langbx .cn:hover{
	color: #242424;
	background:#b195ff;
}
*/
header .header .menu {
    text-align: right;
    right: 50px;
    top: 50px;
	z-index: 5;
}

header .header .menu nav ul li {
    height: 37px;
}

header .header .menu nav ul li a {
    position: relative;
    font-size: 18px;
    color: white;
    display: inline-block;
    transition: color 1s;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -ms-transition: color 1s;
    -o-transition: color 1s;
}

header .header .menu nav ul li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -30%;
    content: "";
    display: block;
    height: 1px;
    right: 0;
    position: absolute;
    background: #C0AAFF;
    transition: width 1s ease 0s, right 1s ease 0s;
    width: 0;
}

header .header .menu nav ul li a:hover {
    color: rbga(192,170,255,1);
}

header .header .menu nav ul li a:hover:after {
    width: 100%;
    right: 0;
}

/*crypto btn*/
header .header .contactbx #contact-ani {
    position: absolute;
    width: 120px;
    height: 120px;
	-webkit-animation: flower 15s linear infinite;
    animation: flower 15s linear infinite;
}

header .header .contactbx #contact-ani .ctx {
	font-family: "Matter",'sans-serif';
	fill: #C0AAFF;
	letter-spacing: -.01rem;
}

header .header .contactbx #contact-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #C0AAFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
	-webkit-animation: flower 15s linear infinite;
    animation: flower 15s linear infinite;
}

header .header .contactbx #contact-btn img {
	position:absolute;
    width: 30px;
    height: 30px;
}

header .header .contactbx #contact-btn img:hover{
	    transform: scale(1.1);
}

header .header .contactbx #contact-btn:hover{
    width: 66px;
    height: 66px;
}

header .header .contactbx #contact-ani:hover{
    width: 132px;
    height: 132px;	
}
/*
header .header .contactbx #contact-btn:hover{
    width: 66px;
    height: 66px;
}
*/

@keyframes flower {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(1turn);
	}
}

.bg {
    position: fixed;
    z-index: 9000;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("../image/bg.png");
    background-repeat: repeat;
    background-position: top left;
	pointer-events:none;
}

/* MOBILE */
header .header-m {
    position: relative;
    width: 100vw;
    height: 10vh;
    display: none;
    z-index: 40;
}

header .header-bg-m {
	position:fixed;
	height:15vh;
	width: 100vw;
	background: linear-gradient(0deg, rgba(36, 36, 36, 0) 0%, #141414 70%);
	z-index:39;
	pointer-events:none;
	display:none;
}

header .header-m>a .en-m,
header .header-m>a .cn-m {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Matter", 'sans-serif' !important;
    letter-spacing: -.01rem;
    font-size: 4vw;
}

header .header-m a .en-m {
    left: 5%;
}

header .header-m a .cn-m {
    left: calc(20% - 1px);
}

header .header-m a .logo-m {
    position: absolute;
    height: 50%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

header .header-m #menu-btn-m {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20%;
	/*
    border-left: 1px solid #4e4e4e;
	*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}
/*
header .header-m #menu-btn-m svg{
    height: 80%;
    width: 80%;
}
*/
header #menu-l-m {
    position: fixed;
    left: 150%;
    bottom: -150%;
    height: 100%;
    width: 100%;
    background: #544263;
    display: none;
    z-index: 49;
	-moz-transition: transform 1s;
    -webkit-transition: transform 1s;
    transition: transform 1s;
}

header #menu-l-m #menu-m-m {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header #menu-l-m #menu-cl-btn-m {
    position: absolute;
    right: 9vw;
    top: 9vw;
    width: 8vw;
    height: 8vw;
	z-index: 60;
}
/*
header #menu-l-m #menu-cl-btn-m svg circle,
header #menu-l-m #menu-cl-btn-m svg path{
  stroke-width: 4;
  stroke: white;
}
*/

header #menu-l-m #menu-m-m > a {
    font-size: 7vw;
    letter-spacing: -.09rem;
    color: white;
    line-height: 2.5 !important;
}


@media screen and (max-width: 1201px) {
	header .header .menu nav ul li a {
    font-size: 16px;
}
	header .header .logo-up,
    header .header .logo-down {
    width: 250px;
}
	header .header .menu nav ul li {
    height: 33px;
}
}

@media screen and (max-width: 1023px) {
	header .header-m {
		display:block;
	}
	header .header {
		display:none;
	}
	header #menu-l-m{
		display: block;
	}
	header .header-bg-m{
		display:block;
	}
	.bg {
    opacity: 0.3;
}
	header .header-bg-m {
display:block;
}
}