/* # Site Structure
---------------------------------------------------------------------------------------------------- */

/* ## Box Sizing
--------------------------------------------- */

html,
input[type="search"]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/* ## Float Clearing
--------------------------------------------- */

ul.list-two-col,
.alignwide:before,
.alignfull .wp-block-group__inner-container:before,
.clearfix:before {
	content: " ";
	display: table;
}

ul.list-two-col,
.alignwide:after,
.alignfull .wp-block-group__inner-container:after,
.clearfix:after {
	clear: both;
	content: " ";
	display: table;
}

.clear {
	clear: both;
}


/* # Positioning, display, and max-width
--------------------------------------------- */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.inline-block {
	display: inline-block;
}


/* ## Containers and wraps
--------------------------------------------- */
.site-container {
	background-color: #006057;
}

.site-inner {
	clear: both;
	background-color: #fff;
	padding-bottom: 30px;
}

.content {
	overflow: hidden;
}


/* ## Column Classes
--------------------------------------------- */

.left {
	float: left;
}

.right {
	float: right;
}

/* ## Site Header
--------------------------------------------- */

.site-header {
	width: 100%;
	padding: 25px 0 25px;
}

.site-header .wrap {
	position: relative;
}

.title-area {
	width: 660px;
	float: left;
}

.title-area img {
	display: block;
}

.title-area a:hover img {
	opacity: 0.7;
}

.header-right {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	font-style: italic;
	padding-left: 50px;
	float: left;
	padding-top: 30px;
}

.header-right p {
	margin: 0;
	padding: 0;
}

/* ## Page headers
--------------------------------------------- */
.page-header {
	background: url('../images/page-header-bg.png') top center repeat-y;
	color: #fff;
	text-align: right;
	margin-bottom: 75px;
}

.page-header .wrap {
	background-color: #27AAE1;
	position: relative;
	padding-left: 0;
	padding-right: 0;
}

.page-header h1 {
	font-size: 41px;
	padding: 0;
	/*margin-right: 50px;*/
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 275px;
}

.page-header-decor {
	width: 225px;
	padding: 35px 40px;
	float: right;
	background-color: #fff;
}

.page-header-decor img {
	display: block;
}

.page-header-title,
.page-header-decor {
	display: block;
	margin: 0;
}


/* ## Site Footer
--------------------------------------------- */
.site-footer {
	background-color: #006057;
	color: #fff;
	font-size: 13px;
	padding: 10px 0;
}

.site-footer a {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
}

.site-footer a:hover,
.site-footer a:active,
.site-footer a:focus {
	color: #fff;
	text-decoration: underline;
}

.site-footer p {
	margin: 14px 0;
}

.footer-left,
.footer-right {
	width: 50%;
}

.footer-left {
	float: left;
	text-align: left;
}

.footer-right {
	float: right;
	text-align: right;
}


/* Shrink logo so nav still fits */
@media only screen and (max-width: 1355px) {
	.title-area {
		width: 350px;
	}
	
	.site-header {
		/*padding-bottom: 10px;*/
	}
	
	.header-right {
		font-size: 16px;
		padding-top: 10px;
	}
}

@media only screen and (max-width: 885px) {
	.title-area,
	.header-right {
		text-align: center;
		width: 100%;
		float: none;
	}
	
	.header-right {
		padding-left: 0;
		font-size: 20px;
	}
}


/* Collapse nav */
@media only screen and (max-width: 767px) {
	
	
	/* # Page header
	-------------------------- */
	.page-header {
		margin-bottom: 55px;
	}
	
	.page-header h1 {
		font-size: 26px;
		right: 160px;
		line-height: 1.1;
		padding-left: 10px;
	}

	.page-header-decor {
		width: 125px;
		padding: 20px 20px;
	}


	/* # Footer
	-------------------------- */
	.footer-left,
	.footer-right {
		float: none;
		text-align: center;
		width: 100%;
	}

}

@media only screen and (max-width: 600px) {
	.header-right {
		font-size: 16px;
	}
}

@media only screen and (max-width: 480px) {


}