@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	padding: 0;
	margin: 0;
}

#header {
	position: sticky;
	top: 0;
	height: 50px;
	width: 100%;
	background: white;
}

#header video {
    	position: absolute;
    	top: 50%;
    	left: 50%;
    	min-width: 100%;
    	max-height: 100%;
    	width: auto;
    	height: auto;
    	z-index: -4;
    	transform: translate(-50%, -50%);
}

#firstpagelogo {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 100vw; 
	height: calc(100vh - 60px);
	text-align: center;
}

#firstpagelogo img {
	width: 200px;
	z-index: 4;
}

#firstpagelogo h1 {
	width: 100vw;
	font-family: "urbanist", sans-serif;
	font-size: 30px;
	font-weight: 900;
	color: white;
	margin-bottom: 0px;
}

#firstpagelogo h2 {
	width: 100vw;
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: white;
	margin-top: 0px;
	margin-bottom: 0px;
}

#nav {
	float: right;
	height: 60px;
	margin-right: 10px;
}

#nav ul li {
	list-style-type: none;
	float: left;
}

#nav ul li a {
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 900;
	color: black;
}

#nav ul li a:hover {
	background-color: lightgray;
}

#nav ul li a img {
	width: 15px;
}

.chosen {
	border-bottom-style: solid;
	border-bottom-width: 5px;
	border-bottom-color: black;
}

#dropdown {
	width: 100%;
	display: none;
	height: 50px;
	position: relative;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: black;
}

#dropdown input[type="checkbox"]{
	opacity: 0;
	display: none;
}

#dropdownhead {
	width: 100%;
	height: 60px;
}

#dropdownlogo {
	width: 50px;
	float: left;
}

#dropdownlogo img {
	height: 35px;
	margin-top: 10px;
	margin-left: 9px;
	display: block;
}

#dropdowntext {
	text-align: left;
	float: left;
	height: 50px;
	margin: 0;
	margin-top: 5px;
	padding: 0;
	margin-bottom: -5px;
}

#dropdowntext a {
	text-decoration: none;
	padding: 0;
	margin: 0;
}

#dropdowntext h1 {
	font-family: "urbanist", sans-serif;
	font-weight: 800;
	font-size: 25px;
	color: black;
	padding-top: 5px;
	padding-bottom: 0;
	margin: 0;
}

#dropdownhead {
	width: 60px;
	float: right;
	height: 50px;
	margin: 0px;
	padding: 0px;
}


#stripbox {
	width: 50%;
	float: right;
	height: 50px;
	padding-top: 18px;
}


.strip {
	height: 3px;
	width: 15px;
	background-color: black;
	margin-right: 0px;
	margin-bottom: 3px;
	padding-right: 0px;
}

#dropdown ul {
	width: 100%;
	margin-top: 0;
	padding: 0;
	padding-top: 50px;
	box-sizing: border-box;
	overflow: hidden;
	display: none;
}

#dropdown ul li {
	text-align: left;
	height: 30px;
	width: 100%;
	list-style-type: none;
	display: none;
	float: none;
	margin-bottom: 15px;
	padding-left: 10px;
	padding-right: 10px;
}

#dropdown ul li a {
	text-decoration: none;
	font-family: "urbanist", sans-serif;
	font-size: 30px;
	font-weight: 400;
	margin-top: 25px;
	color: black;
	margin: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
}

#dropdown ul li a:hover {
	background-color: #ddd;
}

#dropdown ul li a img {
	width: 20px;
}

#dropdown ul li h2 {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 900;
	color: black;
	margin-bottom: 0px;
}

#dropdown ul li h3 {
	font-family: "urbanist", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: black;
	margin-top: 0px;
}

#dropdown ul li h4 {
	font-family: "urbanist", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: black;
	margin-top: 20px;
}

#dropdown input[type="checkbox"]:checked ~ ul li {
	display: block;
}

#dropdown input[type="checkbox"]:checked ~ ul {
	display: block;
	background: white;
	height: 100vh;
}

.content {
	padding-left: 15px;
	padding-right: 15px;
	paddin-top: 0px;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}

.section {
	width: 100%;
	margin-top: 40px;
}

.topic {
	margin: 0px;
	padding: 0;
	font-family: "urbanist", sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: black;
}

.topic a {
	text-decoration: none;
	color: black;
	padding-bottom: 0px;
}

.topic a:hover {
	border-bottom: solid 3px black;
}

.workgrid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 10px;
	margin-top: 20px;
}

.workgrid a {
	text-decoration: none;
}

.workgrid a:hover {
	text-decoration: underline;
	text-decoration-color: #000;
}

.workgrid a img {
	width: 100%;
	margin-bottom: 10px;
}

.workgrid a h3 {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 900;
	color: black;
	margin: 0;
	padding: 0;
}

.workgrid a h4 {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: black;
	margin: 0;
	padding: 0;
}

.workgrid a h5 {
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: black;
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0;
}

.workgrid a h6 {
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: black;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 0;
}

.plaintext {
	font-family: "urbanist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: black;
	margin-top: 0;
	margin-bottom: 00px;
	padding: 0;
}

#split2 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 30px;
}

#split2 h2 {
	margin-bottom: 10px;
}

table td {
	font-family: "urbanist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: black;
	margin-top: 0;
	margin-bottom: 00px;
	padding: 0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: black;
	padding-bottom: 5px;
}

.button {
	padding-left: 7px;
	padding-right: 7px;
	padding-top: 3px;
	padding-bottom: 3px;
	font-family: "urbanist", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: black;
	margin-top: 0;
	margin-bottom: 00px;
	background-color: lightgray;
	text-decoration: none;
	border-radius: 3px;
}

.button:hover {
	background-color: black;
	color: white;
}

#team h3 {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: black;	
	margin-top: 30px;
}

.teamgrid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}

.person a {
	text-decoration: none;
}

.person a:hover {
	text-decoration: underline;
	text-decoration-color: black;
}

.person img {
	width: 100%;
}

.person h5 {
	font-family: "urbanist", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: black;
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0;
}

.person h4 {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 900;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.wrap {
	display: flex;
	width: 100%;
	overflow: visible;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

.goback {
	margin-bottom: 20px;
	z-index: 5;
	display: none;
}

.goback a {
	text-decoration: none;
	color: black;
	font-family: "urbanist", sans-serif;
	font-size: 35px;
	font-weight: 900;
	padding-left: 6px;
	padding-right: 6px;
	padding-bottom: 5px;
	padding-top: 0px;
	border-radius: 40px;
	border: 2px solid black;
	z-index: 6;
}

.goback a:hover {
	background-color: black;
	color: white;
}

#workleft {
	height: calc(100vh - 80px);
	width: 35%;
	padding-right: 20px;
	position: sticky;
	top: 60px;
	z-index: 3;
}

#worklefttext {
	margin-bottom: 20px;
}

#worklefttext h2 {
	font-family: "urbanist", sans-serif;
	font-size: 35px;
	font-weight: 900;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

#worklefttext h3 {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 500;
	color: black;
	margin-top: 0px;
	margin-bottom: 20px;
	padding: 0;
}

.awarded {
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 900;
	color: white;
	background-color: black;
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-bottom: 30px;
}

.upcycled {
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 900;
	color: white;
	background-color: lightseagreen;
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-bottom: 30px;
}

#workleftdetail {
	display: grid;
	grid-template-columns: repeat(2,2fr);
	gap: 20px;
	bottom: 0;
	position: absolute;
}

.detail h4 {
	font-family: "urbanist", sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: black;
	margin-top: 20px;
	margin-bottom: 0px;
	padding: 0;
}

.detail p {
	font-family: "urbanist", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: black;
	margin-top: 00px;
	margin-bottom: 0px;
	padding: 0;
}

#workleft details summary a {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 900;
	color: black;
	text-decoration: none;
}

#workleft details span a {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: black;
	text-decoration: none;
	margin-left: 20px;
}

#workleft details span a:hover {
	text-decoration: underline;
}

#workright {
	width: 65%;
}

#workright img {
	width: 100%;
	margin-top: 0px;
	margin-bottom: 20px;
}

#workright h5 {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 900;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

#workright p {
	margin-top: 10px;
	margin-bottom: 30px;
}

.parent-container {
    display: flex;
    justify-content: center;
	align-items: center;
}

.video-container {
    position: relative;
    margin: 0px;
    text-align: center;
	z-index: 3;
}

.video-container video {
	width: 100%;
	z-index: 4;
}

#aboutleft {
	height: calc(100vh - 120px);
	width: 40%;
	padding-right: 20px;
	padding-top: 40px;
	position: sticky;
	top: 60px;
	z-index: -2;
	background-color: #efefef;
}

#aboutleft h2 {
	font-family: "urbanist", sans-serif;
	font-size: 40px;
	font-weight: 900;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
	text-align: right;
	text-align: right;
}

#aboutleft h3 {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 600;
	color: black;
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 0;
	text-align: right;
}

#aboutleft img {
	width: 50%;
	float: right;
}

.personinfo h4 {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 900;
	color: black;
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 0;	
}

.personinfo h5 {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.personinfo h5 {
	font-family: "urbanist", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.personinfo h6 {
	font-family: "urbanist", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.personinfo h7 {
	font-family: "urbanist", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.personinfo h8 {
	font-family: "urbanist", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: black;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
}

.personinfo ul {
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.personinfo ul li {
	margin-bottom: 10px;
}


#aboutright {
	width: 60%;
	padding-left: 20px;
}

.personinfo {
	width: 100%;
	margin-bottom: 30px;
}

#soon {
	width: 100%;
	height: calc(100vh - 80px);
	display: flex;
	text-align: center;
}

#soon p {
	aling-items: center;
	text-align: center;
	font-family: "urbanist", sans-serif;
	font-size: 40px;
	font-weight: 500;
	color: black;
	text-decoration: none;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: auto;
}

#newsleft {
	height: calc(100vh - 80px);
	width: 15%;
	padding-right: 20px;
	position: sticky;
	top: 60px;
	z-index: 3;
	background-color: lavender;
}

#newsleft details summary a {
	font-family: "urbanist", sans-serif;
	font-size: 25px;
	font-weight: 900;
	color: black;
	text-decoration: none;
}

#newsleft details span a {
	font-family: "urbanist", sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: black;
	text-decoration: none;
	margin-left: 20px;
}

#newsleft details span a:hover {
	text-decoration: underline;
}

#newsright {
	width: 85%;
	background-color: lightgray;
}

#newsright h2 {
	font-family: "urbanist", sans-serif;
	font-size: 40px;
	font-weight: 500;
	color: black;
	text-decoration: none;
	margin-left: 0px;
	margin-top: 0px;
}

@media screen and (max-width: 1000px) {
	.workgrid {
		grid-template-columns: repeat(2,1fr);
	}

	.teamgrid {
		grid-template-columns: repeat(2,1fr);
	}

	#aboutleft img {
		width: 90%;
	}
}

@media screen and (max-width: 700px) {
	#nav {
		display: none;
	}

	#dropdown {
		display: block;
		z-index: 3;
	}

	.workgrid {
		grid-template-columns: repeat(1,1fr);
	}

	#split2 {
		grid-template-columns: repeat(1,1fr);
	}

	.teamgrid {
		grid-template-columns: repeat(2,1fr);
	}

	.person {
		margin-bottom: 20px;
	}

	.wrap {
		display: block;
		width: 100%;
		overflow: hidden;
		box-sizing: border-box;
	}

	#workleft, #aboutleft {
		height: auto;
		width: 100%;
		padding-right: 0px;
		position: relative;
		top: auto;
		z-index: -2;
		float: none;
		margin-top: 40px;
		margin-bottom: 30px;
		overflow: hidden;
		background-color: white;
	}

	#workleftdetail {
		bottom: auto;
		position: relative;
	}

	#workright {
		width: 100%;
	}

	#aboutleft {
		margin-top: 0px;
	}

	#aboutleft h2 {
		text-align: left;
	}

	#aboutleft h3 {
		text-align: left;
	}

	#aboutleft img {
		width: 100%;
	}

	#aboutright {
		padding-left: 0px;
		width: 100%;
	}
}