.menu-icon {
	position: relative;
	width: 50px;
	height: 30px;
	cursor: pointer;
	display: inline-block;
	top: 5px;
}

.menu-icon div {
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 12px;
}

.menu-icon span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	border-radius: 1px;
	transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}

.headroom--not-top .menu-icon span{
	background-color: #2F3D47;
}

.menu-icon span:first-of-type {
	top: 0;
}

.menu-icon span:last-of-type {
	bottom: 0;
}

.mm-wrapper_opened .menu-icon span:first-of-type {
	transform: rotate(45deg);
	top: 5px;
}

.mm-wrapper_opened .menu-icon span:last-of-type {
	transform: rotate(-45deg);
	bottom: 5px;
	width: 40px;
}

.mm-wrapper_opened .menu-icon:hover span:first-of-type, .mm-wrapper_opened .menu-icon:hover span:last-of-type {
	width: 40px;
}

.menu-icon span:first-of-type {
	width: 40px;
}

.menu-icon span:last-of-type {
	width: 25px;
}

@media (min-width: 991.98px) {
	
	.menu-icon span {
		height: 3px;
	}
	
	.menu-icon {
		width: 72px;
	}
	
	.menu-icon div{
		height: 18px;
		width: 72px;
	}
	
	.mm-wrapper_opened .menu-icon span:last-of-type {
		transform: rotate(-45deg);
		bottom: 5px;
		width: 72px;
	}
	
	.mm-wrapper_opened .menu-icon:hover span:first-of-type, .mm-wrapper_opened .menu-icon:hover span:last-of-type {
		width: 72px;
	}
	
	.menu-icon span:first-of-type {
		width: 72px;
	}
	
	.menu-icon span:last-of-type {
		width: 52px;
	}	
}