* {
	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;
}


/* header */
nav {
	height: 5rem;
	background: #fefeff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0rem calc((100vw-1300px)/2);
	margin-left: 20px;
}

.logo {
	color: #1d40a5;
	font-size: 1.5rem;
	font-weight: 700;
	font-style: normal;
	padding: 0 2 rem;
}

nav a {
	font-weight: 400;
	color: #1d40a5;
	padding-right: 1.5rem;
	font-size: 1.5rem;
}

nav a:hover {
	font-weight: 400;
	color: #FFA62B;
	padding-right: 1.5rem;
	font-size: 1.5rem;
}


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

.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: #1d1d1d;
	padding: 0rem 2rem;
}

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

.column-right h2 {
	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: 1.5;
}

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

.email-button:hover {
	background-color: #FFA62B;
	padding: 1rem 3rem;
	margin: 10px 0px;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	color: #fefeff;
	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;
}

/* footer */
.footer {
	background: #1d40a5;
}

.footer-container,
.design {
	color: #fefeff;
	font-size: 0.8rem;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	padding: 10px;
}

.footer-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}

.footer-button {
	text-decoration: underline;
}

.footer-button:hover {
	color: #FFA62B;
}

.footer-middle {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.footer-middle p {
	align-items: flex-end;

}

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

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

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

}