/* CORE STYLES */
:root {
	--primary-color: rgb(146, 134, 118);
	--overlay-color: rgba(0, 0, 0, 0.75);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	line-height: 1.4;
	background-color: #323232;
  min-width: 172px;
}

.container {
	max-width: 960px;
	margin: auto;
	overflow: hidden;
	padding: 0 3rem;
}

.showcase {
	background: var(--primary-color);
	color: rgb(52, 32, 32);
	height: 100vh;
	position: relative;
}

.showcase:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.showcase .showcase-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}

.showcase h1 {
	font-size: 64px;
}

.showcase p {
	font-size: 1.3rem;
}

img {
	width: 100vw;
	margin: 0;
	padding: 0;
}

.navbar {
	width: 100vw;
	min-height: 60px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #979797;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 90px;
  padding-bottom: 7px;
  bottom: 0;
  background-color: #282828;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  position: fixed;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: #282828;
}

.branding h1 {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

/* .motto {
  color: #FF9F0A;
  text-align: center;
  margin: 0;
  padding: 0;
  width: fit-content;
} */

.col {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  align-items: start;
  justify-content: start;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .img-title {
  text-align: center;
  color: #FF9F0A;
  font-size: 20px;
  padding-top: 50px;
  padding-bottom: 10px;
}

.img-subtitle {
  text-align: center;
  color: #FF9F0A;
  font-size: 18px;
  padding-top: 50px;
  padding-bottom: 10px;
} */

.dual {
  display: flex;
  align-items: center;
  justify-content: center;

}

.dual img {
  width: 50vw;
  
}

@media (max-width: 252px) {
  .motto {
    font-size: 12px;
  }
  .branding h1 {
    font-size: 18px;
  }
  .footer {
    font-size: 12px;
  }
}