.navbar {
	/* position: fixed; */
	z-index: 1001;
	display: none;
}



.navbar__wrap .menu {
	display: none;
}

.hamb {
	display: flex;
	align-items: center;
}

.active .bar {
	background-color: #385680;
}

.hamb__field {
	z-index: 10000;
	padding: 10px 24px 10px 20px;
	cursor: pointer;
}

.bar {
	display: block;
	width: 33px;
	border-radius: 20px;
	height: 3px;
	margin: 6px 0;
	background-color: #fff;
	transition: 0.2s;
	position: relative;
	z-index: 1000;
	align-items: flex-start;
}

.bar:nth-child(2) {
	width: 24px;
}

.popup {
	position: fixed;
	top: 0px;
	right: -100%;
	width: 300px;
	height: 100%;
	background-color: white;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: flex;
	transition: 0.3s;
}

.popup.open {
	right: 0;
}

.popup .menu {
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	padding: 50px 0;
	overflow: auto;
	gap: 16px;
}

.popup .menu>li {
	width: 100%;
}

.popup .menu>li>a {
	color: #385680;
	width: 100%;
	display: flex;
	justify-content: center;
	/* padding: 20px 0; */
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 180%;
	letter-spacing: 0.75px;
	text-transform: uppercase;
}

.hamb__field.active .bar:nth-child(2) {
	opacity: 0;
}

.hamb__field.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(42deg);
}

.hamb__field.active .bar:nth-child(3) {
	transform: translateY(-10px) rotate(-42deg);
}

body.noscroll {
	overflow: hidden;
}


@media screen and (max-width : 768px) {
	.container {
		max-width: 100%;
		padding: 20px;
	}

	.offer__nav_menu {
		display: none;
	}

	.offer__nav_menu_itemss {}

	.offer__nav_menu_item_social {
		display: flex;
		gap: 16px;
	}

	.offer__nav_social {
		display: none;
	}

	.navbar {
		display: block;
		right: 0;
	}

	.offer__nav_logo_burger {
		margin: 20px auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.offer__nav_logo_burger img{
		max-width: 120px;
	}

	.popup {
		width: 360px;

	}
}

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

	.popup {
		width: 100%;
	}

}