.topHeader {
	min-height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 16px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.logo {
	display: flex;
	flex: 400px 1 1;
	align-items: center;
	justify-content: flex-start;
}

.logo__img {
	margin-right: 15px;
	max-width: 120px;
	max-height: 110px;
	object-fit: scale-down;
}
.logo__name {
	font-size: 22px;
	color: var(--header-tx-color);
	margin-top: 0;
	font-weight: 600;
}
.logo__description {
	margin-top: 5px;
	font-size: 13px;
	color: #888;
}

.topHeader__contact {
	display: flex;
	flex: 700px 0 1;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-end;
}

.hTel {
	font-size: 18px;
	white-space: nowrap;
	font-weight: 600;
}

.header-contact {
	display: flex;
	align-items: center;
}

.header-contact__place1,
.header-contact__place2 {
	font-weight: 600;
	max-width: 450px;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	color: inherit;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.hTel {
	color: var(--header-tx-color);
}

.hTel:before {
	content: '\260e';
	font-family: icomoon;
	font-size: 1.1em;
	margin-right: 0.7em;
	color: var(--accent-color);
}

.hAddress:before {
	content: '\1f4cd';
	font-family: icomoon;
	font-size: 24px;
	margin-right: 0.7em;
	color: var(--accent-color);
}

.hEmail {
	font-size: 18px;
}

.hEmail:before {
	content: '\2709';
	margin-right: 0.7em;
	font-family: icomoon;
	color: var(--accent-color);
}



@media (max-width: 980px){
	.topHeader.topHeader {
		padding-right: 75px;
		min-height: 110px;
		flex-wrap: wrap;
	}

	.topHeader__logo {
		min-width: 280px;
	}

	.topHeader__contact {
		justify-content: flex-start;
		flex: auto 0 1;
		max-width: 100%;
	}
	.header-contact__place1,
	.header-contact__place2 {
		max-width: 100%;
	}
	.hAddress > span {
		white-space: normal;
	}
}

