.home {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.home section {
	flex-grow: 2;
}

.home h2 {
	margin-bottom: 5px;
}

.home .project {
	display: flex;
	flex-direction: column;
}

.home .project .project-title ~ .home .project-description {
	margin-bottom: 10px;
}

.home .project .project-description.special,
.home .project .project-description a {
	color: #4172CC;
}

.home .project iframe {
	width: 28vw;
	height: 16vw;
}

.home .our {
	display: flex;
	flex-direction: column;
	margin-bottom: 5px;
}

.home .our .our-items .our-item h3 {
	font-size: 3em;
}

.home .our .our-items .our-item ul {
	list-style: none;
	margin-top: 5px;
}

.home .our .our-items .our-item ul li {
	display: flex;
	align-items: left;
	width: 100%;
	margin-bottom: 5px;
}

.home .our .our-items .our-item ul li a {
	color: #4172CC;
}

.home .our .our-items .our-item ul li:before {
	content: "";
	display: block;
	width: 10px;
	min-width: 10px;
	height: 10px;
	background-color: #4172CC;
	border-radius: 100%;
	vertical-align: middle;
	margin: 6px 10px 0 0;
}

.home .our .our-items {
	display: flex;
	justify-content: space-between;:
}

.home .our .our-items .our-item {
	width: 48%;
}

.home .our .our-items .our-item .media {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.home .our .our-items .our-item .media p {
	width: 300px;
	line-height: 0;
}

.home .our .our-items .our-item .media img {
	width: auto;
	height: 169px;
}

.home .our .our-items .our-item .media iframe {
	width: 310px;
	height: 169px;
	border: 0;
}

.home .our .our-popup {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home .our .our-popup.hidden {
	visibility: hidden;
}

.home .our .our-popup .our-content {
	position: relative;
}

.home .our .our-popup .our-content p {
	position: absolute;
	top: 5px;
	right: 5px;
	color: white;
	font-size: 3em;
	cursor: pointer;
	font-weight: bold;
}

.home .our .our-popup .our-content video {
	padding: 30px;
	max-width: 85vw;
}

@media (max-width: 1024px) {
	.home {
		width: 100vw;
	}

	.home section {
		max-width: 90vw;
		margin: auto;
		margin-bottom: 15px;
	}

	.home .project .project-description {
		padding-right: 0;
	}

	.home .our h2,
	.home .our h3 {
		margin-bottom: 5px;
	}

	.home .our .our-items {
		flex-direction: column;
	}

	.home .our .our-items .our-item {
		width: 100%;
		margin-bottom: 20px;
	}

	.home .our .our-items .our-item  ul {
		width: 90vw;
	}


	/*.project iframe {
		width: 90vw;
		height: 50vw;
	}*/
}