.bgSuperBlue {
	background-color: var(--superBlue);
}
.bgWhite {
	background-color: #fff;
}
.bgWhiteTransp {
	background-color: rgba(255,255,255,0.9);
}
.navPadding{
	padding-top: var(--navHeightExp);
}

.pageHeader{
	padding-top: 60px;
	padding-bottom: 60px;
}
.pageHeader p {
	font-size: 1.25rem;
	margin-bottom: 0;
	font-weight: bold;
	font-style: italic;
}
h1 {
	font-family:ethnocentricitalic;
	color: var(--superBlue);
	font-size: 1.75rem;
	text-shadow: 3px 3px 0px #fff;
}
.rte figure img{
	max-width: calc(100vw - 45px);
	max-height: auto;
}



/*
*
*
*
Contact Page
*
*
*
*/
body.contact{
	padding-top: 116px;
	background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.row.contactFormWrap {
	margin-bottom: 60px;
}
form {
	background-color: rgba(255,255,255,0.85);
	border-radius: 6px;
}
form .row{
	padding: 32px;
}
label.form-label {
	font-size: 14px;
	font-weight: bold;
	color: var(--superBlue);
	margin-bottom: 3px;
}
input.form-control, textarea.form-control{
	margin-bottom: 16px;
}
input.form-control::placeholder, textarea.form-control::placeholder{
	font-size: 13px;
}
form .address {
	z-index: -1500;
	height: 0px;
}





/*
*
*
*
Galleries
*
*
*
*/

.galleryContainer {
	background-color: rgba(0,0,0,0.75);
}
.galleryDesc {
	color: #fff;
	font-size:1.125rem;
}
.galleryInner {
	position: relative;
	background-color: rgba(255,255,255,0.85);
	border: 1px solid #fff;
	transition: all .3s;
}
.galleryInner:hover {
	background-color: rgba(255,255,255,0.95);
	box-shadow: 3px 3px 4px rgba(0,0,0,0.75);
}
.galleryInner p a {
	font-size:1.25rem;
	color: var(--superBlue);
	font-weight:bold;
}
.blueimp-gallery-display>.next, .blueimp-gallery-display>.prev {
	width: 4px;
	height: 16px;
	webkit-border-radius: 0;
	moz-border-radius: 0;
	border-radius: 0;
}
.blueimp-gallery-display>.close {
	width: 20px;
	height: 20px;
}
.blueimp-gallery>.indicator>li:hover:after {
	background-size: cover!important;
}
/*
*
MASONRY
*
*/

/* fluid 5 columns */
.grid-sizer {
	width: 100%;
	margin-bottom: 10px;
}
.grid-item {
	width: 100%;
	margin-bottom: 10px;
}
/* 2 columns */
.grid-item--width2 { width: 40%; }






/*
*
*
*
	MD & Up Styles
*
*
*
*/
@media (min-width: 768px) {
/*
*
MASONRY
*
*/

/* fluid 5 columns */
.grid-sizer {
	width: calc(50%);
}
.grid-item {
	width: calc(50%);
	margin-bottom: 10px;
}
/* 2 columns */
.grid-item--width2 { width: 40%; }
}





/*
*
*
*
	LG & Up Styles
*
*
*
*/
@media (min-width: 992px) {
	.pageHeader{
		padding-top: 75px;
		padding-bottom: 75px;
	}
	h1 {
		font-size: 2rem;
	}
}






/*
*
*
*
	XL & Up Styles
*
*
*
*/
@media (min-width: 1200px) {
	h1 {
        font-size: 2.5rem;
    }
	.footerLogoWrap {
		position: relative;
		top: -55px;
		padding: 0 30px;
	}
	/*
	*
	MASONRY
	*
	*/

	/* fluid 5 columns */
	.grid-sizer {
		width: calc(33% - 10px);
	}
	.grid-item {
		width: calc(33% - 10px);
	}
	/* 2 columns */
	.grid-item--width2 { width: 40%; }
}