.header {
	display: flex;
	justify-content: center;
	height: 128px;
	padding: 0 16px;
	background-color: $color-black-100;
	border-bottom: 1px solid $color-black-200;
	box-sizing: border-box;

	@include tablet {
		height: 48px;
		background-color: white;
	}
}

.header-container {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	align-self: center;
	width: 100%;
	max-width: 1280px;

	@include tablet {
		max-width: 768px;
	}

	@include mobile {
		max-width: 360px;
	}
}

.header-company-group {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 56px;

	@include tablet {
		gap: 22px;
	}
}

.header-company-logo {
	display: block;
	width: 100%;
	max-width: 115px;

	@include tablet {
		max-width: 76px;
	}

	img {
		display: block;
		width: 100%;
		pointer-events: none;
	}
}

.header-company-desc {
	max-width: 304px;
	font-size: 15px;
	font-weight: 300;
	line-height: 17px;

	@include tablet {
		max-width: 247px;
		font-size: 12px;
		line-height: 13px;
	}

	@include mobile {
		display: none;
	}
}

.header-form-group {
	display: grid;
	grid-template-columns: 192px 1fr;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 348px;
	margin-left: 37px;

	@include tablet {
		display: none;
	}
}

.header-company-contact {
	display: flex;
	flex-flow: column;
	margin-left: auto;
	text-align: right;
}

.header-company-contact-link {
	font-weight: 300;
	letter-spacing: 0.02em;

	sub {
		font-size: 16px;
		line-height: 19px;

		@include mobile {
			font-size: 12px;
			line-height: 14px;
		}
	}

	span {
		font-size: 28px;
		line-height: 33px;

		@include mobile {
			font-size: 15px;
			line-height: 18px;
		}
	}
}

.header-company-contact-desc {
	font-size: 12px;
	font-weight: 300;
	line-height: 14px;
	letter-spacing: 0.08em;

	@include tablet {
		display: none;
	}
}

.header-hamburger-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-left: 56px;
	border-radius: 50%;
	background-color: white;
	border: 2px solid $color-black-200;
	box-sizing: border-box;

	@include desktop {
		display: none;
	}

	@include mobile {
		margin-left: 16px;
	}
}

.header-hamburger-btn__line {
	position: relative;
	width: 17px;
	height: 2px;
	background-color: $color-black-500;

	&::before,
	&::after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		height: 2px;
		background-color: $color-black-500;
	}

	&::before {
		top: calc(-2px - 3px);
	}

	&::after {
		bottom: calc(-2px - 3px);
	}
}
