/*********************************
*                                *
*        WHAT TO EXPECT          *
*                                *
**********************************/

.what-to-expect {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
	gap: 30px;
	width: 100%;
	margin-bottom: 20px;
}

.what-to-expect-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 50px;
}

.what-to-expect-img img{
	min-height: 280px;
	width: auto;
	border-radius: 50px 50px 50px 0;
}

.what-to-expect-text{
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 200px;
	padding-top: 20px;
}

.what-to-expect-text p{
	font-weight: 200;
	font-size: 19px;
	line-height: 30px;
}

@media (max-width: 640px) {
	
	.what-to-expect {
		padding: 30px 0;
	}
	
	.what-to-expect-content {
		flex-direction: column;
	}
	
	.what-to-expect-img img{
		width: 100%;
	}
	
	.what-to-expect-text {
		padding: 0 30px;
	}

}