
.deploy{
	position: absolute;
	cursor: pointer;
	background: transparent;
}
.deploy:hover span{
	background: #fff;
}
.strip{
	display: block;
	width: 30px;
	height: 2px;
	margin: 5px 0px;
	background: #fff;
	transition: 0.3s;
}
.no{
	transition: 0.9s;
}
.deploy.active .strip:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	transition: 0.3s;
	width: 50px;
}
.deploy.active .strip:nth-child(2) {
	transition: 0s;
}
.deploy.active .strip:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
	transition: 0.3s;
	width: 50px;
}


.deploy{
	display: none;
}


@media screen and (max-width: 1100px) {
	.deploy{
		top: 50%;
		right: 5%;
		transform: translate(-0%, -50%);
		display: inline-block;
		
	}
	.active {
		top: 10%;
	}
	.menu{
		/* display: none; */
		height: 0px;
    	overflow: hidden;
    	transition: 0.3s;
		margin-top: 100px;
		left: 5%;
		right: auto;
	}
	.menu a{
		font-size: 24px;
	}
	.menu li{
		display: block;
		padding-left: 0px;
		padding: 7px 0px;
	}
	.open{
		height: 100%;
		background: #000;
		transition: 0.4s;
		opacity: 1.0;
	}
	.show{
		display: block;
		height: 100%;
    /* overflow: visible; */
    	transition: 2s; 
	}
	.none{
		display: none;
	}
	.hide{
		opacity: 0.0;
	}
}