.region-header {
	background: rgba(255,255,255, 1);
}

.region-header .container {
	width: calc(100% - 2 * var(--theme--gutter));
	max-width: var(--theme--alignmax);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	position: relative;
}

.region-header .container > :nth-child(1) {
	order: 2;
}

.region-header .container > :nth-child(2) {
	order: 1;
}

.region-header .container > :nth-child(4) {
	position: absolute;
	bottom: 40px;
	right: 0;
	z-index: 1;
}

@media (min-width: 768px) {
	.region-header .container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0 var(--theme--gap);
	}
	
	.region-header .container > :nth-child(1) {
		order: 1;
	}
	.region-header .container > :nth-child(2) {
		order: 2;
	}
	.region-header .container > :nth-child(3) {
		order: 3;
		width: 100%;
	}
	.region-header .container > :nth-child(4) {
		order: 4;
		position: static;
	}
}

@media (min-width: 992px) {
	.region-header .container {
		flex-wrap: wrap;
	}
}