*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header{
	height: 35px;
	color: #fff;
}

#btn-menu{
	display: none;
}

header label{
	font-size: 30px;
	cursor: pointer;
	display: none;
	margin-right: 10px;
	margin-top: 5px;
}
.fcb{
	color:#45629e;
	font-size: 24px;    
    position: relative;
}
.twt{
	color:#1da1f2;
	font-size: 24px;    
    position: relative;
}
.menu ul{
	display: flex;
	list-style: none;
	/*background: #fff;*/
	
}

.menu ul ul {
	display: none;
}

.menu li{
	width: 25%;
	text-align: center;
}

.menu li ul li{
	width: 100%;
}

.menu ul li ul{
	background: #fff;
    z-index: 9999;
}

.menu a{
	display: block;
	padding: 5px 20px;
	color: #000;
	text-decoration: none;
	font-size: 12pt;
     border-bottom: 2px solid #fff;
}

.menu a:hover{
	font-weight: 900;
    border-bottom: 2px solid #f5ca01;
}

.menu a span{
	position: relative;
    float: right;
	font-size: 15pt;
	margin-right:10px;
}

.menu ul li:hover ul {
	display: block;
	position: relative;
	animation: pulse 230ms linear;
}
@media (max-width: 1040px){
	header{
		display: flex;
		justify-content: flex-end;
        background: #000;
        height: 50px;
	}
	
	header label{
		display: block;
		color: #fff;
	}
	
	.menu{
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		transform: translateX(-300%);
		transition: all 0.3s;
        z-index: 9999;
	}
	
	.menu ul{
		display: block;
		background: #fff;
	}
	
	.menu li{
		width: 100%;
	}
	
	.menu ul li ul{
		background: #fff;
	}
	.menu ul li:hover ul{
		display: none;
		position: static;
		animation: none;
	}
	
	.menu a span{
		position: absolute;
		right: 5px;
	}
    .menu a{
        text-align: center;
    }
	
	#btn-menu:checked ~ .menu{
		transform: translateX(0%);
	}
	
}

@media screen and (max-width: 600px){
	
	header label{
		color: #fff;
	}
	
	.menu li{
		text-align: left;
	}
	
}

