
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

.menu_full {
	background: rgba(150,1,76,1);
background: -moz-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150,1,76,1)), color-stop(100%, rgba(0,0,0,1)));
background: -webkit-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#96014c', endColorstr='#000000', GradientType=0 );
}
#menu {
	height: 40px;
	margin-top:0;
}
#menu .box {
	opacity: 1;
	height: 40px;
	text-align: center
}
#menu ul {
	padding: 0;
	transition: 0.3s all ease-in-out;
	margin:0 auto;
	display:table;
	width:auto;
}
#menu ul li {
	margin: 0;
	line-height: normal;
	height: 40px;
	float: left;    list-style: none;
	
}
#menu ul li:last-child {
}
#menu ul li a {
	padding: 0 20px;
	font-size: 17px;
	letter-spacing:0.5px;
	text-decoration: none;
	color: #fff;
	height:40px;
	line-height: 40px;
	display: block;
	position: relative;
	z-index: 1111;
	transition: 0.3s all ease-in-out;
	font-weight:500;
	text-transform:uppercase;
	font-family: 'Oswald', sans-serif;
}
#menu ul li:hover a {
	color: #fff !important;
	background-color: #000;
	
}
#menu ul li a::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
#toggle-nav-label, #toggle-nav {
	display: none;
}

@media screen and (max-width: 1200px) {
	#menu ul li a {
		padding: 0 20px;
		font-size:13px;
	}
}
@media screen and (max-width: 1023px) {
	
}

@media screen and (max-width: 991px) {
.menu_full {
	background: rgba(150,1,76,1);
background: -moz-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150,1,76,1)), color-stop(100%, rgba(0,0,0,1)));
background: -webkit-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(150,1,76,1) 0%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#96014c', endColorstr='#000000', GradientType=0 );
	margin-top: 0;
}
#toggle-nav-label span {
    margin-left: 43px;
    /* margin-top: 19px; */
    height: 40px;
    line-height: 40px;
}
#menu {
	margin: 0;
	height: 40px;
	background: none;
	border: none;
}
#menu .box {
	margin: 0;
	position: fixed;
	text-align: center;
	overflow: hidden;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(0,0,0,0.8);
	transition: all 0.3s ease-in-out;
	display: none;
}
#menu ul {
	position: relative;
	top: 20%;
	transform: scale(2);
	transition: all 0.3s ease-in-out;
	height: auto;
	text-align: center;
}
#menu ul li {
	width: 100%;
	display: inline;
	margin: 0;
	line-height: normal;
	height: auto;
}
#menu ul li a {
	padding: 0px 10px;
	text-decoration: none;
	font-size: 14px;
	color: #FFFFFF !important;
	transition: all 0.2s ease-in-out;
	display: block;
	border-right: none;
	height: 35px;
	line-height: 35px;
}
#menu ul li a:hover {
	background: none;
	color: #FFFFFF !important;
	border: none;
}
#toggle-nav-label {
	color: #FFFFFF;
	background: none;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
	display: block;
	cursor: pointer;
	position: relative;
	z-index: 11111111;
	width: 50px;
	height: 40px;
	border-radius: 0;
	margin-bottom: 0;
	margin-top: 0;
}
#toggle-nav-label:after {
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	font-family: FontAwesome;
	content: '\f0c9';
	font-size: 22px;
	text-align: center;
}
#toggle-nav {
	display: none;
}
#toggle-nav:checked ~ .box {
	opacity: 1;
	z-index: 111111;
	display: block;
}
#toggle-nav:checked ~ .box ul {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	margin: 0;
	padding: 0;
	float: none;
}
#toggle-nav:checked ~ #toggle-nav-label {
	position: fixed;
	left: 0px;
	top:0;
}
#toggle-nav:checked ~ #toggle-nav-label:after {
	color: #fff;
	font-family: FontAwesome;
	content: '\f00d';
	font-size: 25px;
}
#menu ul li a:before, #menu ul li a:after {
	display: none;
}
#menu ul li a i {
	display: none;
}
#menu ul li a br {
	display: none;
}
}
