.header__social-search .penci-menu-toggle-wapper {
	float: right;
	margin-left: 15px;
	margin-right: 0;
}

.penci-menuhbg-toggle {
	padding: 0;
	width: 22px;
	height: 20px;
	display: block;
	line-height: 20px;
	background-position: right top;
	background-repeat: no-repeat;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	position: relative;

	.penci-menuhbg-inner {
		transition: -webkit-transform 0.33s 0.3s ease-in;
		transition: transform 0.33s 0.3s ease-in;
		-webkit-transform-origin: center;
		transform-origin: center;
		display: block;
		height: 21px;
		position: relative;
		width: 100%;
		overflow: hidden;
	}

	.penci-lines {
		height: 2px;
		display: block;
		width: 22px;
		background-color: transparent;
		position: relative;
		transition: background 0.2s ease, opacity 0.2s ease;

		&:before {
			top: 7px;
			transition: transform 0.65s cubic-bezier(0.3, 1, 0.3, 1) 0s, background-color 0.2s ease, opacity 0.2s ease;
		}

		&:after {
			top: -7px;
			-webkit-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
			transition: transform 0.65s cubic-bezier(0.3, 1, 0.3, 1) 0.08s, background-color 0.2s ease, opacity 0.2s ease;
		}

		&:before,
		&:after {
			display: block;
			width: 100%;
			height: 2px;
			position: absolute;
			left: 0;
			content: '';
			background-color: #111;
		}
	}

	.lines-button {
		cursor: pointer;
		line-height: 0 !important;
		top: 9px;
		position: relative;
		font-size: 0 !important;
		user-select: none;
		display: block;

		&.penci-hover-effect {
			left: -30px;
			margin-top: -2px;
		}

		&:after {
			height: 2px;
			display: inline-block;
			width: 100%;
			position: absolute;
			left: 0;
			top: 0;
			content: '';
			background-color: #111;
			transition: transform 0.65s cubic-bezier(0.3, 1, 0.3, 1) 0.04s, background-color 0.2s ease, opacity 0.2s ease;
		}
	}

	&.closed .penci-menuhbg-inner {
		transition: -webkit-transform 0.33s 0s ease;
		transition: transform 0.33s 0s ease;
	}

	&:hover {
		.lines-button:after,
		.penci-lines:before,
		.penci-lines:after {
			background: $color__blue;

		}

		.lines-button:after,
		.penci-lines:before,
		.penci-lines:after {
			transform: translateX(30px);
		}
	}
}

.penci-menu-hbg-overlay {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	text-decoration: none;
	top: 0;
	left: 0;
	font-size: 1.4em;
	color: #313131;
	padding: 10px;
	height: 100%;
	right: 0;
	background: transparent;
	z-index: 100001;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);

	&:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000;
		opacity: 0.8;
		z-index: 1;
	}
}

.penci-menu-hbg {
	width: 340px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	z-index: 100003;
	overflow-y: auto;
	padding: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transform: translateX(-340px);
	-webkit-transform: translateX(-340px);
	-moz-transform: translateX(-340px);
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;


	&::-webkit-scrollbar {
		width: 0px;
		background: #f5f5f5;
	}

	&::-webkit-scrollbar-thumb {
		background-color: #ddd;
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	}

	&::-webkit-scrollbar-corner {
		background-color: #f5f5f5;
	}

	.penci-menu-hbg-inner{
		left: 0;
		right: auto;
	}

	&.penci-menu-hbg-right {
		right: 0;
		left: auto;
		transform: translateX(340px);
		-webkit-transform: translateX(340px);
		-moz-transform: translateX(340px);
	}

	&.penci-menu-hbg-left {
		#penci-close-hbg {
			left: auto;
			right: 18px;
		}
	}
}

.penci-menu-hbg-inner {
	color: #434343;
	width: 100%;
	padding: 0 20px;

	#penci-close-hbg {
		position: absolute;
		top: 20px;
		left: 18px;
		cursor: pointer;
		z-index: 1;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
		width: 20px;
		height: 20px;
		display: block;
		overflow: hidden;

		i {
			display: none;

		}

		&:before,
		&:after {
			content: '';
			height: 100%;
			width: 2px;
			backface-visibility: hidden;
			position: absolute;
			border-radius: 5px;
			background: #888;
			left: 9px;
			transition: opacity 0.2s ease, background-color 0.2s ease;
		}

		&:before {
			transform: rotate(45deg);
		}

		&:after {
			transform: rotate(-45deg);
		}

		&:hover {
			transform: rotate(180deg);
			-ms-transform: rotate(180deg);
			-webkit-transform: rotate(180deg);
			-o-transform: rotate(180deg);
			-moz-transform: rotate(180deg);

			&:before,
			&:after {
				background-color: #111;
			}
		}

	}

	.penci-block-vc,
	.widget {
		padding: 0;
		margin: 0 0 30px 0;
	}

	.widget:not(.penci-topbar__widget):last-child {
		margin-bottom: 30px;
	}

	.penci-block-vc.penci-empty-block-title .penci-block_content.penci-block_content {
		margin: 0;
	}

	.site-branding .site-title {
		line-height: 48px;
	}

	.penci-hbg-header{
		margin-bottom: 30px;
	}

	.menu-hamburger-navigation {

	}

	.penci-block-vc .penci-block__title {
		padding-top: 0;
	}

	.penci-hbg-footer {
		margin-bottom: 40px;
		margin-top: 30px;
	}

	.penci-megamenu {
		display: none;
	}

	.penci-hbg-header {
		text-align: center;
	}

	.penci-hbg-logo {
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.penci-hbg_sitetitle {
		font-weight: bold;
		font-size: 18px;
		margin-bottom: 20px;
		margin-top: -5px;
		line-height: 1.3;
	}

	.penci-hbg_desc {
		margin-top: -15px;
		line-height: 1.45;
		margin-bottom: 20px;
	}

	.menu-hamburger-navigation {
		margin-bottom: 30px;
	}


}

.penci-menu-hbg-socials {
	margin: 30px -5px 0;

	.social-media-item {
		width: 34px;
		height: 34px;
		line-height: 34px;
		margin: 0 5px 5px;
	}
}

.penci-menu-hbg .penci-block-vc .penci-block-heading {
	border-bottom: 0;
}
.penci-menu-hbg .penci-block-vc {
	background-color: transparent;
}
.penci-menu-hbg .penci-block-vc .penci-block__title,
.penci-menu-hbg-widgets .menu-hbg-title {
	text-align: center;
	font-size: 18px;
	overflow: hidden;
	padding-bottom: 0;
	margin-bottom: 14px;
	text-transform: none;
	font-family: "Mukta Vaani", sans-serif;
	color: #111;

	span {
		position: relative;

		&:before,
		&:after {
			position: absolute;
			content: "";
			width: 340px;
			height: 0;
			top: 50%;
			left: 100%;
			margin: 0 10px;
			border-top: 1px solid;
			transition: all 0.3s;
			-webkit-transition: all 0.3s;
			-moz-transition: all 0.3s;
			opacity: 0.4;
		}

		&:before {
			left: auto;
			right: 100%;
		}
	}
}



.penci-menuhbg-open {
	.penci-menu-hbg {
		transform: translateX(0) !important;
	}

	.penci-menu-hbg-overlay {
		opacity: 1;
		visibility: visible;
	}
}
