* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Lato';
}

/* wrapper */

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100svh;
}


/* main */
.hero {
	background: #DAEFF6;
}

.hero-container {
	display: flex;
}

.column-left,
.column-right {
	width: 50%;
}

.column-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #2B2B2B;
	padding: 0rem 2rem;
}

.column-right h1 {
	margin-bottom: 1rem;
	font-size: 3rem;
	line-height: 1;
	color: #52bad5;
}

.column-right h2 {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2rem;
	color: #FFD000;
}

.column-right h3 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2rem;
}

.column-right p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 0.9rem;
}

.email-button {
	padding: 1rem 3rem;
	margin: 10px 0px;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	color: #fefeff;
	background: #52bad5;
	border-radius: 20px;
}

.email-button:hover {
	background-color: #FFD000;
	padding: 1rem 3rem;
	margin: 10px 0px;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	color: #2B2B2B;
	border-radius: 20px;
}

.column-left {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0rem 0rem;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

	.footer-container,
	.hero-container {
		flex-direction: column;
	}

	.column-left,
	.column-right {
		width: auto;
	}

}