.home-main-section {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-grow: 1
}

.home-main-section .img-wrapper {
	flex-grow: 1;
	flex-direction: column;
	display: flex;
	align-items: stretch;
	justify-content: flex-end
}

.home-main-section .lady-image {
	background-image: url(images/landing-page-girl.png);
	flex-grow: 1;
	max-height: 70vh;
	min-width: 30vw;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom left
}

.home-main-section .call-to-action {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 1rem;
	align-self: center
}

@media (max-width: 900px) {
	.home-main-section .img-wrapper {
		display: none
	}
	.home-main-section {
		justify-content: center
	}
}

.home-page-circle-1 {
	position: absolute;
	width: 25vw;
	height: 25vw;
	border-radius: 50%;
	background-color: rgb(188, 58, 128, .1);
	bottom: 5vw;
	left: 5vw;
	z-index: -1
}

.home-page-circle-2 {
	position: absolute;
	width: 25vw;
	height: 25vw;
	border-radius: 50%;
	background-color: rgb(52, 87, 178, .1);
	top: 15vh;
	left: 30vw;
	z-index: -1
}

.home-page-circle-3 {
	position: absolute;
	width: 25vw;
	height: 25vw;
	border-radius: 50%;
	background-color: rgb(52, 87, 178, .1);
	bottom: 5vh;
	left: 75vw;
	z-index: -1;
}