/* * {
	box-sizing: border-box;
	border-style: dotted;
	border-width: 1px;
	border-color: red;
} */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400');
@import url('https://fonts.googleapis.com/css?family=Cabin:400,800');

html,
body {
	/* Remove this after media queries */
	overflow-x: hidden;

	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
		'Helvetica Neue', sans-serif;

	scroll-behavior: smooth;

	height: 100%;
	width: 100%;
	margin: 0px;
}

/* CODE STARTS HERE */

/* Navigation Bar */
#navigation-bar {
	/* background-color: white; */
	background-color: rgb(245, 245, 245);

	height: 10%;
	width: 100%;
	max-height: 100px;
	min-height: 70px;

	position: fixed;

	display: flex;
	align-items: center;
	justify-content: space-between;

	overflow: hidden;
}

#navigation-logo {
	display: flex;
	align-items: center;
	float: left;
	padding-left: 35px;
}

#navigation-logo img {
	height: 45px;
}

#navigation-logo span {
	margin: 0px 10px 0px 10px;
	text-transform: uppercase;
	color: #3c3c3c;
	font-weight: bolder;
	font-stretch: expanded;
	font-size: 20px;
	letter-spacing: 1px;
}

#navigation-links {
	display: flex;
	align-items: center;
	float: right;
	padding-right: 35px;
}

#navigation-links a {
	padding: 38px 24px 38px 24px;
	text-decoration: none;
	font-size: 18px;
	color: #3c3c3c;
	font-weight: 600;
	transition: 0.25s;
}

#navigation-links a:last-child {
	padding: 39px 24px 39px 24px;
}

#navigation-links a:hover {
	color: #0fadd4;
}

/* CONTENT STARTS HERE */
#home {
	background: url("resources/home.png");
	background-size: cover;

	width: 100%;
	height: 100%;
}

#home-content {
	text-transform: uppercase;
	color: white;

	background: rgba(0, 182, 208, 0.85);
	background: -webkit-linear-gradient(top left, rgba(0, 182, 208, 0.85), rgba(41, 171, 240, 0.85));
	background: -moz-linear-gradient(top left, rgba(0, 182, 208, 0.85), rgba(41, 171, 240, 0.85));
	background: linear-gradient(top left, rgba(0, 182, 208, 0.85), rgba(41, 171, 240, 0.85));

	height: 100%;
	width: 40%;

	display: flex;
	align-items: center;
	justify-content: center;
}

#home-content div {
	padding: 0px 7.5% 0px 7.5%;
	line-height: 1.33;
}

#home-content h1 {
	font-size: 4.8vw;
	font-weight: bolder;
	letter-spacing: 4px;

	padding-bottom: 25px;

	border-bottom: solid;
	border-width: 6px;
	border-color: #fad146;
}

#home-content h2 {
	font-size: 2.8vw;
	font-weight: bolder;
	letter-spacing: 2px;
	padding-top: 25px;
}

#home-content h3 {
	font-size: 2.0vw;
	letter-spacing: 8px;
	color: #e9e9e9;
	font-weight: 450;
}

/* About Section */
#about {
	height: 100%;
	width: 100%;
	color: #000000;

	display: flex;
	align-items: center;
	justify-content: center;
}

#about h1 {
	font-size: 38px;
	margin-bottom: 20px;
	font-weight: 700;
}

#about p {
	font-size: 18px;
	/* font-size: 2vmin; */
	margin-right: 40px;
	width: 610px;
	/* width: 80%; */
	line-height: 1.50;
	padding-bottom: 20px;
}

#about img {
	width: 400px;
}

/* About II Section */
#about-two {
	background-color: lightgray;
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

#about-content-top div,
#about-content-bottom div {
	width: 500px;
}

#about-content-top {
	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 40px;
}

#about-content-top h2,
#about-content-bottom h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1b597c;
}

#about-content-top h3,
#about-content-bottom h3 {
	font-size: 16px;
	font-weight: 300;
	margin: 10px 0px 15px 0px;
}

#about-content-top p,
#about-content-bottom p {
	font-size: 16px;
	line-height: 1.50;
}

#about-content-top img {
	margin-left: 40px;
	width: 500px;
}

#about-content-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
}

#about-content-bottom img {
	margin-right: 40px;
	width: 500px;
}

/* Prototype Section */
#prototype {
	background-color: #0fadd4;
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* Team Section */
#team {
	background-color: rgb(224, 224, 224);
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#team h1 {
	font-size: 38px;
	margin-bottom: 100px;
	font-weight: 700;
	color: #1b597c;
}

.flexbox {
	display: flex;
	align-items: center;
	justify-content: center;
}

.subteam {
	width: 25%;
	max-height: 800px;
	overflow: hidden;
	height: 210px;
}

.subteam h2 {
	font-size: 30px;
	margin-bottom: 20px;
	font-weight: 700;
	color: #1b597c;
}

.subteam p {
	font-size: 16px;
	line-height: 1.50;
	margin-bottom: 10px;
}

.subteam:nth-child(2) {
	margin: 0px 50px 0px 50px;
}

/* Team II Section */
#team-two {
	background-color: white;

	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#team-two h1 {
	font-size: 38px;
	margin-bottom: 100px;
	font-weight: 700;
	color: #1b597c;
}

#leadership {
	display: grid;
	/* grid-template-columns: repeat(auto, minmax(300px, 1fr)); */
	grid-template-columns: auto auto auto;
	grid-gap: 1em;
}

#team-two img {
	height: 150px;
	width: 150px;
}

/* Sponsors Section */
#sponsors {
	background-color: #344976;
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#sponsors img {
	height: 600px;
}

#sponsors h1 {
	margin: 5% 0px 50px 0px;
	color: white;
	font-size: 38px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
	#home-content {
		width: 100%;
	}

	#home-content h1 {
		font-size: 12.8vw;
	}

	#home-content h2 {
		font-size: 5.6vw;
	}

	#home-content h3 {
		font-size: 4.0vw;
	}

	#navigation-bar {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#navigation-logo {
		padding: 0px;
	}

	#navigation-logo img {
		display: none;
	}

	#navigation-links {
		display: none;
	}
}
