@media screen and (max-width: 1130px) {
	.header {
		position: relative;
		justify-content: center;


		& div {
			position: absolute;
			width: 70%;

			z-index: 1;
		}

		& img {
			position: absolute;
			width: auto;
			height: 100%;
			z-index: 0;
			right: 0;

			object-fit: cover;

			opacity: .5;
		}
	}
}

@media screen and (max-width: 768px) {
	.header {
		padding: 2rem;
		& div {

		}

		& img {
			display: none;
		}
	}
}
