/**** Global.css for NW Asbestos *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block; }


/* 0. VARIABLES */
:root {
	--orange: #E57631;
	--blueDark: #248EAE;
	--blueLight: #0AECF3;
	--greyDark: #142E33;
	--greyLight: #e6e7e8;
}


/* 1.ROOT */

html {
	overflow-y: scroll;
	background: #fff;
}
body { 
	margin: 0 auto;
	padding: 0;
	width: 100%;
	font: 100%/1.4 "Poppins","Helvetica Neue", Helvetica, Arial;
	color: var(--greyDark); 
	font-weight: 400;
	background-color: transparent;
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%;
}




/* 2.HEADINGS */

h1, 
h2, 	
h3, 
h4, 
h5, 
h6 {
	font-weight: 600;
}
h1 { 
	margin-bottom: .75em;
	font-size: 1.7em;
	line-height: 1.1;
}
h2 { 
	margin-bottom: .75em;
	font-size: 1.6em;
	line-height: 1;
	padding-top: 10px;
}
h3 { 
	margin-bottom: 1em;
	font-size: 1.2em;
	line-height: 1.3;
}
h4 { 
	margin-bottom: 1.25em;
	font-size: 1.1em;
	line-height: 1.25;
}
h5 { 
	margin-bottom: 1.5em;
	font-size: 1em;
}
h6 { 
	font-size: 1em;
}
h1 em,
h2 em,
h3 em,
h4 em  {
	font-style: normal;
	color: var(--orange);
}





/* 3.TYPOGRAPHY */

p, 
ol, 
ul, 
dl, 
address { 
	margin-bottom: 1.5em; 
	font-size: 1em;
}
ul, 
ol { 
	margin: 0 0 1.5em -24px; 
	padding-left: 24px;
}
ul { 
	list-style-type: disc;
	margin-left: 0.2em;
}
ol { 
	list-style-type: decimal;
	margin-left: 0.2em;
}
li ul, 
li ol { 
	margin: 0;
	font-size: 1em;
}
blockquote  { 
	margin: 0 0 1.5em -24px; 
	padding-left: 24px; 
	border-left: 1px solid rgb(200,200,200);
	font-style: italic;
}
sup, 
sub { 
	position: relative;
	font-size: 75%; 
	line-height: 0;
}
sup { 
	top: -.5em;
}
sub { 
	bottom: -.25em;
}
strong {
	font-weight: 600;
}





/* 4.LINKS */

a {
	outline: none;
	color: var(--blueDark);
}
a:link {
	-webkit-tap-highlight-color: rgb(52,158,219);
}
a:visited {
	color: var(--greyDark);
}
a:hover { 
	outline: none;
	color: var(--blueDark); 
	text-decoration: none;
}
a:active, 
a:focus { 
	outline: none;
	color: var(--blueDark);
}





/* 6.TABLES */

table { 
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1.4em; 
	width: 100%;
}
th { 
	font-weight: bold;
}
th, td, caption { 
	padding: .25em 10px .25em 5px;
}





/* CUSTOM */
/* CUSTOM */
/* CUSTOM */
/* CUSTOM */
#container {
	padding-top: 76px;
}
.wrapper {
	width: 95%;
	max-width: 1248px;
	margin: 0 auto;
}
img {
	display: block;
	width: 100%;
	height: auto;
	max-width: fit-content;
}



/***** Header *****/
header {
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9998;
	background: #fff;
	border-top: 5px solid var(--blueDark);
	box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
	transition: all 0.15s ease-in-out;
}
header.fixed {
	border-top-width: 0px;
}
#logo {
	width: 160px;
	height: auto;
	aspect-ratio: 158 / 50;
	background: url('../images/north-west-asbestos-logo.svg') no-repeat 0 0;
	background-size: 100% auto;
}
#logo a {
	display: block;
	height: 100%;
}
#iconMenu {
	color: #333;
	text-align: center;
	width: 30px;
	height: 40px;
	position: fixed;
	top: 19px;
	right: 5%;
	z-index: 9999;
	background: url('../images/icon-hamburger.svg') no-repeat center center;
	background-size: 30px auto;
}
#iconMenu.active {
	background-image: url('../images/icon-close.svg');
	background-size: 26px auto;
}
#headernav {
	display: none;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	padding: 8px 0 12px 0;
	background: #fff;
	border-bottom: 2px solid rgba(0,0,0,0.1);
}
header ul {
	margin: 0;
	padding: 0 5%;
	list-style: none;
}
#headernav a,
#headernav a:link,
#headernav a:visited {
	color: var(--greyDark);
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 6px 0;
}
#headernav a:hover,
#headernav .active a:hover {
	color: var(--blueLight);
}
#headernav .active a {
	color: var(--blueDark);
	font-weight: 600;
}
#headernav .active ul a {
	font-weight: 400;
	color: var(--greyDark);
}
.socialslink {
	width: 30px;
	height: 30px;
	display: inline-block;
}
.linkedin {
	background: url('../images/icon-linkedin-pos.svg') no-repeat center center;
	background-size: 100% auto;
}
.linkedin:hover {
	background-image: url('../images/icon-linkedin-hover.svg');
}



/***** heroSlider *****/
.heroSlider {
	position: relative;
}
.heroSlider .wrapper {
	/*position: absolute;
	left: 5%;
	max-width: 1024px;
	bottom: 0;
	top: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;*/
}
.heroSlider_slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.heroSlider_text {
	/*flex: 0 1 auto;*/
	padding: 50px 0;
	margin: 0 auto;
	width: 80%;
	align-self: center;
	color: #fff;
	text-shadow: 2px 2px 4px #000;
}
.heroSlider_text p {
	margin-bottom: 0;
}



/***** servicesList *****/
.servicesList {
	background: var(--greyDark);
	padding: 50px 0;
}
.servicesList .wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.servicesList_item {
	flex: 0 1 auto;
	width: 48%;
	max-width: 260px;
	text-align: center;	
	margin-bottom: 20px;
}
/*.servicesList_item:nth-child(7),
.servicesList_item:nth-child(8) {
	margin-bottom: 0;
}*/
.servicesList_item_img {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	width: 40%;
	margin: 0 auto 10px auto;
}
.servicesList_item_img img {
	display: block;
}
.servicesList a {
	color: #fff !important;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
}
.servicesList a:hover img {
	margin-top: -100%;
}



/***** textColumnOne *****/
.textColumnOne {
	background: var(--greyLight);
	text-align: center;
	padding: 40px 0;
	margin: 12px 0;
}
.textColumnOne .wrapper {
	width: 90%;
	max-width: 800px;
}
.textColumnOne h2 {
	padding-top: 0;
}
p.intro {
	font-weight: 600;
	font-size: 1.1em;
}
.textColumnOne p:last-child {
	margin-bottom: 0;
}
.textColumnOne.leftAlign p {
	text-align: left;
}



/***** twoColumnTextImg *****/
.twoColumnTextImg {
	margin: 12px 0;
}
.twoColumnTextImg h2 {
	padding-top: 0;
}
.twoColumnTextImg p:lasts-child {
	margin-bottom :0;
}
.twoColumnTextImg_text ul {
	list-style: none;
	padding: 0;
}
.twoColumnTextImg_text li {
	background: url("../images/icon-arrow-right.svg") no-repeat left center;
	background-size: 8px auto;
	padding-left: 16px;
	margin: 3px 0;
}
.twoColumnTextImg_img {
	margin-bottom: 20px;
}



/***** contactStrip *****/
.contactStrip {
	background: var(--greyDark);
	padding: 30px 0;
	margin: 12px 0;
	color: #fff;
}
.contactStrip .wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
}
.contactStrip_text,
.contactStrip_arrow,
.contactStrip_button {
	flex: 0 1 auto;
	align-self: center;
}
.contactStrip_text {
	width: calc(55% - 13px);
	font-weight: 600;
	line-height: 1;
}
.contactStrip_arrow {
	width: 26px;
	aspect-ratio: 5 / 7;
	background: url("../images/icon-arrow-right.svg") no-repeat center center;
	background-size: auto 100%;
}
.contactStrip_button {
	width: calc(45% - 26px);
	font-weight: 600;
	font-size: 20px;
}
.contactStrip_button em {
	color: var(--orange);
}
.contactStrip a {
	text-decoration: none;
	color: #fff;
}
.contactStrip a:hover,
.contactStrip a:hover em {
	color: var(--blueLight);
}



/***** partners *****/
.partners {
	padding: 50px 0;
	text-align: center;
}
.partners .slick-slider .slick-track {
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.partnersList_item {
	width: fit-content !important;
	flex: 0 1 auto;
	align-self: center
}
.partnersList_item a {
	align-self: center;
}
.partners img {
	max-width: 320px;
	max-height: 80px;
	width: fit-content;
	height: fit-content;
	display: block;
	margin: 0 auto;
}



/***** pageBanner *****/
.pageBanner {
	background-color: var(--greyLight);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 30px 0;
}
.pageBanner h1 {
	margin: 0;
	padding: 0;
	color: #fff;
	text-shadow: 2px 2px 4px #000;
}
.pageBannerServices {
	text-align: center;
}



/***** highlight *****/
.highlight {
	background: var(--orange);
	padding: 30px 0;
	margin: 12px 0;
	color: #fff;
	font-weight: 600;
}
.highlight .wrapper {
	width: 80%;
	max-width: 800px;
}
.highlight p:last-child {
	margin: 0;
	text-align: center;
}


/***** fullImage *****/
.fullImage {
	margin: 12px 0;
}
.fullImage .wrapper {
	width: 100%;
	max-width: none;
}
.fullImage img {
	width: 100%;
	max-width: none;
}





#newsIndex {
	padding: 30px 0;
}
.newsIndex_story {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}
.newsIndex_story_img,
.newsIndex_story_text {
	flex: 0 1 auto;
}
.newsIndex_story_img {
	width: 60px;
}
.singlePost h2 {
	color: var(--orange);
}
.columnTitle {
	color: var(--purple);
	border-bottom: 2px solid var(--teal);
}
article img {
	display: block;
	width: 100%;
	height: auto;
}
.singlePost {
	margin-bottom: 30px;
}
.singlePost img {
	margin-bottom: 1.4em;
}
.newsIndex_story_text {
	width: calc(100% - 70px);
}
.newsIndex_story_text h3 {
	margin: -3px 0 0 0;
	padding: 0;
	font-size: 16px;
}
.newsIndex_story_text h3 a {
	color: var(--orange);
	text-decoration: none;
}
.newsIndex_story_text h3 a:hover {
	color: var(--blueLight);
}
.newsIndex_story_text p {
	font-size: 15px;
}
#newsTagsList {
	margin: 0;
	padding: 0;
	list-style: none;
}
#newsTagsList li {
	margin: 0 0 6px 0;
}
#newsTagsList a {
	text-decoration: none;
	color: #333;
}
#newsTagsList a:hover {
	color: var(--blueLight);
}
.articleTitle {
	font-size: 30px;
	font-weight: 400;
	padding: 20px 0 0 0;
}
article img.heroImage,
.newsIndex_story_img img {
	width: 100%;
}
#pagination {
	width: 100%;
	padding: 20px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pagePrev,
.pageNext {
	flex: 0 1 auto;
	width: 48%;
}
.pageNext {
	text-align: right;
}
h2.singlePost_title {
	color: var(--purple);
	font-size: 24px;
}




/***** projectIntro *****/
.projectIntro,
.projectDesc,
.projectGallery {
	margin: 30px 0;
}
.projectDesc h2 {
	color: var(--orange);
}
.projectIntro h3 {
	margin: 0;
	padding: 0;
	color: var(--orange);
}
.projectIntro p {
	margin: 0 0 0.75em 0;
	padding: 0;
}
.projectIntro_text {
	padding: 20px 0 0 0;
}
.projectGallery_item {
	margin-bottom: 20px;
}





/***** Contact *****/
.contactInfo {
	background: var(--greyLight);
	padding: 40px 0;
	margin: 12px 0;
}
.contactInfo_details {
	margin-bottom: 20px;
}
.contactInfo .contactIcon {
	padding: 10px 0 0 36px;
}
.contactInfo .contactIcon:before {
	width: 30px;
	height: 30px;
	top: 6px;
	background-size: 30px auto;
}
.contactInfo .contactIcon_map:before {
	background: url("../images/icon-location-pos.svg") no-repeat center center;
}
.contactInfo .contactIcon_phone:before {
	background: url("../images/icon-phone-pos.svg") no-repeat center center;
}
.contactInfo .contactIcon_email:before {
	background: url("../images/icon-email-pos.svg") no-repeat center center;
}
.contactInfo_text p {
	margin: 0;
}
.map {
	margin: 12px 0;
}
.map .wrapper {
	width: 100%;
	max-width: none;
}
.map iframe {
	width: 100% !important;
}





/***** Footer *****/
footer {
	background: var(--greyDark);
	color: #fff;
	padding: 30px 0;
}
footer .wrapper {
	width: 90%;
}
footer h2 {
	font-size: 1.4em;
}
footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer a,
footer a:visited {
	color: #fff !important;
	text-decoration: none;
}
footer a:hover {
	color: var(--blueLight) !important;
}
footer #logo {
	margin-bottom: 16px;
}
#footerCol1 {

}
#footerCol1,
#footerCol2 {
	margin-bottom: 30px;
}
.contactIcon {
	padding: 0 0 0 30px;
	position: relative;
	margin: 0 0 12px 0;
}
.contactIcon:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
}
.contactIcon_map:before {
	background: url('../images/icon-location-neg.svg') no-repeat center center;
	backgroun-size: 20px auto;
}
.contactIcon_phone:before {
	background: url('../images/icon-phone-neg.svg') no-repeat center center;
	backgroun-size: 20px auto;
}
.contactIcon_email:before {
	background: url('../images/icon-email-neg.svg') no-repeat center center;
	backgroun-size: 20px auto;
}
footer .socialslink {
	width: 40px;
	height: 40px;
}
footer .linkedin {
	background-image: url('../images/icon-linkedin-neg.svg');
}
#footerLegals {
	border-top: 5px solid var(--orange);
	background: var(--blueDark);
	color: #fff;
	padding: 15px 0;
	font-size: 14px;
}
#footerLegals a {
	color: #fff !important;
	text-decoration: none;
}




@media screen and (min-width: 768px) {
	.heroSlider_text {
		padding: 80px 0;
		width: 80%;
	}
	.servicesList .wrapper {
		justify-content: center;
	}
	.servicesList_item {
		width: 33%;
		margin-bottom: 30px;
	}
	.servicesList_item_title {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	.twoColumnTextImg .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.twoColumnTextImg_img,
	.twoColumnTextImg_text {
		flex: 0 1 auto;
		width: 48%;
		align-self: center;
	}
	.twoColumnTextImg_img {
		margin-bottom: 0px;
	}
	.contactStrip_text {
		width: 70%;
		font-size: 20px;
	}
	.contactStrip_arrow {
		width: 40px;
	}
	.contactStrip_button {
		width: calc(30% - 60px);
	}
	#newsIndex {
		padding: 60px 0;
	}
	#newsIndex .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#newsIndex article,
	#newsIndex aside {
		-webkit-flex: 0 1 auto;
		-moz-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		-o-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	#newsIndex article {
		width: 64%;
	}
	#newsIndex aside {
		padding: 0;
		width: 30%;
	}
	.columnTitle {
		padding-top: 0;
	}
	#newsIndex_items {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.newsIndex_story {
		flex: 0 1 auto;
		width: 48%;
		margin-bottom: 20px;
		align-content: flex-start;
	}
	.newsIndex_story_img,
	.newsIndex_story_text {
		width: 100%;
	}
	.newsIndex_story_text {
		padding: 0.5em 1em 1em 0.5em;
	}
	.newsIndex_story .category {
		color: var(--orange);
		font-weight: 600;
	}
	.newsIndex_story_text h3 {
		margin: 0 0 0.3em 0;
	}
	.newsIndex_story_text p {
		margin-bottom: 0;
	}
	#newsTagsList li {
		margin-bottom: 0.5em;
	}
	.singlePost h3 {
		font-size: 1.5em;
		line-height: 1.1;
	}
	.projectIntro .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.projectIntro_img,
	.projectIntro_text {
		flex: 0 1 auto;
		width: 48%;
		align-self: center;
	}
	.projectDesc .wrapper {
		padding-right: 30%;
	}
	.projectGallery .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.projectGallery_item {
		flex: 0 1 auto;
		width: 49%;
		margin-bottom: 2%;
	}
	.contactInfo {
		padding: 50px 0;
	}
	.contactInfo .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 800px;
	}
	.contactInfo_details,
	.contactInfo_text {
		flex: 0 1 auto;
		width: 48%;
	}
}


@media screen and (min-width: 1024px) {
	#iconMenu {
		display: none;
	}
	#container {
		padding-top: 227px;
	}
	header {
		padding: 50px 0 44px 0;
		border-top-width: 50px;
	}
	header .wrapper {
		position: relative;
	}
	header.fixed {
		padding: 12px 0;
	}
	#logo {
		width: 260px;
	}
	#headernav {
		display: block;
		position: absolute;
		left: inherit;
		right: 0;
		top: 20px;
		width: fit-content;
		background: none;
		border: none;
	}
	#headernav ul {
		padding: 0;
	}
	#headernav li {
		display: inline-block;
		float: left;
		margin: 0 38px 0 0;
		height: 30px;
		position: relative;
	}
	#headernav li:last-child {
		margin: 0;
	}
	#headernav li ul {
		display: none;
		position: absolute;
		left: 0;
		top: 30px;
		width: 450px;
		background: #fff;
	}
	/* turns the sub menu on */
	#headernav li:hover ul {
		display: block;
	}
	/* turns the parent rollover on  */
	#headernav :hover > a {
		color: var(--blueLight);
	}
	#headernav li li {
		display: block;
		float: none;
		width: 100%;
		height: auto;
	}
	#headernav li li a:link,
	#headernav li li a:visited {
		display: block;
		padding: 4px 10px;
	}
	#headernav li li a:hover {
		background: var(--blueDark);
		color: var(--blueLight);
	}
	#headernav a, 
	#headernav a:link,
	#headernav a:visited {
		padding: 0;
		height: 30px;
		line-height: 30px;
	}
	h1 {
		font-size: 2.4em;
	}
	.heroSlider_text p {
		font-size: 24px;
	}
	.servicesList {
		padding: 100px 0;
	}
	.servicesList .wrapper {
		justify-content: space-between;
	}
	.servicesList_item {
		width: 22%;
		margin-bottom: 50px;
	}
	.servicesList_item:nth-child(9),
	.servicesList_item:nth-child(10),
	.servicesList_item:nth-child(11),
	.servicesList_item:nth-child(12) {
		margin-bottom: 0;
	}
	.servicesList_item_img {
		width: 80%;
	}
	.servicesList a {
		font-size: 20px;
	}
	.servicesList_item_title {
		width: 100%;
	}
	h2 {
		font-size: 2em;
	}
	.textColumnOne {
		padding: 60px 0;
		margin: 20px 0;
	}
	p.intro {
		font-size: 20px;
	}
	.twoColumnTextImg {
		margin: 20px 0;
	}
	.contactStrip {
		margin: 20px 0;
	}
	.contactStrip_text {
		width: 60%;
		text-align: right;
	}
	.contactStrip_arrow {
		width: 80px;
		background-size: 40px auto;
	}
	.contactStrip_button {
		width: calc(40% - 80px);
		font-size: 30px;
	}
	.pageBanner {
		padding: 50px 0;
	}
	.highlight {
		padding: 50px 0;
		font-size: 20px;
		margin: 20px 0;
	}
	.fullImage {
		margin: 20px 0;
	}
	.projectIntro,
	.projectDesc,
	.projectGallery {
		margin: 40px 0;
	}
	.projectIntro h3 {
		font-size: 26px;
	}
	.projectIntro p {
		font-size: 20px;
		margin-bottom: 1em;
	}
	.map {
		margin: 20px 0;
	}
	footer {
		padding: 60px 0;
		font-size: 14px;
	}
	footer .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#footerCol1,
	#footerCol2,
	#footerCol3 {
		flex: 0 1 auto;
		margin: 0;
	}
	#footerCol1 {
		width: 35%
	}
	#footerCol2 {
		width: 45%;
	}
	#footerCol3 {
		width: 20%;
	}
	footer #logo {
		margin-bottom: 30px;
	}
	#footerCol1 h2,
	#footerCol2 h2,
	#footerCol3 h2 {
		padding-top: 0;
		font-size: 22px;
	}
	footer .contactIcon {
		margin-left: 6px;
	}
	.contactIcon:last-child {
		margin-bottom: 0;
	}
	#footerLegals .wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#footerLegals_text,
	#footerLegals_byline {
		flex: 0 1 auto;
		width: 48%;	
	}
	#footerLegals_byline {
		text-align: right;
	}
}

@media screen and (min-width: 1248px) {
	#headernav a, 
	#headernav a:link,
	#headernav a:visited {
		font-size: 20px;
	 }
	#headernav li {
		margin: 0 40px 0 0;
	}
	.heroSlider_text {
		padding: 120px 0;
		width: 70%;
	}
	h1 {
		font-size: 2.8em;
	}
	h2 {
		font-size: 2.4em;
	}
	.textColumnOne {
		padding: 100px 0;
	}
	.twoColumnTextImg_img {
		width: 50%;
	}
	.twoColumnTextImg_text {
		width: 46%;
	}
	.contactStrip_text {
		width: 55%;
		font-size: 26px;
	}
	.contactStrip_button {
		width: calc(43% - 80px);
	}
	.partners {
		padding: 100px 0;
	}
	.pageBanner {
		padding: 80px 0;
	}
	.newsIndex_story_text,
	.newsIndex_story_text h3 {
		font-size: 18px;
	}
	.newsIndex_story_text {
		padding-bottom :0;
	}
	.projectIntro,
	.projectDesc,
	.projectGallery {
		margin: 60px 0;
	}
	.projectDesc .wrapper {
		padding-right: 26%;
	}
	#footerCol3 {
		width: 17%;
		text-align: center;
	}
	#footerCol3 h2 {
		text-align: right;
	}
	.newsIndex_story {
		width: 47%;
		margin-bottom: 45px;
	}
	.contactInfo {
		padding: 100px 0;
	}
}







/* 15.VENDOR-SPECIFIC */

::-webkit-selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

::-moz-selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

::selection { 
background: rgb(23,119,175); 
color: rgb(250,250,250); 
text-shadow: none; }

input {
	-webkit-appearance: none;
}

/* How to stop Apple from making links blue: */
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}


div,
input,
textarea  { 
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box; }