*, *::after, *::before{
	box-sizing: border-box;
}

.nav-container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
}

nav ul, footer ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.nav-tabs-item, .footer-tabs-item{
	margin-left: 1rem;
}

.project-container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.single-project, .jobtitle-container{
	display: flex;
	flex-direction: column;
}

.single-project{
	flex: 1 1 42%;
	margin: 0 3% 3rem 0;
}

.project-name-container{
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

.project-item, .job-item{
	margin-right: 0.8rem;
}

.description-list{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.description-item{
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.demo{
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
	padding-right: 1rem;
	justify-content: space-between;
	flex: 0 33%;
}

.demo-two-col{
	display: flex;
	flex-direction: row;
	margin-top: 3rem;
}

.demo-text{
	flex: 1 1 70%;
	margin-bottom: 0.5rem;
	margin-right: 1rem;
}

.demo-visual{
	flex: 1 1 30%;
	margin-right: 1rem;
}

.demo-container{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}


.two-col, .project-two-col{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1rem;
}

.two-col-item{
	flex: 1 1 50%;
	margin-right: 0.5rem;
}

.minor-item{
	flex: 1 1 30%;
	margin-right: 0.5rem;
}

.major-item{
	flex: 1 1 70%;
}

.three-col{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.three-col-item{
	flex: 1 1 auto;
	margin-right: 0.5rem;
}

.four-col{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

}

.four-col-item{
	flex: 1 1 23%;
	margin-right: 0.5rem;
}

.playground-container{
	display: flex;
	flex-wrap: wrap;
}

.playground-3{
	flex: 1 1 20%;
    position: relative;
    margin-right: 3%;
    margin-top: 150px;
    /*float: left;*/
    /*height: auto;*/
}

.playground-2{
	flex:1 1 25%;
    margin-right: 3%;
    margin-top: 100px;
    /*float: left;*/
    /*height: auto;*/
}

.playground-1{
	flex: 1 1 46%;
    margin-right: 3%;
    margin-top: 200px;
    /*float: left;*/
    /*height: auto;*/
}

footer{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.footer-right{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

/* STYLEGUIDE */
.swatch {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-around;
	flex-direction: row;
}

.swatch-block {
	margin: 1rem;
	flex: 1 1 auto;
	background-color: white;
}

.swatch-block-color {
	height: 10rem;
	border-style: solid;
	border-color: white;
}

.swatch-block-detail {
	margin-bottom: 0;
	padding: 0rem 0.5rem 1rem 1rem;
}







@media (max-width: 600px){
	.demo-two-col{
		flex-direction: column;
	}

	.description-list{
		flex-wrap: wrap;
	}

	.four-col-item{
		flex: 1 1 47%;
	}
}

@media (max-width: 700px){
	.playground-3{
		flex: 1 1 auto;
	    margin-right: 3%;
	    margin-top: 150px;
	}

	.playground-2{
		flex:1 1 auto;
	    margin-right: 3%;
	    margin-top: 100px;
	}

	.playground-1{
		flex: 1 1 auto;
	    margin-right: 3%;
	    margin-top: 200px;
	}
}

@media (max-width: 900px){
	.two-col, .three-col, .project-container{
		flex-direction: column;
	}

	.demo{
		flex: 0 50%;
	}
}

@media (max-width: 1024px){
	
}

@media (max-width: 1112px){
	.jobtitle-container{
		flex-direction: column;
	}
}