/*BURGER ICON*/
.burger-icon {
	color:#333333;
	cursor: pointer;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 30px;
	height: 30px;
	z-index: 1000;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	float: right;
	display: none;
}

.burger-line { /* bar color */
	transition: 0.3s;
	width: 100%;
	height: 5px;
	background-color: #fff;
	border-radius: 3px;
}

.burger-icon .burger-line:last-child {
	margin-bottom: 0;
}

.burger-line-1 {
	position: relative;
	top: 0;
}

.burger-line-3 {
	position: relative;
	bottom: 0;
}

.burger-icon.open .burger-line-1 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.burger-icon.open .burger-line-2 {
	opacity: 0;
}

.burger-icon.open .burger-line-3 {
	position: absolute;
	bottom: 50%;
	transform: translateY(50%) rotate(45deg);
}

.burger-menu {
	position: fixed;
	width: 100%;
	left: auto;
	right: 0;
	padding: 15px;
	background-color: #fff;
	color:#fff;
	z-index: 500;
	display: none;
}

.burger-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.burger-menu ul li {
	display: block;
}

.burger-menu ul li a {
	color:#111;
	display: block;
	padding: 6px 0;
}

.burger-menu ul li:last-child a {
	border:none;
}

@media only screen and (max-width: 767px) {

	.main-menu {
		display: none;
	}

	.burger-icon {
		display: inline-flex;
	}

}

@media only screen and (max-width: 767px) {
	
	.burger-icon {
		width: 20px;
		height: 20px;
	}

	.burger-line {
		height: 2px;
	}

}