#freeLessonContent {
	display: flex;
	max-width: 2000px;
}

#freeLessonContent > img{
	width: 50%;
	max-width: 600px;
	border-radius: 32px;
	object-fit: cover;
	min-width: 250px;
	height: auto;
}

#freeLessonContent > #freeLessonText {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 24px;
	width: 50%;
}

#freeLessonContent > #freeLessonText > h3 {
	padding: 0;
	margin: 0;
}

.freeLessonHighlight {
	text-transform: uppercase;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-style: italic;
}

@media screen and (max-width: 845px) {
	#freeLessonContent {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#freeLessonContent > img{
		width: 70%;
	}

	#freeLessonContent > #freeLessonText {
		width: 80%;
		margin-top: 24px;
		display: flex;
        flex-direction: column;
        align-items: center;
	}
}