.homepage-hero {
	background-color: #572582;
	border-radius: 15px;
	position: relative;
	min-height: 518px;
	padding: 3rem;

	@media screen and (max-width: 768px) {
		padding: 2rem;
		height: auto;
	}

	.homepage-hero__content {
		text-align: left;
		max-width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: space-around;

		@media screen and (max-width: 768px) {
			max-width: 100%;
		}


		.homepage-hero__title {
			color: #fff;
			font-size: 60px;
			line-height: 1;
			margin-bottom: 1rem;
			font-family: Newsreader, serif;

			@media screen and (max-width: 768px) {
				font-size: 40px;
				
			}
		}

		.homepage-hero__text {
			color: #fff;
			font-size: 1rem;
			line-height: 1.5;
			margin-bottom: 1rem;
		}

		.homepage-hero__buttons {
			display: flex;
			flex-direction: row;
			justify-content: flex-start;

			@media screen and (max-width: 768px) {
				flex-direction: column;
				align-items: flex-start;
			}

			.homepage-hero__button {
				font-size: 1.125rem;
				font-weight: 600;
				border: solid 2px #B3B7EE;
				margin-right: 1rem;
				color: #572582;
				padding: 0.5rem 1.5rem;
				border-radius: 100px;
				text-decoration: none;
				cursor: pointer;

				@media screen and (max-width: 768px) {
					margin-bottom: 1rem;
					
				}
			}

			.homepage-hero__button:first-child {
				margin-right: 1rem;
				color: #572582;
				background-color: #B3B7EE;
			}

			.homepage-hero__button:last-child {
				color: #B3B7EE;
				background-color: transparent;
			}
		}
	}

	.homepage-hero__image {
		border-radius: 15px;
		position: absolute;
		top: -13px;
		bottom: -13px;
		right: 20px;
		left: 60%;
		width: 35%;
		height: 544px;

		img {
			border-radius: 15px;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		@media screen and (max-width: 768px) {
			display: none;
		}
	}
}