/* base css */
* {
	margin: 0;
	padding: 0;
	color: #221909;
	font-family: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}
/* end base css */

/* main */
.main {
	background-color: #e5e5e5;
}
/* end main */

/* top fold */
.top-fold {
	height: 100vh;
	display: grid;
	grid-template-rows: 1fr 1fr 1fr;
	padding-left: 7%;
	padding-right: 7%;
}

.logo {
	padding-top: 30px;
}

.intro {
	display: flex;
	align-items: center;
	width: 75%;
}

.intro p {
	font-size: 2.5rem;
	line-height: 3rem;
}

div.top-footer {
	display: flex;
	align-items: end;
	padding-bottom: 30px;
}

.locations {
	margin-right: 20px;
	padding-right: 20px	;
	border-right: 2px solid #221909;
}
/* end top fold */

/* bottom fold */
.bottom-fold {
	background-color: #E0DBD2;
	height: 100vh;
	display: grid;
	grid-template-rows: 1fr 1fr;
	padding-left: 7%;
	padding-right: 7%;
}

.contact-info {
	padding-top: 30px;
}

.contact-info h6 {
	font-size: 14px;
	margin-bottom: 15px;
}

.contact-info ul li {
	list-style: none;
}

.bottom-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	padding-bottom: 30px;
}

div.copyright {
	display: flex;
	justify-content: flex-end;
}

span.copyright {
	margin-right: 20px;
}

.watermark img {
	width: 100%;
  max-width: 577px;
  height: auto;
}
/* end bottom fold */

/* mobile view */
@media only screen and (max-width: 960px) {
  .bottom-footer {
		grid-template-columns: 1fr;
	}

	div.copyright {
		justify-content: normal;
	}

	.intro {
		width: 100%;
  }

	.intro p {
		font-size: 1.5rem;
		line-height: 2rem;
	}

}
/* end mobile view */