.overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .3);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: all 200ms ease-in;
}

.top-manu-nav {
	width: 270px;
	height: 100vh;
	background-color: #3498db;
	left: -270px;
	top: 0;
	position: fixed;
	padding: 20px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .6);
	transition: all 200ms ease-in-out;
	z-index: 99;
}

.toggle {
	position: absolute;
	left: 100%;
	top: 10px;
	background-color: #262626;
	width: 40px;
	height: 40px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor: default;
}

.toggle span {
	display: block;
	margin-top: -5px;
}

.toggler {
	pointer-events: none;
}

.logo {
	text-align: center;
	margin-bottom: 10px;
	margin-left: 20px;
}

nav .perks-logo {
	width: fit-content;
	color: white;
}

nav .perks-logo span{
	color: #ff8417;
}

.top-manu-nav {
	align-content: flex-start;
}

.top-manu-nav ul {
	width: 100%;
	padding: 0;
}

.top-manu-nav ul li {
	display: block;
	list-style: none;
}

.top-manu-nav ul li a {
	padding: 10px 20px;
	display: block;
	color: #f6f6f6;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	text-decoration: none;
	transition: all 200ms ease;
}

.top-manu-nav ul li a:hover {
	background-color: #42a6e9;
}

/* Show Nav */
.show-nav .top-manu-nav {
	left: 0;
}

.show-nav .overlay {
	opacity: 1;
	visibility: visible;
}

/* Styling the content */

.content {
	background-color: #fff;
	margin-top: 100px;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

.content h1 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 35px;
	color: #333;
}

.content .lead {
	color: #333;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 1.7;
}

#nav-icon2 {
	width: 25px;
	height: 30px;
	position: relative;
	margin: 50px auto;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-icon2 {
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 50%;
	background: #ffffff;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
	left:0px;
	border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 11px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 19px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 27px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 1px;
	top: 14px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 2px);
	top: 14px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 1px;
	top: 23px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 2px);
	top: 23px;
}

@media (min-width: 768px) {
	.top-menu-btn {
		margin-top: 10px;
		margin-left: 15px;
		width: 90px;
		height: 40px;
		background-color: #3498db;
		color: white;
		font-weight: 700;
		display: unset !important;
		border: none;
		border-radius: 5px;
	}

	.top-menu-btn:active, .top-menu-btn:hover {
		background-color: #2c7fbb;
		outline: none;
	}

	.top-menu-btn-box {
		display: unset !important;
		position: absolute;
		z-index: 1;
		left: 0;
		height: 60px;
		width: 150px;
		background-color: #f7fbfe;
	}
}

.top-menu-btn-box.top-layer {
	animation: fadeIn linear 0.2s forwards;
}

@keyframes fadeIn {
	0% {
		z-index: 1;
	}
	100% {
		z-index: 100;
	}
}

.top-menu-btn, .top-menu-btn-box {
	display: none;
}
