h1 {
	font-size: 250%;
}

@media only screen and (min-width: 768px) { /* sm screens and up */
	h1 {
		font-size: 300%;
	}
    .sssprev, .sssnext {
        background-size: 60px auto;
    }
}
@media only screen and (min-width: 1200px) { /* lg screens and up */
	h1 {
		font-size: 400%;
	}
}





/* FLEX CONTENT */	
ul.flexbox {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	padding: 0;
	margin: 0;
	list-style: none;
}
	ul.flexbox > li {
		flex: 1 1 300px;
		margin: 0 1em 1em;
		padding: 1em;
		border-radius: 5px;
		background-color: #fff;
/*
		background-color: rgba(255, 255, 255, 0.75);
		box-shadow: 0 0 15px 0 #ccc;
*/
		height: auto;
		list-style: none;
	}
	ul.flexbox > li p.big {
		padding-bottom: 0;
	}
	ul.flexbox.tint > li {
		background-color: rgba(255,255,255,.25);
	}
	ul.flexbox.outline > li {
		border: 5px solid #999;
		background-color: inherit;
	}


ul.flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: stretch;
	padding: 0;
	margin: 0;
	list-style: none;
}
	ul.flex li {
		flex: 0 1 350px;
		height: auto;
		display: block;
		padding: .75em .75em .5em;
		margin-bottom: .5em;
		background-color: rgba(255,255,255,.15);
		border-radius: 5px;
	}
		ul.flex li h3 {
			padding-top: .125em;
		}
		ul.flex li p {
			padding-bottom: .25em;
			line-height: 1.25;
		}

    /* FLEX CONTENT */	
    ul.flexbox {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }
        ul.flexbox > li {
            flex: 1 0 500px;
            margin: 0 1em 1em;
            padding: 1em;
            border-radius: 5px;
            background-color: #fff;
            height: auto;
            list-style: none;
        }



.flexicons {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: stretch;
	padding: 0;
	margin: 0;
	list-style: none;
}
	.flexicons .flexicons-item {
		flex: 0 0 90%;
		height: auto;
		display: block;
	}
		.flexicons h4 {
			margin-top: .5em;
            line-height: 1;
		}

@media only screen and (min-width: 480px) { 
	.flexicons .flexicons-item {
		flex: 0 0 50%;
	}
}



.standardheader {
	max-width: 1600px;
	margin: 0 auto;
}
    .standardheader .hero {
        position: relative;
    }
        .standardheader .hero::before {
            left: 0;
        }
.standardheader .heromobile {
	position: relative;
}
	.standardheader .heromobile::before {
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100% - 6.1px);
		position: absolute;
		z-index: 99;
	}
	.standardheader .heromobile video {
		width: 100%;
		height: auto;
	}

@media only screen and (min-width: 768px) { /* sm screens and up */
	.standardheader .heromobile::before {
		background: none;
	}
	.standardheader .hero .center > img {
		display: block;
		width: 400px;
	}
}
@media only screen and (min-width: 992px) { /* md screens and up */
	.standardheader .hero .center > img {
		width: 800px;
	}
}




.box.todbox {
    border: 2px solid #ccc;
    border-radius: 1em;
}









.container-fluid {
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid:before,
.container-fluid:after {
  display: table;
  content: " ";
}
.container-fluid:after {
  clear: both;
}



.features:after {
    display: inline-block;
    border-radius: 10px;
    padding: .25em .75em;
    margin: 0 .5em;
    text-transform: uppercase;
    color: #fff;
    font-size: .5em;
    font-family: "Source Sans Pro";
}
	.features.planning:after {
		content: "Planning";
		background-color: #ffc524;
	}
    .features.indesign:after {
        content: "In Design";
        background-color: #0f6aac;
    }
    .features.construction:after {
        content: "Construction";
        background-color: #d14727;
    }
    .features.preconstruction:after {
        content: "Pre-construction";
        background-color: #d14727;
    }
    .features.completed:after {
        content: "Completed";
        background-color: #028953;
    }

    

