/**
	@Author:	Paul Strandoo
	@Date:		January 2024
	@Notes:		Nest Development
	
	mobile/desktop menu break: 1260px; 1112px; 1024px
	970 / 1170 /
*/

@import url("font-awesome.min.css");
:root {
	--display-font: "Nimbus Roman",serif; /* nimbus-roman */
	--body-font: "Gill Sans", sans-serif;
	--display-light: 300;
	--display-med: 400;
	--display-bold: 500;
	--body-light: 300;
	--body-med: 500;
	--body-bold: 600;
	
	--text-color: #1f3038;
	--dark-bg: #1f3038;
		
	--accent: #a2bb89;
	--accent2: #009793;
	
	--blue1: #1b5990;

	--header: #051728;
	--navy: #002F6C;
	--lightblue: #6fbad9;
	--textblue: #459fc4;
	
	--light-grey: #f1f1f1;
	--light-grey: #F5F5F5;
	--light-grey: #ececec;
	
	--grey0: #575656;
	--grey1: #ebebeb;
	--grey2: #9f9f9f;
	--grey3: #939393;
	--grey4: #f6f6f6;
	--white: #ffffff;
	
	--black: #000000;
	--black1: #212121;
	--black3: #111111;
	
	--section-pad-large: 7em;
	--section-pad-med: 5em;
	--section-pad-small: 3em;
	
	--header-height: 156px;
	
    --inner: 1210px; /* 1320 */
    --inner-narrow: 960px;
    --inner-large: 1150px;
    /*--inner-wide: 1500px;*/
    --inner-wide: 1350px;
    --inner-full: 100%;
    
    /*--section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;*/
	}

/**
 * Reset stylesheet to normalize styles across browsers
 */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,label,input,textarea,p,blockquote,th,td {  
	margin:0; 
	padding:0; 
	}
table { 
	border-collapse:collapse; 
	border-spacing:0; 
	}
fieldset,img {  
	border:0; 
	}
address,caption,cite,code,dfn,em,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
	}
ol,ul,li { 
	list-style:none; 
	margin: 0;
	padding: 0;
	}
caption,th { 
	text-align:left; 
	} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr,acronym { 
	border:0; 
	} 
a {
	text-decoration: none;
	}
img {
	display: block;
	vertical-align: middle;
	/*max-width: 100%;*/
	}

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 156px;
	}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: var(--body-font);
	font-weight: var(--body-med);
	font-style: normal;
	color: #212121;
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	color: var(--text-color);
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	font-size: 1rem; /* 1.2,  1.1 */
	line-height: 1.6em;
	line-height: 1.5em;
	margin: 0 0 1em;
	/*
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;*/
	}
ul {
	margin: 1em 0;
	}

li {
	margin: 0;
	}
em {
	font-style: italic;
	}
strong, b {
	font-weight: var(--body-med);
	}

p em {
	font-weight: var(--body-light);
	font-style: italic;
	}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	}

a { 
	color: inherit;
	text-decoration: underline;
	}

a:hover {
	color: var(--accent);
	/*text-decoration: underline;*/
	}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	font-style: normal;
	line-height: 1.1;
	}

h1 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	font-style: italic;
	font-size: 3.6rem;
	line-height: 1.2;
	margin: 0;
	width: 100%;
	text-align: center;
	}

h2 {
	font-family: var(--display-font);
	font-weight: var(--display-light);
	font-style: italic;
	font-size: 1.8rem;
	line-height: 1.15em;
	padding: 0;
	margin: 0 0 0.6em;
	background: none;
	text-transform: none;
	}
	
h2:first-of-type {
	margin-top: 0;
	}
	
h3 { 
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.4rem;
	line-height: 1.3;
	}
	
.intro-text-section h1,
.intro-text-section h2,
.intro-text-section h3,
.intro-text-section p {
	color: #222;
	margin: 0 0 1em;
	}

h4 { 
	font-family: var(--body-font);
	font-weight: var(--body-med);
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0 0 0.2em;
	}
	
h5 { 
	font-family: var(--body-font);
	font-weight: var(--body-med);
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0 0 0.2em;
	}

h6 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	}

@media only screen and (min-width: 600px) {
	h1 { font-size: 5rem; }
	h2 { font-size: 2.4rem; }
	h3 { font-size: 1.4rem; }
}

/* ----- [ Structure ] -----------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	min-height: 100%;
	background: transparent;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-wrapper.is-fixed,
body.is-fixed {
	position: fixed;
	width: 100%;
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: var(--blue1);
	z-index: 600;
	opacity: 0;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding-top: 120px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	display: none;
	}

@media only screen and (min-width: 750px) {
	.page-overlay {
		align-items: center;
		padding: 0.9;
		}
}

header,
section {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	margin: 0;
	/*padding: var(--section-pad-med) 0;*/
	position: relative;
	overflow: hidden;
	background: #fff;
	}

.inner {
	max-width: calc(var(--inner) + 32px);
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-large {
	max-width: var(--inner-large);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}
	
.inner-full {
	max-width: 100%;
	/*height: 250px;*/
	margin: 0;
	padding: 0;
	overflow: hidden;
	}
	
@media only screen and (min-width: 600px) {
	.inner {
		padding: 0 30px;
		}
}

/* ----- [ Strandoo Flex Grid System v1 ] ------ */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	margin-bottom: 2em;
	}

@media only screen and (min-width: 420px) {
	.col { flex: initial; }
	.row.no-padding,
	.row.padding-0 {
		margin-left: 0;
		margin-right: 0;
		}
	.row.padding-1 {
		margin-left: -1px;
		margin-right: -1px;
		}
	.row.padding-5 {
		margin-left: -5px;
		margin-right: -5px;
		}
	.row.padding-75 {
		margin-left: -7.5px;
		margin-right: -7.5px;
		}
	.row.padding-10 {
		margin-left: -10px;
		margin-right: -10px;
		}
	.row.padding-15 {
		margin-left: -15px;
		margin-right: -15px;
		}
	.row.padding-20 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.row.padding-30 {
		margin-left: -30px;
		margin-right: -30px;
		}
	.row.padding-40 {
		margin-left: -40px;
		margin-right: -40px;
		}
	.row.padding-50 {
		margin-left: -50px;
		margin-right: -50px;
		}

	.no-padding > .col,
	.padding-0 > .col {
		padding: 0;
		}
	.padding-1 > .col {
		padding-left: 1px;
		padding-right: 1px;
		}
	
	.padding-5 > .col {
		padding-left: 5px;
		padding-right: 5px;
		}
	.padding-75 > .col {
		padding-left: 7.5px;
		padding-right: 7.5px;
		}
	.padding-10 > .col {
		padding-left: 10px;
		padding-right: 10px;
		}
	.padding-15 > .col {
		padding-left: 15px;
		padding-right: 15px;
		}
	.padding-20 > .col {
		padding-left: 20px;
		padding-right: 20px;
		}
	.padding-30 > .col {
		padding-left: 30px;
		padding-right: 30px;
		}
	.padding-40 > .col {
		padding-left: 40px;
		padding-right: 40px;
		}
	.padding-50 > .col {
		padding-left: 50px;
		padding-right: 50px;
		}

	.row.text-center > .col {
		text-align: center;
		}
}

.col > img {
	max-width: 100%;
	}

@media only screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}

	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: initial;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: initial;
		}
}

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}

	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: initial;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: initial;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: initial;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: initial;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: initial;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: initial;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: initial;
		}
		
	.m-hidden { display: none; }
}

@media only screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-1of1
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: initial;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: initial;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: initial;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: initial;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: initial;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: initial;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: initial;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: initial;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: initial;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: initial;
		}
	.t-hidden { display: none; }
}
@media only screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: initial;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: initial;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: initial;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: initial;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: initial;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: initial;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: initial;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: initial;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: initial;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: initial;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: initial;
		}
		
	.d-hidden { display: none; }
}

.row.text-center > .col {
	text-align: center;
	}

img {
	vertical-align: middle;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}
.text-left,
.text-left p,
.text-left h1,
.text-left h2,
.text-left h3 {
	text-align: left;
	}

@media only screen and (min-width: 600px) {
	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}
}

/* ----- [ Color variants ] ----------- */
.dark {
	color: #fff !important;
	background: var(--dark-bg);
	}
.dark h2,
.dark h3,
.dark p,
.dark li,
.dark a {
	color: #fff;
	}
.dark a:hover {
	color: var(--accent);
	}

/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	position: fixed;
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	background: transparent;
	background: rgb(255,255,255,0);
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	/* mix-blend-mode: difference; */
	}
/*
.page-header.is-solid {
	background: #111111;
	background: rgba(0,0,0,0.8);
	background: #fff;
	height: 100px;
	}
*/
.page-header .inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	max-width: var(--inner-wide);
	margin: 0 auto;
	padding: 10px 15px;
	}

.logo-wrap {
	display: block;
	max-width: 100px;
	margin: 0;
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	flex: 1 0 auto;
	}
.logo-wrap img {
	width: 100%;
	}

@media screen and (min-width: 570px) {
	.page-header .inner:not(.top-bar) {
		padding: 15px 30px;
		}
	.logo-wrap {
		max-width: 140px;
		}
}

/* navigation */
.navigation {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
	}
.navigation.is-open {
	visibility: visible;
	opacity: 1;
	}
.main-navigation {
	margin: 0;
	}
.main-navigation li {
	font-size: 1.8rem;
	text-align: center;
	margin: 0;
	}
.main-navigation a {
	text-decoration: none;
	}
	
.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	position: relative;
	}
.hamburger:hover {
	opacity: 0.7; }
.hamburger.is-active:hover {
	opacity: 0.7; }
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #000; 
  	/*mix-blend-mode: difference;*/
  	/*filter: invert(1);
	mix-blend-mode: difference;*/
	}

.hamburger-box {
	width: 40px;
	height: 24px;
	width: 36px;
	height: 36px;
	display: inline-block;
	position: relative;
	z-index: 1;
	/*mix-blend-mode: difference;*/
	}
/* alternate
.hamburger:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 65px;
	height: 65px;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	z-index: 0;
	}
*/
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
	mix-blend-mode: difference;
	background-color: #000;
	/*background-color: rgba(255,255,255,1);
/*background-color: #fff;
mix-blend-mode: difference;*/
	z-index: 1;
	}
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
	width: 36px;
	height: 2px;
	background-color: #000;
	/*background-color: #fff;*/
	border-radius: 0;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.12s;
	transition-timing-function: ease;
	background-color: #000;
	/*background-color: #fff;*/
	/*mix-blend-mode: difference;*/
	}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block; }
.hamburger-inner::before {
	top: -8px; }
.hamburger-inner::after {
	bottom: -8px; }

.hamburger--squeeze .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
.hamburger--squeeze .hamburger-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease; 
	}
.hamburger--squeeze .hamburger-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
	}
.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	}


/* ----- [ Home: Page Heros ] ----------- */
.no-hero {
	margin-top: 80px;
	}
.page-hero {
	height: 100vh;
	min-height: 500px;
	max-width: 100%;
	}
.hero-logo {
	max-width: 300px;
	max-width: 370px;
	}

.hero-section {
	min-height: 90vh;
	}
.hero-section:before {
	/*content: "";*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	}

.hero-overlay,
.hero-section-overlay {				
	position: absolute;
	color: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	background: transparent;
	background: rgba(0,0,0,0);
	}
.hero-section-overlay {
	position: relative;
	height: 100%;
	/*height: 90vh;*/
	min-height: 90vh; /* match the height of the parent */
	padding: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: flex-start;
	background: transparent;
	background: rgba(0,0,0,0.5);
	}
.fixed-image {
	/*position: fixed;*/
	height: 90vh; 
	background-attachment: fixed;
	}
	
.hero-text-wrapper {
	color: #1f3038;
	width: 100%;
	max-width: 44em;
	padding: 2em 1.5em 1.5em;
	margin-bottom: 3em;
	background: rgba(236,236,236,0.9);
	}
.contact-page .hero-text-wrapper p {
	line-height: 1.4;
	}
.contact-page .hero-section .hero-section-overlay {
	position: relative;
	}
	
@media (hover: none) {
   .fixed-image {
       background-attachment: initial;
   }
}

@media only screen and (min-width: 600px) {
	.hero-section {
		min-height: 90vh;
		}
	.hero-section-overlay {
		/*position: absolute;*/
		padding: 3em;
		}
	.hero-text-wrapper {
		padding: 2em 2.5em 1.5em;
		}
	.contact-page .hero-section .hero-section-overlay {
		/*position: absolute;*/
		}
}


/* ----- [ Text Sections ] ----------- */
.text-section {
	padding: 80px 0 66px;
	}
.project-text-section {
	padding: 80px 0 66px;
	background: #ececec;
	border-bottom: 20px solid #fff;
	}
	
.text-section p,
.project-text-section p {
	font-family: var(--body-font);
	/*font-style: italic;*/
	font-size: 1.2rem; /*  1.4 */
	text-align: center;
	max-width: 35em;
	margin: 0 auto 1em;
	}

.projects-section {
	padding-bottom: 50px;
	}
.text-section.with-bg {
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
	overflow: visible;
	}
.text-section.with-bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: calc((100vh - 1182px) + 30px / 2);
	right: calc((100vh - 1182px) + 30px / 2);
	bottom: 0;
	background: #ececec;
	z-index: 0;
	}
.map-link img {
	max-width: 100%;
	}
	
.image-fit {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
	
.cell-wrapper {
	margin-bottom: 15px;
	}
@media only screen and (min-width: 600px) {
	.projects-grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		grid-gap: 20px;
		grid-auto-flow: row dense;
		grid-auto-rows: auto;
		margin-bottom: 25px;
		}
	.cell-wrapper {
		grid-column-end: span 6;
		grid-row-end: span 1;
		margin-bottom: 0;
		}
}
/*
.img-1 {
	grid-row-start: 1;
	grid-column-start: 1;
	grid-column-end: span 6;
	}
.img-2 {
	grid-row-start: 2;
	grid-column-start: 1;
	grid-row-end: span 1;
	grid-column-end: span 6;
	}
*/
/*
.img-3 {
	grid-row-start: 1;
	grid-column-start: 7;
	grid-row-end: span 2;
	grid-column-end: span 6;
	}
*/
/*
.img-3 {
	grid-row-start: 1;
	grid-column-start: 7;
	grid-row-end: span 2;
	}
.img-6 {
	grid-row-end: span 2;
	}
.img-6 img { object-position: 100%;}

.img-4,
.img-5 {
	}
.col-span-4 {
	grid-column-end: span 4;
	}
.col-span-12 {
	grid-column-end: span 12;
	}
.row-span-2 {
	grid-row-end: span 2;
	}
.span_6 { grid-column-end: span 6; }
*/

/* ----- [ Main Page (holding page grid) ] ----------- */
.home-grid {
	padding: 0;
	padding-top: 76px;
	}
.parent { 
	display: block;
	}
.parent > div {
	/*margin-bottom: 15px;*/
	}
.col {
	margin-bottom: 0;
	}

.img-wrap {
	height: 100%;
	position: relative;
	background: #636e8f;
	margin-bottom: 15px;
	}
.img-wrap img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}
	
.img-wrap > div {
	position: absolute;
	top: 3px;
	left: 3px;
	padding: 5px;
	background: #fff;
	display: none;
	}
	
.text-wrap {
	color: #fff;
	background: #636e8f;
	padding: 20px;
	padding: 5%;
	margin-bottom: 15px;
	overflow: hidden;
	}
.text-wrap:not(.contact) {
	display: flex;
	justify-content: center;
	align-items: center;
	}
.text-wrap p {
	font-size: 1rem;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0;
	}
.text-wrap.contact p {
	margin: 0 0 1em;
	letter-spacing: 0.05em;
	}

.contact {
	color: #fff;
	padding: 5%;
	background: #1e3038;
	}	

.contact a {
	text-decoration: none;
	}
.contact a:hover {
	color: #fff;
	text-decoration: underline;
	}

.section-2 .four1:after {
	content:"";
	position: absolute;
	top: 5%;
	left: 5%;
	width: 60%;  
	height: 100%;
	background: url('/site/templates/images/2023-Awards-Logo-NC-Blue.png') 0 0 no-repeat;
	background-size: 100%;
	}
	
.section-7,
.section-8 {
	/*aspect-ratio: unset;
	max-height: 1000px;*/
	color: #fff;
	}
.section-7 {
	order: 2;
	}

@media only screen and (min-width: 560px) {
	.section-7 .contact {
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		}
	.section-7 .contact div {
		width: 50%;
		}
	.section-7 .contact div:first-child {
		width: 100%;
		}
}

@media only screen and (min-width: 720px) { 
	.col {
		/*margin-bottom: 15px !important;
		max-height: 440px;
		aspect-ratio: 1.5 / 1;*/
		}
	.parent { 
		display: grid; 
		grid-template-columns: repeat(7, 1fr); 
		grid-template-rows: repeat(4, 1fr);
		/*grid-template-rows: auto minmax(0, 40px);*/
		grid-column-gap: 15px;
		grid-row-gap: 15px; 
		/*height: 65%;*/
		height: 100%;
		}

	.one1 { grid-area: 1 / 1 / 5 / 8; }
	.one2,
	.one3,
	.one4,
	.two3,
	.two4,
	.three4 {
		display: none;
		}

	.two1 { grid-area: 1 / 1 / 5 / 4; } 
	.two2 { grid-area: 1 / 4 / 5 / 8; }

	.two2 { grid-area: 1 / 1 / 5 / 5; } 
	.two1 { grid-area: 1 / 5 / 5 / 8; } 
	
	.three1 { grid-area: 1 / 1 / 5 / 4; } 
	.three2 { grid-area: 1 / 4 / 3 / 8; } 
	.three3 { grid-area: 3 / 4 / 5 / 8; }

	.four1 { grid-area: 1 / 1 / 5 / 4; } 
	.four2 { grid-area: 1 / 4 / 3 / 8; }
	.four3 { grid-area: 3 / 6 / 5 / 8; } 
	.four4 { grid-area: 3 / 4 / 5 / 6; } 

	.four1 { grid-area: 1 / 5 / 5 / 8; } 
	.four2 { grid-area: 1 / 1 / 3 / 5; }
	.four3 { display: none; }
	.four4 { grid-area: 3 / 1 / 5 / 5; }

	.five1 { grid-area: 1 / 1 / 5 / 4; } 
	.five2 { display: none; }
	.five3 { grid-area: 3 / 4 / 5 / 6; } 
	.five4 { grid-area: 3 / 6 / 5 / 8; }
	.five5 { grid-area: 1 / 4 / 3 / 8; }

	.text-wrap p {
		font-size: 1rem;
		}
	.text-wrap {
		padding: 20px;
		margin-bottom: 0;
		}
	.section-7 {
		order: 0;
		}
	.section-7,
	.section-8 {
		aspect-ratio: unset;
		max-height: 1000px;
		color: #fff;
		}
}

@media only screen and (min-width: 1250px) {
	.four3 { display: block; grid-area: 3 / 3 / 5 / 5; } 
	.four4 { grid-area: 3 / 1 / 5 / 3; } 
	.five2 { display: block; grid-area: 1 / 6 / 3 / 8; }
	.five5 { grid-area: 1 / 4 / 3 / 6; }
}

/* buttons */
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	color: #fff;
	font-weight: var(--body-light);
	font-size: 0.95rem;
	text-align: center;
	text-decoration: none !important;
	text-transform: none;
	letter-spacing: 0.1em;
	white-space: nowrap;
	background: var(--accent);
	background: #636e8f;
	border: 1px solid var(--accent);
	border: none;
	border-radius: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0.4em 1.2em;
	margin: 0 0 1em;
	cursor: pointer;
	/* transitions */
	}

.button:hover {
	background: #000;
	color: #fff !important;
	}

@media only screen and (min-width: 37.5em) { 
	.button {
		width: auto;
		}
}

/* ----- [ Projects  Index ] ----- */
.cell-wrapper {
	position: relative;
	overflow: hidden;
	}
.cell-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	}
.cell-link:hover .cell-overlay {
	opacity: 1;
	}
.cell-link img {
	transition: all 0.3s ease-in-out;
	}
.cell-link:hover img {
	opacity: 1;
	transform: scale(1.05);
	}
.cell-overlay h3 {
	font-family: var(--display-font);
	font-style: italic;
	font-size: 1.8rem;
	line-height: 1.3;
	color: var(--white);
	margin: 0;
	}
	
.body-text {
	margin: 5em 0;
	}
.body-text p,
.body-text li {
	font-size: 1.2rem;
	}
.body-text h2 {
	font-style: normal;
	text-transform: capitalize;
	}

/* ----- [ Project Pages ] ----- */

/* ----- [ Awards ] --------------- */
.awards-section {
	padding: 60px 0 60px;
	}
.awards-text-section {
	padding: 60px 0 55px;
	background: var(--light-grey);
	}
	
.awards-text-section p {
	font-family: var(--body-font);
	font-size: 1.2rem; /*  1.4 */
	text-align: center;
	max-width: 35em;
	max-width: 45em;
	margin: 0 auto 1em;
	letter-spacing: 0.03em;
	}

.award-block {
	text-align: center;
	margin: 0 auto 3em;
	}
.badge-wrapper {
	margin: 0 auto 1em;
	}
.badge-wrapper img {
	max-width: 100%;
	max-height: 130px;
	margin: 0 auto;
	}
.award-block p {
	margin-bottom: 0.3em;
	}
.award-block a {
	font-style: italic;
	}
	
.logo-wrapper img {
	max-width: 100%;
	max-height: 80px;
	margin: 0 auto;
	}
	
.news-intro-text {
	font-size: 1.2rem;
	text-align: center;
	margin: 0 0 3em;
	}

/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: left;
	margin: 0;
	padding: 4em 0 0;
	background: var(--dark-bg);
	}

.page-footer p,
.page-footer li {
	font-size: 0.95rem;
	font-size: 0.8rem;  
	line-height: 1.3em;
	font-weight: var(--body-light);
	margin: 0 0 0.4em;
	}

.page-footer a {
	text-decoration: none;
	border: none;
	}
.page-footer a:hover {
	color: inherit;
	text-decoration: underline;
	}

.page-footer .col {
	position: relative;
	margin-bottom: 2em;
	}

.page-footer .col:last-child:after {
	display: none;
	}
.page-footer .col:last-child p {
	border-top: 1px solid var(--accent);
	padding-top: 1em;
	}

.page-footer .col img {
	margin-bottom: 1em;
	}

.footer-logo {
	max-width: 120px;
	margin: 0;
	}
.footer-logo img {
	margin: 0 auto;
	width: 100%;
	}

.site-copyright {
	margin: 0 auto!important;
	padding: 8px 30px;
	background: var(--blue1);
	}

.site-copyright a {
	border: none;
	text-decoration: none;
	}
.site-copyright a:hover {
	text-decoration: underline;
	}

@media screen and (min-width: 770px) {
	.page-footer-col,
	.page-footer-col p {
		text-align: left;
		}
	.page-footer-col:last-child,
	.page-footer-col:last-child p {
		text-align: right;
		}
}

@media screen and (min-width: 900px) {
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper {
	margin: 0;
	}
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 30px;
	width: 30px;
    margin: 0 0.5em 0 0;
    white-space: nowrap;
	}

.social-icons-wrapper .social-icon a,
.social-icons-wrapper .social-icon a:visited {
    opacity: 1;
    border: none;
	}
.social-icons-wrapper .social-icon a:hover,
.social-icons-wrapper .social-icon a:active {
    color: var(--accent);
    opacity: 1;
    border: none;
	}

.social-icons-wrapper .social-icon svg {
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.social-icons-wrapper .social-icon svg:hover {
	fill: var(--accent);
	}


.social-icon span {
	display: none;
	}

.top-link {
	display: none;
    position: fixed;
    bottom: -20px;
    right: 2%;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
	}
.top-link a {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
    background: #8d2427;
    display: block;
    height: 30px;
    width: 30px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
    }
.top-link a:hover {
	border: none;
	background: #8d2427;
	}
	
.top-link .fa {
	margin: 0 0 0 2px;
	line-height: 25px;
	}

/* ----- [ Utility ] --------------- */
p.dropcap:first-child:first-letter {
	font-family: var(--display-font);
	float: left;
	font-size: 3rem;
	line-height: 1;
	padding-top: 0;
	padding-right: 5px;
	padding-left: 2px;
	}

.quickedit {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 99;
	opacity: 0.5;
	}
	
.align_left {
	text-align: left;
	}
.align_right {
	text-align: right;
	}
.align_center {
	text-align: center;
	}

img.align_left {
	float: left;
	margin: 0 2em 1em 0 !important;
	}

img.align_right {
	float: right;
	margin: 0 0 1em 2em !important;
	}

img.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin: 2em auto;
	}
	

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}
#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}

/* ----- [ CMS Content ] ------------------------ */
.cms-content p strong,
.cms-content li strong {
	font-weight: var(--body-med);
	}

.cms-content p > img {
	max-width: 100%;
	display: block;
	}
/*	
.cms-content h2 {
	font-size: 32px;
	margin: 0 0 0.5em;
	}
*/
.cms-content p + h2,
.cms-content ul + h2 {
	margin: 1.2em 0 0.5em;
	}

.cms-content ul,
.cms-content ol {
	margin: 0 0 1em;
	}
.cms-content ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.3em 1.5em;
	}
.cms-content ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-content p > img {
	width: 100%;
	}
.cms-content blockquote p {
	margin: 2em -2.5em -2.5em;
	}
	
/* ----- [ Page specific ] ------------------------ */
/*
.home-page .page-hero:before,
.willow-tree-yard-page .page-hero:before {
	background-position: 50% 0;
	}
*/
.home-page .hero-section {
	background-position: 50% 0;
	}
	
.test {
	position: fixed;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background: #fff;
	left: 20%;
	bottom: 30px;
	z-index: 10;
	mix-blend-mode: difference;
	}


