/*-----------------------Навігація---------------------*/
.nav-container {
    display: flex;
    justify-content: space-between;
    z-index: 59;
    width: 100%;
    max-width: 1920px;
	height: 55px;
	position: fixed;
	top:0px !important;
	background: #1b1b1b;
}

.logo {
    padding-top: 8px;
    margin-left: 5%;
}

.nav-wrapper {    
    margin-right: 80px;    
}

/*Навігація для десктопів*/
.nav {
    display: flex;
    height: 55px;
/*    justify-content: center;*/
}

.nav-item {
    display: flex;
}

@media (max-width: 991px) {
	.nav {
		display: none;
	}
}

.nav-item-active {
	background-color: #3d3d3d;
}

.nav-link, .nav-link:hover {
    font-size: 1rem;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
    padding-top: 13px;
    padding-left: 17px;
    padding-right: 17px;
}

.nav-link::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	transform: scaleX(0);
	background-color: white;
	transition: all 0.3s;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

.active-desktop::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	transform: scaleX(1);
	background-color: white;
}

/*Кнопка мобільного меню*/

.mobile-icon-area {
	display: none;
	position: relative;
	height: 55px;
}

@media (max-width: 991px) {
	.mobile-icon-area {
		display: block;
	}
}

.mobile-icon-block {
	position: absolute;
	top: 5px;
	right: auto;
}

.menu-icon {
	z-index: 59;
	position: relative;
	background-color: #d6d6d6;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.menu-icon-line {
	position: relative;
	width: 30px;
	height: 4px;
	background-color: #1b1b1b;
}

.menu-icon-line::before {
	position: absolute;
	left: 0;
	top: -8px;
	content: '';
	display: block;
	width: 30px;
	height: 4px;
	background-color: #1b1b1b;
	transition: transform 0.2s ease-in, top 0.2s linear 0.3s;
}

.menu-icon-line::after {
	position: absolute;
	left: 0;
	top: 8px;
	content: '';
	display: block;
	width: 30px;
	height: 4px;
	background-color: #1b1b1b;
	transition: transform 0.2s ease-in, top 0.2s linear 0.3s;
}

.menu-icon.menu-icon-active .menu-icon-line {
	background-color: transparent;
}

.menu-icon.menu-icon-active .menu-icon-line::before {
	transform: rotate(45deg);
	top: 0;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

.menu-icon.menu-icon-active .menu-icon-line::after {
	transform: rotate(-45deg);
	top: 0;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

/*// Кнопка мобільного меню*/

/*Мобільне меню*/

.mobile-nav {
/*	z-index: 109;*/
	display: block;
/*	border: solid red 1px;*/
	position: absolute;
	top: -486px;
	left: 0;
	right: 0;
	height: auto;
	background-color: #1b1b1b;
	padding: 15px 20px 30px 50px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	transition: transform 0.4s ease-out;
}

.mobile-nav--active {
	transform: translateY(100%);
}

.mobile-nav-title {
	font-size: 26px;
	color: #d18309;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.mobile-nav-list {
	list-style-type: none;
}

.mobile-nav-item {
	margin-bottom: 40px;
}

.mobile-nav-link, .mobile-nav-link:hover {
	display: block;
	width: 200px;
	color: white;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
}

.mobile-nav-link::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	transform-origin: 0%;
	transform: scaleX(0);
	background-color: white;
	transition: all 0.3s;
}

.mobile-nav-link:hover::after {
	transform: scaleX(1);
}

.active-mobile::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	transform: scaleX(1);
	background-color: white;
}