#header2 {
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    height: var(--header-2-height);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 30;
	transition: 0.3s;
	background: white;
	--border-color: #dbdbdb;	
}

.admin-bar #header2 {
	top: 32px;
}
.scrolled.to-bottom #header2 {
	top: calc( var(--header-2-height) * -1.5 ) !important;
}

#header2 .company {
	background-color: var(--dacha-green-dark);
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
}

@media all and (max-width: 768px) {
	#header2 .company {
		display: none;
	}
}

#header2 .company .menu > ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media all and (max-width: 1024px) {
	#header2 .company .menu > ul {
		height: 32px;
	}	
}

#header2 .company .menu > ul a {
    font-size: 13px;
    line-height: 20px;
	color: white;
}

@media all and (max-width: 1024px) {
	#header2 .company .menu > ul a {
		font-size: 12px;
		line-height: 18px;
	}	
}

#header2 .company .menu > ul > li:hover > a {
	opacity: 0.8;
}

#header2 .main {
	/* overflow: hidden; */
	border-bottom: 1px solid var(--border-color);
}

@media all and (max-width: 768px) {
	#header2 .main:after {
		content: '';
		background-color: #f4f4f4;
		width: 20%;
		height: 100%;
		right: 0;
		top: 0;
		position: absolute;
		z-index: -1;
		display: none;
	}
}

#header2 .main .container {
    display: flex;
}

#header2 .main .mobile-switch {
    display: none;
	align-self: flex-start;
	margin-top: 16px;
	margin-right: 16px;
	flex-shrink: 0;
}

@media all and (max-width: 768px) {
	#header2 .main .mobile-switch {
		display: block;
	}
}

#header2 .main .logo {
	flex-shrink: 0;
	height: 120px;
	position: relative;
	z-index: 5;
	background-color: var(--dacha-green);
	display: flex;
	align-items: center;
	justify-content: center;
}

#header2 .main .logo:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	height: 8px;
	width: 100%;
	background-color: var(--dacha-green);
	border-radius: 0 0 4px 4px;
}

#header2 .main .logo img {
    height: 120px;
    display: block;
	object-fit: cover;
}

@media all and (max-width: 1024px) {
	#header2 .main .logo {
		height: 104px;
	}
	#header2 .main .logo img {
		height: 80px;
		object-fit: contain;
	}	
}

@media all and (max-width: 768px) {
	#header2 .main .logo {
		height: 136px;
	}	
}

#header2 .main .content {
    display: flex;
    flex-direction: column;
}

#header2 .main .content .contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
	height: 100%;
    padding-left: 32px;
}

@media all and (max-width: 768px) {
	#header2 .main .content .contacts {
		flex-direction: column;
		padding: 8px 0 8px 24px;
		justify-content: center;
		align-items: flex-start;
	}
}

#header2 .main .content .communication {
    display: flex;
	align-items: center;
}

@media all and (max-width: 768px) {
	#header2 .main .content .contacts > div + div {
		margin-top: 8px;
	}
}

#header2 .main .content .communication .icon {
	flex-shrink: 0;
	margin-right: 8px;
}

@media all and (max-width: 768px) {
	#header2 .main .content .communication .icon {
		order: 3;
		margin-left: 8px;
		margin-right: 0;
	}
}

#header2 .main .content .communication .icon,
#header2 .main .content .communication .icon a {
	color: var(--color);
	font-size: 20px;
	transition: all 300ms ease-in-out;
}

@media all and (max-width: 1024px) {
	#header2 .main .content .communication .icon,
	#header2 .main .content .communication .icon a {
		font-size: 16px;
	}
}

#header2 .main .content .contacts .communication.phone a.value {
	font-weight: 700;
	font-size: 18px;
	transition: all 300ms ease-in-out;
}

@media all and (max-width: 1024px) {
	#header2 .main .content .contacts .communication.phone a.value {
		font-size: 16px;
	}
}

#header2 .main .content .contacts .communication.phone a.value:hover {
	color: var(--dacha-green);
}

#header2 .main .content .contacts .communication.phone .icon:hover {
	transform: scale(1.2);
}

#header2 .main .content .contacts .email .value,
#header2 .main .content .contacts .worktime {
	font-size: 13px;
}

#header2 .main .content .contacts .email a.value {
	border-bottom: 1px solid transparent;
	transition: all 300ms ease-in-out;
}

#header2 .main .content .contacts .email a.value:hover {
	border-bottom-color: var(--dacha-black);
}

#header2 .main .content .contacts .email .icon,
#header2 .main .content .contacts .worktime .icon {
	border-radius: 50%;
	background-color: #f4f4f4;	
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media all and (max-width: 1024px) {
	#header2 .main .content .contacts .email .icon,
	#header2 .main .content .contacts .worktime .icon {
		width: 24px;
		height: 24px;
	}
}

@media all and (max-width: 1024px) {
	#header2 .main .content .contacts .email {
		display: none;
	}
}

@media all and (max-width: 768px) {
	#header2 .main .content .contacts .worktime .icon {
		display: none;
	}
	#header2 .main .content .contacts .worktime .value {
		
	}		
}

#header2 .main .content .contacts .write-us {
	flex-shrink: 0;
}

#header2 .main .content .services {
    margin-top: auto;
    background: #f4f4f4;    
	position: relative;
	border-top: 1px solid var(--border-color);
}

@media all and (max-width: 768px) {
	#header2 .main .content .services {
		display: none;
	}
}

#header2 .main .content .services:before,
#header2 .main .content .services:after {
	content: '';
	position: absolute;
	display: block;
	width: 9999px;
	height: calc(100% + 1px);
	background-color: #f4f4f4;
	top: -1px;
	z-index: 3;
	border-top: 1px solid var(--border-color);
}

#header2 .main .content .services:before {
	right: 100%;
}

#header2 .main .content .services:after {
	left: 100%;	
}

#header2 .main .content .services .menu > ul {
    display: flex;
}

#header2 .main .content .services .menu > ul > li {
    text-align: center;
	border-left: 1px solid var(--border-color);
}

#header2 .main .content .services .menu > ul > li:not(:last-child) {
	border-right: 1px solid white;
}

#header2 .main .content .services .menu > ul > li > a {
    padding: 8px;
    font-size: 14px;
    line-height: 20px;
	font-weight: 700;
	color: #595959;
    display: flex;
    justify-content: center;
	align-items: center;
	height: 100%;
}

@media all and (max-width: 1024px) {
	#header2 .main .content .services .menu > ul > li > a {		
		font-size: 12px;
		line-height: 18px;
	}
}

#header2 .main .content .services .menu > ul > li:hover {
	background-color: var(--dacha-green);
	border-right-color: var(--dacha-green);
}

#header2 .main .content .services .menu > ul > li:hover > a {
	color: white;
}