@import "/style/variables.css";
@import "/style/header/burger-menu.css";

.header {
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: space-between;
	width: 85%;
	max-width: var(--main-max-width);
	height: 55px;
	z-index: 1;
	background-color: #fff;
	padding: 7px 15px 7px 0;
	border-radius: 12px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header__logo {
	z-index: 2;
	margin-left: 20px;
}

.header__right {
	margin-right: 7px;
}

.header__button_space {
	margin-right: 50px;
}

.header_display_on-mobile {
	display: none;
	background-color: #fff;
}

.header__svg {
	position: absolute;
	top: 0;
	left: -100px;
	width: calc(100% + 380px);
}

.header__svg_content-ahead {
	position: relative;
}

@media (max-width: 991px) {
	.back_gradient {
		width: 250% !important;
		height: 50% !important;
	}

	.header_hide_on-mobile {
		display: none;
	}

	.header_display_on-mobile {
		display: flex;
	}

	.header__right {
		margin-right: 15px;
	}
}

@media (min-width: 550px) and (max-width: 991px) {
	.back_gradient {
		top: -150px !important;
	}
}

@media (min-width: 991px) {
	.join-hiring {
		display: none;
	}
}
