/* 	
------------------------------------------------------------------
	SITE STYLESHEET 
------------------------------------------------------------------
*/

/* --------- TYPEFACES -------------------- 
	
	GOOGLE FONTS
	
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400,700;
	
	font-family: 'Roboto', sans-serif;
	font-weight: 300,400,500,700;
			
*/

/* --------- CSS VAR DECLARATIONS ------------------------------- */

:root {
	--headlinesFont: 'Cormorant Garamond', serif;
	--bodyCopyFont: 'Roboto', sans-serif;
	
	--blackColor: #111;
	--blackColorRGB: rgb(17,17,17);
	--greyColor: #808285;
	--greyColorRGB: rgb(128,130,133);
	--lightBlueColor: #00C1D5;
	--lightBlueColorRBG: rgb(0,193,213);
	--darkBlueColor: #00629B;
	--darkBlueColorRGB: rgb(0,98,155);
	
	--headlinesColor: #fff;
	--bodyCopyColor: #fff;
	--linkColor: var(--lightBlueColor);
	--linkHoverColor: #fff;
}


/* --------- GENERAL LAYOUT & POSITIONING --------------------------- */

.centered {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.invis {
	display: none;
}
.mobileShow {
	display: none !important;
}
.mobileShowInline {
	display: none !important;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.exactOneFifthColumn {
	width: 20%;
	margin: 0;
}
.oneQuarterColumn {
	width: 23%;
	margin: 0;
}
.oneThirdColumn {
	width: 31%;
	margin: 0;
}
.exactOneThirdColumn {
	width: 33.333%;
	margin: 0;
}
.oneHalfColumn {
	width: 44%;
	margin: 0;
}
.exactOneHalfColumn {
	width: 50%;
	margin: 0;
}
.twoThirdsColumn {
	width: 62%;
}
.threeQuarterColumn {
	width: 71%;
	margin: 0;
}
.wrapper {
	width: 88%;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}
.exactOneHalfColumn .wrapper {
	width: 76%;
	padding: 15% 0;
	max-width: none;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: var(--bodyCopyFont);
	font-style: normal;
	font-weight: 400;
	color: var(--bodyCopyColor);
	position: relative;
}
.flexbox-row {
	position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}
.flexbox-row-reverse {
	flex-direction: row-reverse;
}
.flexbox-row-reverse-mobile {
	flex-direction: row;
}
.flexbox-row-vertical-center {
    align-items: center;
    align-content: center;
}
.flexbox-row-justify-content-center {
    justify-content: center;
}
.flexbox-row-justify-content-flex-start {
    justify-content: flex-start;
}
.flexbox-row-stretch {
	align-items: stretch;
}
.flexbox-column-reverse {
	flex-direction: column-reverse;
}
.elementMargin {
	margin-top: 1.5em;
}
.elementMarginSmall {
	margin-top: 1.0em;
}
.elementMarginLarge {
	margin-top: 2.5em;
}
.mobileElementMargin,
.mobileElementMarginSmall, 
.mobileElementMarginLarge {
	margin-bottom: 0;
}
.table {
	display: table;
	height: 100%;
	width: 100%;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.darken5, .darken10, .darken15, .darken20, .darken25, .darken30, .darken35, .darken40, .darken45, .darken50 {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.darken5 {
	background-color: rgba(0,0,0,0.05);
}
.darken10 {
	background-color: rgba(0,0,0,0.1);
}
.darken15 {
	background-color: rgba(0,0,0,0.15);
}
.darken20 {
	background-color: rgba(0,0,0,0.2);
}
.darken25 {
	background-color: rgba(0,0,0,0.25);
}
.darken30 {
	background-color: rgba(0,0,0,0.3);
}
.darken35 {
	background-color: rgba(0,0,0,0.35);
}
.darken40 {
	background-color: rgba(0,0,0,0.4);
}
.darken45 {
	background-color: rgba(0,0,0,0.45);
}
.darken50 {
	background-color: rgba(0,0,0,0.5);
}
.colorDarken5, .colorDarken10, .colorDarken15, .colorDarken20, .colorDarken25, .colorDarken30, .colorDarken35, .colorDarken40, .colorDarken45, .colorDarken50 {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.colorDarken5 {
	background-color: rgba(0,98,155,0.05);
}
.colorDarken10 {
	background-color: rgba(0,98,155,0.1);
}
.colorDarken15 {
	background-color: rgba(0,98,155,0.15);
}
.colorDarken20 {
	background-color: rgba(0,98,155,0.2);
}
.colorDarken25 {
	background-color: rgba(0,98,155,0.25);
}
.colorDarken30 {
	background-color: rgba(0,98,155,0.3);
}
.colorDarken35 {
	background-color: rgba(0,98,155,0.35);
}
.colorDarken40 {
	background-color: rgba(0,98,155,0.4);
}
.colorDarken45 {
	background-color: rgba(0,98,155,0.45);
}
.colorDarken50 {
	background-color: rgba(0,98,155,0.5);
}
.section {
	position: relative;
	width: 100%;
	padding: 6.0em 0;
	margin: 0;
	overflow: hidden;
	background-color: transparent;
}
.whiteSection {
	background-color: #fff;
}
.colorSection {
	background-color: var(--lightBlueColor);
}
.colorSectionSplit {
	background: linear-gradient(90deg, #444444 50%, #777777 50%);
	border-top: 2px solid #fff;
}
.colorSection2 {
	background-color: var(--darkBlueColor);
}
.colorSection2Split {
	background: linear-gradient(90deg, #444444 50%, #777777 50%);
	border-top: 2px solid #fff;
}
.colorSection3 {
	background-color: var(--greyColor);
}
.colorSection3Split {
	background: linear-gradient(90deg, #444444 50%, #777777 50%);
	border-top: 2px solid #fff;
}
.gradientSection {
	background-color: #fff;
	background: linear-gradient(180deg, rgba(255,255,255,1) 20%, rgba(238,238,238,1) 100%);
}
.gradientSectionReverse {
	background-color: #fff;
	background: linear-gradient(180deg, rgba(238,238,238,1) 10%, rgba(255,255,255,1) 100%);
}
.parallaxSection {
	background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.imageSection {
	padding: 8.0em 0;
}
.noPaddingSection {
	padding: 0;
}
.builderSection {
	padding: 2.75em 0 1.25em 0;
}
.onePixelMarginTop {
	margin-top: 1px;
}
.onePixelMarginBottom {
	margin-bottom: 1px;
}
.onePixelMarginLeft {
	margin-left: 1px;
}
.onePixelMarginRight {
	margin-right: 1px;
}
.twoPixelMarginTop {
	margin-top: 2px;
}
.twoPixelMarginBottom {
	margin-bottom: 2px;
}
.twoPixelMarginLeft {
	margin-left: 2px;
}
.twoPixelMarginRight {
	margin-right: 2px;
}
.headerBarStickyPadder {
	height: 0;
	/* 
	This is controlled by JS to add verticle space to 
	the visual document when the main nav bar switches 
	from position relative to position sticky. This 
	helps remove the large visual jump in the content. 
	*/
}
.headerBar {
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #73a9ba;
	padding: 0.6em 0;
	position: relative;
	z-index: 9990;
}
.headerBarNavContainer {
	position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.heroSection {
	position: relative;
	display: table;
	width: 100%;
	height: auto;
	min-height: calc(100vh - 89px);
}
.heroVideoSection {
	background-color: #999;
}
.heroContent {
	display: table-cell;
	vertical-align: middle;
	padding: 3.0em 0;
}
.homeHero {
	background: #fff url(/images/home/homeHero.jpg) center center no-repeat;
	background-size: cover;
}
.schoolsHero {
	background: #fff url(/images/schools/schoolsHero.jpg) center bottom no-repeat;
	background-size: cover;
}
.locationHero {
	background: #fff url(/images/location/locationHero.jpg) top right no-repeat;
	background-size: cover;
}
.shoppingHero {
	background: #fff url(/images/shopping/shoppingHero.jpg) center center no-repeat;
	background-size: cover;
}
.buildersHero {
	background: #fff url(/images/builders/buildersHero.jpg) center center no-repeat;
	background-size: cover;
}
.buildersHero2026 {
	background: #fff url(/images/builders/buildersHero2026.jpg) center center no-repeat;
	background-size: cover;
}
.guideHero {
	background: #fff url(/images/guide/guide-hero.jpg) center left no-repeat;
	background-size: cover;
}
.footer {
	background-color: var(--darkBlueColor);
}
.footer .wrapper {
	padding: 4.0em 0;
}
.imageBanner {
	width: 100%;
	position: relative;
}
.imageBannerTile {
	position: relative;
	width: 25%;
	height: auto;
	padding-top: 25vh;
}
.imageBannerTileHome1 {
	background: #fff url(/images/home/imageBannerTile1.jpg) center center no-repeat;
	background-size: cover;
}
.verticalBanner {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 17% 2.0em 2.2em 2.0em;
	border-radius: 2px;
	overflow: hidden;
}
.verticalBannerContent {
	background-color: #fff;
	padding: 3.0em 2.0em 2.4em 2.0em;
	border-radius: 2px;
}
.verticalBannerContent > div {
	margin: 0 auto;
	max-width: 350px;
}
.verticalBannerHome1 {
	background: var(--lightBlueColor) url(/images/home/verticalImageBanner1.jpg) center top no-repeat;
	background-size: contain;
}
.verticalBannerHome2 {
	background: var(--lightBlueColor) url(/images/home/verticalImageBanner2.jpg) center top no-repeat;
	background-size: contain;
}
.verticalBannerHome3 {
	background: var(--lightBlueColor) url(/images/home/verticalImageBanner3.jpg) center top no-repeat;
	background-size: contain;
}
.parallaxBG {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -999;
}
.shoppingParallaxBG {
	background: #0e4353 url(/images/shopping/shoppingParallaxBG.jpg) right center no-repeat;
	background-size: cover;
}
.standardCard {
	position: relative;
	background-color: #fff;
	border-top: 6px solid var(--orangeColor);
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.25);
	padding: 3.0em 3.0em 2.5em 3.0em;
	margin: 0 auto;
}
.builderContactCard {
	box-sizing: border-box;
	position: relative;
	background-color: #fff;
	border-top: 6px solid var(--greenColor);
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.25);
	padding: 3%;
	margin: 0 auto 2.5em auto;
	width: 31%;
}
.siteBuilders .section .wrapper {
	max-width: 1400px;
}

/* --------- TYPOGRAPHY -------------------- */

h1,h2,h3 {
	font-family: var(--headlinesFont);
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em 0;
	color: var(--headlinesColor);
}
.colorSection h1, .colorSection h2, .colorSection h3 {
	color: #fff;
}
.parallaxSection h1, .parallaxSection h2, .parallaxSection h3 {
	color: #fff;
}
h1 {
	font-size: 2.7em;
}
h2 {
	font-size: 2.0em;
}
h3 {
	font-size: 1.6em;
}
span.withSeparator {
	display: inline-block;
	position: relative;
	padding-bottom: 0.75em;
	margin-bottom: 0.25em;
}
span.withSeparator:after {
	content: '';
	position: absolute;
	width: 75%;
	left: 0;
	transform: none;
	bottom: 0;
	min-width: 100px;
	max-width: 200px;
	height: 1px;
	background-color: transparent;
	border-top: 2px solid rgba(255,255,255,0.6);
}
.verticalBannerContent h3 span.withSeparator:after {
	border-top: 2px solid var(--lightBlueColor);
}
.centered span.withSeparator:after {
	left: 50%;
	transform: translateX(-50%);
}
span.headingSubtitle {
	display: block;
	font-family: var(--bodyCopyFont);
	text-transform: uppercase;
	font-size: 0.45em;
	font-weight: 300;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.8);
	line-height: 1.5em;
	margin: 0.3em 0;
}
.colorSection span.headingSubtitle {
	color: #fff;
}
.parallaxSection span.headingSubtitle {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
.heroSection h1 {
	font-weight: 700;
	font-size: 3.6em;
	margin: 0 0 0.25em 0;
	color: #fff;
	text-shadow: 0 0 20px rgba(0,0,0,0.85);
}
.heroSection h1 span.pre-heading {
	display: block;
	font-size: 0.45em;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.8em;
}
.footer h3 {
	font-family: var(--headlinesFont);
	color: #fff;
	font-weight: 700;
	margin-bottom: 0.6em;
}
.verticalBannerContent h3 {
	color: var(--lightBlueColor);
	text-transform: uppercase;
	font-size: 1.6em;
}
.imageBanner h3 {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	font-weight: 700;
	font-size: 1.5em;
	background-color: rgba(0,0,0,0.6);
	padding: 1.2em 1.4em;
	text-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.imageBannerTileHome1 h3,
.imageBannerTileHome3 h3 {
	background-color: rgba(73, 126, 211, 0.75);
}
.imageBannerTileHome2 h3,
.imageBannerTileHome4 h3 {
	background-color: rgba(246,145,47,0.75);
}
p {
	font-family: var(--bodyCopyFont);
	color: var(--bodyCopyColor);
	font-size: 1.05em;
	line-height: 1.7em;
	margin: 0 0 1.0em 0;
	font-weight: 400;
}
p.leadIn {
	font-size: 1.3em;
}
.colorSection p {
	color: #fff;
}
.parallaxSection p {
	color: #fff;
}
p.finePrint {
	font-size: 0.9em;
	color: #7b97a4;
}
.parallaxSection p.finePrint {
	color: rgba(255,255,255,0.7);
}
p span.finePrint {
	display: block;
	font-size: 0.9em;
}
.heroSection p.leadIn {
	font-family: var(--bodyCopyFont);
	font-size: 1.5em;
	line-height: 1.6em;
	color: #fff;
	font-weight: 300;
	text-shadow: 0 0 16px rgba(0,0,0,0.85);
	margin: 1.0em auto 0 auto;
}
p.pullQuote {
	
}
p.guideline-name {
	font-size: 0.9em;
	line-height: 1.3em;
	font-weight: 700;
}
p.byLine {
	font-size: 1.0em;
	opacity: 0.8;
	font-weight: 700;
	margin-top: -0.6em;
}
p.byLine span.byLineTitle {
	font-weight: 400;
}
.footer p {
	font-size: 1.05em;
	line-height: 1.5em;
	color: #fff;
}
.verticalBannerContent p {
	color: #333;
}

h1 strong,h2 strong,h3 strong,h4 strong {
	font-weight: 700;
}
p strong {
	font-weight: 700;
}
.white {
	color: #fff !important;
}


/* --------- LISTS -------------------------------------------------- */

ul, ol {
	list-style: disc;
	margin: 0 0 1.8em 1.1em;
}
li {
	font-family: var(--bodyCopyFont);
	color: var(--bodyCopyColor);
	font-size: 1.05em;
	line-height: 1.6em;
	margin: 0 0 0.6em 0;
	font-weight: 400;
}
li strong {
	font-weight: 700;
}
li span.fa-li {
	font-size: 0.9em;
	left: -2.5em; // this is an override of the font-awesome attribute to give a little more space between the bullet and the text
}


/* ---------  FONT-AWESOME ICONS  ------------------------------------------------- */

.far, .fas, .fal, .fab {
	margin: 0;
}
.button i {
	display: inline-block;
	margin-left: 0.4em;
	font-size: 1.0em;
}


/* --------- FORMS -------------------------------------------------- */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #ccc;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #ccc;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #ccc;
}
::-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #ccc;
}


/* --------- TABLES ------------------------------------------------- */

.dataTable {
	width: 100%;
	margin: 0 auto;
}
.dataTable th {
	padding: 1.6em 1.2em;
	text-align: left;
	background-color: #fff;
	color: #fff;
	font-weight: 400;
}
.dataTable td {
	padding: 1.2em;
	text-align: left;
	border-bottom: 1px solid #dcdcdc;
	background-color: #fff;
	transition: background-color 150ms;
}
.dataTable tr:hover td {
	background-color: #f5f5f5;
}




/* --------- IMAGES, VIDEOS & MAPS ------------------------------------------------- */
.sliderContainer {
	position: relative;
}
.fancybox-bg {
	background-color: #2b2f32;
}
.fancybox-slide--html .fancybox-content {
  	padding: 4.5em 3.5em;  
}
.fancybox-close-small {
	color: var(--greyColor) !important;
}
.fill {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.heroSection video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.videoWrapper {
	background-color: #fff;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0px;
	height: 0;
	overflow: hidden;
	margin: 0 auto;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	overflow: hidden;
}
.headerLogo {
	display: inline-block;
	width: 245px;
	height: auto;
	margin-top: 0;
}
.footerLogo {
	display: block;
	width: 100%;
	height: auto;
	max-width: 260px;
	margin: 0 0 1.5em 0;
}
.googleMap1 {
	width: 100%;
	height: 560px;
}
.footerGoogleMap {
	width: 100%;
	height: 220px;
}
.buyFooterGoogleMap {
	width: 100%;
	height: 450px
}
.builderContactCardImg {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}
.imageBG {
	min-height: none;
}
.imageBGHomeCyBecker {
	background: transparent url(/images/home/cyBecker.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGLocation1 {
	background: transparent url(/images/location/location1.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGLocation2 {
	background: transparent url(/images/location/location2.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGLocation3 {
	background: transparent url(/images/location/location3.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGSchools1 {
	background: transparent url(/images/schools/schools1.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGSchools2 {
	background: transparent url(/images/schools/schools2.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGShopping1 {
	background: transparent url(/images/shopping/shopping1.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGShopping2 {
	background: transparent url(/images/shopping/shopping2.jpg) center center no-repeat;
	background-size: cover;
}
.imageBGShopping3 {
	background: transparent url(/images/shopping/shopping3.jpg) center center no-repeat;
	background-size: cover;
}
.guidelines-thumb {
	max-width: 200px; 
	margin-bottom: 1.0em;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.1);
	outline: 3px solid transparent;
	transition: all 200ms;
}
.guidelines-thumb:hover {
	outline: 3px solid rgba(0,0,0,0.2);
}



/* --------- LINKS & NAVIGATION -------------------------------------------------- */
a:link, a:visited {
	color: var(--linkColor);
	text-decoration: none;
	outline: none;
	transition: all 200ms;
}
a:hover, a:focus {
	color: var(--linkHoverColor);
	outline: none;
}
.parallaxSection a.parallaxUnderlineLink:link, .parallaxSection a.parallaxUnderlineLink:visited,
.colorSection a.colorSectionUnderlineLink:link, .colorSection a.colorSectionUnderlineLink:visited {
	color: #fff;
	border-bottom: 1px dotted rgba(255,255,255,0.5);
	transition: none;
}
.parallaxSection a.parallaxUnderlineLink:hover, .parallaxSection a.parallaxUnderlineLink:focus,
.colorSection a.colorSectionUnderlineLink:hover, .colorSection a.colorSectionUnderlineLink:focus {
	border-bottom: 1px solid rgba(255,255,255,1.0);
}
.parallaxSection a.parallaxUnderlineLinkAlt:link, .parallaxSection a.parallaxUnderlineLinkAlt:visited,
.colorSection a.colorSectionUnderlineLinkAlt:link, .colorSection a.colorSectionUnderlineLinkAlt:visited {
	color: rgba(255,255,255,0.65);
	border-bottom: none;
	transition: none;
}
.parallaxSection a.parallaxUnderlineLinkAlt:hover, .parallaxSection a.parallaxUnderlineLinkAlt:focus,
.colorSection a.colorSectionUnderlineLinkAlt:hover, .colorSection a.colorSectionUnderlineLinkAlt:focus {
	color: rgba(255,255,255,1.0);
	border-bottom: 1px solid #fff;
}
.mainNav {
	/* NOTE: There is also some JS that controls some of the .mainNav attributes in the site.js file */
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;    
    align-items: center;
    align-content: center;
	width: calc(100% - 280px); /* full width minus room for the logo */
	max-width: 920px;
	position: relative;
}
.mobileMainNavToggle {
	display: none;
}
.mainNav a:link, 
.mainNav a:visited {
	display: inline-block;
	font-family: var(--bodyCopyFont);
	color: var(--darkBlueColor);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.95em;
	padding: 1.0em 0.5em;
	margin-top: 10px; /* this is to counter-act the links being pushed up and nolonger vertically centered because of the 10px margin on the :after border */
	transition: all 200ms ease;
}
.mainNav a:link:after, 
.mainNav a:visited:after {
	display: block;
	content: '';
	margin-top: 10px;
	border-bottom: 3px solid #fff;
	transform: scaleX(0);
	transition: transform 250ms ease;
}
.mainNav a:hover, 
.mainNav a:focus {
	color: var(--lightBlueColor);
}
.mainNav a:hover:after, 
.mainNav a:focus:after {
	transform: scaleX(1);
}
.mainNav a.visitUsLink:link, 
.mainNav a.visitUsLink:visited {
	background-color: var(--darkBlueColor);
	margin-top: -5px;
	padding: 0.9em 1.1em;
	font-size: 0.9em;
	color: #fff;	
	border-radius: 2px;
}
.mainNav a.visitUsLink:after {
	display: none;
}
.mainNav a.visitUsLink:hover, 
.mainNav a.visitUsLink:focus {
	background-color: rgba(0,98,155,0.12);
	color: var(--darkBlueColor);
}
.siteHome a.homeLink,
.siteLocation a.locationLink,
.siteSchools a.schoolsLink,
.siteShopping a.shoppingLink,
.siteBuilders a.buildersLink,
.siteGuide a.guideLink {
	color: var(--darkBlueColor);
}
.siteHome a.homeLink:after,
.siteLocation a.locationLink:after,
.siteSchools a.schoolsLink:after,
.siteShopping a.shoppingLink:after,
.siteBuilders a.buildersLink:after,
.siteGuide a.guideLink:after {
	display: block;
	content: '';
	margin-top: 10px;
	border-bottom: 3px solid var(--lightBlueColor);
	transform: scaleX(1);
}
.documentsBarLink {
	padding: 1.0em 5%;
}
.documentsBarLink:link,
.documentsBarLink:visited {
	display: block;
	text-align: center;
	background-color: var(--darkBlueColor);
	font-size: 1.0em;
	font-weight: 400;
	color: #fff;
	line-height: 1.35em;
	transition: all 250ms ease;
}
.documentsBarLink:hover,
.documentsBarLink:focus {
	background-color: var(--lightBlueColor);
	color: #fff;
}
.documentsBarLinkFooter:link,
.documentsBarLinkFooter:visited {
	font-size: 1.05em;
	padding: 1.5em 5%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background-color: #fff;
	color: var(--darkBlueColor);
}
.documentsBarLinkFooter:hover,
.documentsBarLinkFooter:focus {
	background-color: var(--darkBlueColor);
	color: #fff;
}
.heroScrollToContent:link,
.heroScrollToContent:visited {
	color: rgba(255,255,255,0.8);
	font-size: 2.0em;
	padding: 0.3em;
	display: inline-block;
	position: absolute;
	bottom: 0.7em;
	left: 50%;
	transform: translateX(-50%);
	transition: color 250ms ease;
}
.heroScrollToContent:hover {
	color: rgba(255,255,255,1.0);
}
.button:link,
.button:visited {
	display: inline-block;
	background-color: var(--darkBlueColor);
	color: #fff;
	padding: 1.1em 1.65em;
	margin: 1px 1px 1px 0;
	border: none;
	border-radius: 2px;
	font-size: 1.0em;
	line-height: 1.25em;
	letter-spacing: 0.08em;
	font-family: var(--bodyCopyFont);
	text-transform: uppercase;
	font-weight: 700;
	transition: all 250ms ease;
}
.button:hover,
.button:focus {
	background-color: var(--lightBlueColor);
	color: #fff;
}
.smallButton:link,
.smallButton:visited {
	font-size: 0.9em;
	padding: 1.0em 1.4em 1.1em 1.4em;
}
.darkBlueButton:link,
.darkBlueButton:visited {
	background-color: var(--darkBlueColor);
	color: #fff;
}
.darkBlueButton:hover,
.darkBlueButton:focus {
	background-color: var(--lightBlueColor);
}
.whiteTransparencyButton:link,
.whiteTransparencyButton:visited {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}
.whiteTransparencyButton:hover,
.whiteTransparencyButton:focus {
	background-color: rgba(255,255,255,1.0);
	color: var(--darkBlueColor);
}
p + .button {
	margin-top: 1.0em !important;
}
.heroSection p.leadIn + .button {
	margin-top: 2.6em !important;
}
.builderCTAButton:link,
.builderCTAButton:visited {
	display: inline-block;
	margin: 2px 2px 3px 0;
	text-align: center;
}





/*
====================================================================================================
@media Queries
====================================================================================================
*/

@media all and (min-width: 1px) and (max-width: 1023px) /* Mobile  ---------------------------------------- */
{
	.exactOneFifthColumn,
	.oneQuarterColumn,
	.oneThirdColumn,
	.exactOneThirdColumn,
	.twoThirdsColumn,
	.oneHalfColumn,
	.exactOneHalfColumn,
	.threeQuarterColumn {
		width: 100%;
	}
	.mobileCenter {
		text-align: center;
	}
	.mobileHide {
		display: none !important;
	}
	.mobileShow {
		display: block !important;
	}
	.mobileShowInline {
		display: inline-block !important;
	}
	.flexbox-row-reverse-mobile {
		flex-direction: row-reverse;
	}
	.flexbox-column-reverse-mobile {
		flex-direction: column-reverse;
	}
	.mobileElementMargin {
		margin-bottom: 1.6em;
	}
	.mobileElementMarginSmall {
		margin-bottom: 1.0em;
	}
	.mobileElementMarginLarge {
		margin-bottom: 2.75em;
	}
	.section {
		padding: 4.0em 0;
	}
	.noPaddingSection {
		padding: 0;
	}
	.builderSection {
		padding: 2.5em 0;
	}
	.headerBar {
		padding: 0.8em 0;
	}
	.headerBarNavContainer {
		display: block;
		position: relative;
	}
	.headerLogo {
		width: 190px;
		margin: 0;
	}	
	.mainNav {
		display: none;
		width: 100%;
		max-width: none;
		padding-top: 1.2em;
		padding-bottom: 0.8em;
	}
	.mainNav a:link, 
	.mainNav a:visited,
	.mainNav a.visitUsLink:link,
	.mainNav a.visitUsLink:visited {
		display: block;
		text-align: center;
		margin: 3px 0;
		padding: 1.0em;
		background-color: var(--lightBlueColor);
		color: #fff;
		border-radius: 2px;
		font-weight: 400;
	}
	.mainNav a.visitUsLink i {
		display: none;
	}
	.mainNav a:link:after, 
	.mainNav a:visited:after, 
	.mainNav a:hover:after, 
	.mainNav a:focus:after {
		display: none;
	}
	.mainNav a:hover, .mainNav a:focus {
		
	}
	.siteHome a.homeLink,
	.siteLocation a.locationLink,
	.siteSchools a.schoolsLink,
	.siteShopping a.shoppingLink,
	.siteBuilders a.buildersLink,
	.siteGuide a.guideLink {
		background-color: var(--darkBlueColor);
		color: #fff;
	}
	.mobileMainNavToggle {
		display: block;
		font-size: 1.6em;
		position: absolute;
		right: 0;
		top: 4px;
		color: var(--darkBlueColor) !important;
	}
	.footerLogo {
		margin: 0 auto 2.0em auto;
	}
	.footer {
		text-align: center;
	}
	.footer .joinUsOnInstagram {
		margin-top: 1.0em;
	}
	h1 {
		font-size: 2.5em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1.3em;
	}
	.heroSection {
		min-height: calc(100vh - 57px);
	}
	.heroSection h1 {
		font-size: 2.6em;
		margin: 0 0 0.3em 0;
	}
	.heroSection p.leadIn {
		font-size: 1.3em;
		line-height: 1.4em;
		text-shadow: 0 0 16px rgba(0,0,0,0.85);
	}
	.colorSectionSplit {
		background: none;
		background-color: var(--tealBlueColor);
	}
	.colorSection2Split {
		background: none;
		background-color: #99b8c0;
	}
	.colorSection3Split {
		background: none;
		background-color: var(--goldColor);
	}
	.imageBG {
		min-height: 50vh;
	}
	.imageBannerTile {
		width: 100%;
		padding-top: 30vh;
		margin-bottom: 1px;
	}
	.imageBanner h3 {
		font-size: 1.2em;
		padding: 1.0em 1.0em;
	}
	.verticalBanner {
		padding: 65% 0 0 0;
		border: none;
	}
	.verticalBannerContent {
		padding: 3.0em 2.0em 2.4em 2.0em;
		border-radius: 0 0 2px 2px;
	}
	.standardCard {
		margin: 0 auto 2.5em auto;
		padding: 3.0em 1.5em 2.5em 1.5em;
	}
	.builderContactCard {
		padding: 7% 6% 10% 6%;
		width: 100%;
	}
	.dataTable tr {
		display: block;
	}
	.dataTable tr:hover td {
		background-color: #fff;
	}
	.dataTable tr:first-of-type {
		display: none;
	}
	.dataTable td {
		display: block;
		border-bottom: none;
		padding: 0.3em 0;
		text-align: center;
	}
	.dataTable td:first-of-type {
		font-weight: 700;
	}
	.dataTable td:last-of-type {
		margin-bottom: 1.6em;
	}
	.dataTable tr:last-of-type td:last-of-type {
		margin-bottom: 0;
	}
	.builderCTAButton:link,
	.builderCTAButton:visited {
		display: block;
		margin: 0 0 4px 0;
	}
	.builderLogoMobileCenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

} /* end mobile portrait & landscape ------------------------------------------ */











@media all and (min-width: 769px) and (max-width: 1023px)  /* 1023 -------------------------------------------------------------------------------- */
{
	.oneQuarterColumn {
		width: 46%; /* we resize quarters to halfs as they just get too skinny */
	}
	.imageBannerTile {
		width: 50%;
		padding-top: 30vh;
		margin-bottom: 0;
	}
	.imageBanner h3 {
		padding: 1.2em 1.0em;
		font-size: 1.4em;
	}

	
	

} /* end 769 ------------------------------------------------------------------- */







@media all and (min-width: 1024px) and (max-width: 1279px)  /* 1024 ------------------------------------------------------------------------------- */
{
	


} /* end 1024 ------------------------------------------------------------------ */






@media all and (min-width: 1280px) and (max-width: 1915px)  /* 1915  ------------------------------------------------------------------------------- */
{
	


} /* end 1915 ----------------------------------------------------------------- */







@media all and (min-width: 1916px)  /* 1920 & > ------------------------------------------------------------------------------- */
{

	.exactOneHalfColumn .wrapper {
		width: 56%;
		padding: 15% 0;
		max-width: none;
	}
	.builderContactCard {
		padding: 2%;
	}
	

}



