/* Минималистичный стиль */
.header--minimal {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	height: 56px;
}

.header--minimal .container {
	padding: 0 24px;
	height: 100%;
}

.header--minimal .logo img {
	max-width: 240px;
	max-height: 90px;
}

.header--minimal .nav a {
	font-weight: 300;
	color: #111;
	padding: 8px 0;
}

.header--minimal .nav a:hover {
	color: #1a73e8;
}

html.dark .header--minimal {
	background: #1a1a1a;
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

html.dark .header--minimal .nav a {
	color: #fff;
}

html.dark .header--minimal .nav a:hover {
	color: #1a73e8;
}

/* Кнопка гамбургера для минималистичного стиля */
.header--minimal .mobile-menu-toggle .hamburger-line {
	background-color: #121212 !important;
}

html.dark .header--minimal .mobile-menu-toggle .hamburger-line {
	background-color: #fff !important;
}

.header--minimal .mobile-menu-toggle.active .hamburger-line:nth-child(1),
.header--minimal .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	background-color: #121212 !important;
}

html.dark .header--minimal .mobile-menu-toggle.active .hamburger-line:nth-child(1),
html.dark .header--minimal .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	background-color: #fff !important;
}

.header--minimal .btn--custom {
	text-transform: none;
	font-weight: 400;
}

@media (max-width: 768px) {
	.header--minimal {
		height: 56px;
	}
}

