.header {
	position: sticky;
	z-index: 50;
	top: 0;
	background-color: #fff;
	padding: 12px 0;
	transition: box-shadow 0.3s;
}

.header--fixed {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	max-width: 251px;
	width: 100%;
}

.header__tel {
	margin-left: auto;
	margin-right: 32px;
}

.header__tel-icon {
	width: 20px;
	height: 20px;
	display: none;
}

.header__tel-icon svg {
	width: 20px;
	height: 20px;
	fill: #315027;
}

@media (max-width: 1200px) {
	.header__logo {
		max-width: 200px;
	}
}

@media (max-width: 750px) {
	.header {
		border-bottom: 1px solid #e2e4e9;
	}

	.header__wrap .btn1 {
		font-size: 14px;
		padding: 8px 16px;
		margin-right: 22px;
		margin-left: auto;
	}

	.header__logo {
		max-width: 97px;
		margin-right: auto;
	}

	.header__wrap {
		width: 100%;
		justify-content: flex-start;
	}

	.header__tel {
		font-size: 0;
		order: 1;
		margin: 0;
	}

	.header__tel span {
		display: none;
	}

	.header__tel-icon {
		display: flex;
	}
}