.home-wrapper {
	padding: 4px;
	display: flex;
	justify-content: start;
	gap: 4px;
	align-items: stretch;
	min-height: 100%;
	flex-basis: auto;
}

.home-left {
	width: 50%;
	background-color: var(--edirt-blue-1);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	height: 100%;
	flex-shrink: 0;
}

.home-left-wrapper {
	background-image: url("/img/home-banner.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000000;
	height: 578px;
	width: 100%;
}

.home-left-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.home-left-title {
	font-weight: 700;
	font-size: 64px;
	line-height: 60px;
	text-align: center;
	color: var(--edirt-white);
}

.home-left-subtitle {
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: var(--edirt-white);
}

.home-left .modal-divider {
	width: 100%;
	margin-left: 0;
}

.home-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 350px;
	gap: 24px;
	margin: auto;
	height: calc(100vh - 578px - 10px - 8px);
}

.home-right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.home-right-container {
	margin: 92px auto auto;
	max-width: 472px;
}

.home-right-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	color: var(--edirt-grey-1);
}

.home-right-subtitle {
	color: var(--edirt-grey-1);
}

.home-right-box {
	border: 1px solid var(--edirt-grey-4);
	background: var(--edirt-white);
	border-radius: 8px;
	padding: 36px 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 76px;
}

.home-app-badges {
	display: flex;
	justify-content: center;
	gap: 16px;
	align-items: center;
}

.home-app-badges img {
	width: 135px;
	display: block;
}

.home-nsw-logo {
	height: 65px;
}

@media screen and (max-width: 1200px)  {

	.home-right {
		width: 100%;
	}

}

@media screen and (max-width: 1000px)  {

	.home-right-container {
		margin-top: 48px;
		margin-left: 36px;
		margin-right: 36px;
	}

	.home-right-box {
		padding: 24px;
	}

}

@media screen and (max-width: 800px)  {

	.home-wrapper {
		flex-direction: column;
	}

	.home-right-container {
		margin-top: 48px;
		margin-left: 16px;
		margin-right: 16px;
	}

	.home-left {
		width: 100%;
	}
}

@media screen and (max-width: 500px)  {
	.home-right-container {
		max-width: 100%;
	}
}
