/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:normal 14px/1.4 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#00518a;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
main a {
	color:#C35429;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
h1 {
	font-family: 'Fjalla One', sans-serif;
	font-size:3.5em;
	text-transform: uppercase;
	color:#00518a;
}
main h1 {
	width:1200px;
	margin: 0.67em auto 0;
}
h2 {
	font-family: "Fjalla One", sans-serif;
	font-size:2.8em;
	text-transform: uppercase;
	color:#00518a;
	font-weight: normal;
	line-height: 1.1;
}
h3 {
	font-family: "Fjalla One", sans-serif;
	font-size:1.7em;
	text-transform: uppercase;
	color:#000;
	font-weight: normal;
	line-height: 1.1;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	position:relative;
}
.container {
	width:1200px;
	margin:0 auto;
}
.wp-block-group {
	width:1200px;
	margin:0 auto;
}
.full-width {
	width:100%;
	padding:30px 0;
}
.full-width .wp-block-group__inner-container {
	width:1200px;
	margin:0 auto;
}
/* header */
.header {

}
/* logo */
.logo {
	position: relative;
	float:left;
	padding:4px 0;
}
.logo-img {

}
/* nav */
.header-nav {
	background-color:#00518a;
	position: relative;
	float:left;
	width:100%;
	padding:8px 0;
}
.secondary-nav-div {
	float:right;
	position: relative;
	padding-top:43px;
}
.secondary-nav li {
	position: relative;
}
.secondary-nav li a {
	padding:8px 8px;
	transition: all 0.7s ease;
}
.secondary-nav ul li a:hover {
	background-color:#00518a;
	color:#fff;
}
.secondary-nav ul ul {
    display: none;
}
.secondary-nav ul li:hover > ul {
    display: block;
}
.secondary-nav ul ul {
    display: none;
    position: absolute;
    top: 2em;
    left: 0;
    z-index: 99999;
    background: #eee;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    width:200px;
    padding:0;
}
.secondary-nav ul li:hover > ul {
    display: block;
}
.secondary-nav ul ul li {
	width:100%;
}
.secondary-nav ul ul li a {
	color:#00518a;
	padding:0;
	padding:8px 0 8px 8px;
	display:block;
	font-size:14px;
}
.secondary-nav ul ul li a:hover {
	background-color:none;
}
.secondary-nav ul ul ul {
    display: none;
    position: absolute;
    top: 0;
    left: 200px;
    z-index: 99999;
    background: #eee;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    width:200px;
    padding:0;
}
.main-nav li {
	position: relative;
}
.main-nav ul li a {
	color:#fff;
	padding:13px 13px;
	transition: all 0.7s ease;
}
.main-nav ul li a:hover {
	background-color:#ddd;
	color:#00518a;
}
.main-nav ul ul {
    display: none;
    position: absolute;
    top: 2.3em;
    left: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    width:200px;
    padding:0;
}
.main-nav ul li:hover > ul {
    display: block;
}
.main-nav ul ul li {
	width:100%;
}
.main-nav ul ul li a {
	color:#00518a;
	padding:0;
	padding:8px 0 8px 8px;
	display:block;
	font-size:14px;
}
.main-nav ul ul li a:hover {
	background-color:none;
}
.main-nav ul ul ul {
    display: none;
    position: absolute;
    top: 0;
    left: 200px;
    z-index: 99999;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    width:200px;
    padding:0;
}
nav ul {
	margin:0;
	padding:7px 0 0;
	float:right;
}
nav li {
	display:inline-block;
}
nav ul li a {
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-size:16px;
}
.main-nav li > a:after { margin-left: 5px; content: '\25BC'; }
.main-nav li li > a:after { margin-left: 5px; content: '\25BA'; }
.main-nav li > a:only-child:after { margin-left: 0; content: ''; }

.secondary-nav li > a:after { margin-left: 5px; content: '\25BC'; }
.secondary-nav li li > a:after { margin-left: 5px; content: '\25BA'; }
.secondary-nav li > a:only-child:after { margin-left: 0; content: ''; }

.btn-container {
	border:2px solid #ebebeb;
	display:inline-block;
	padding:10px 12px;
	background-color:#00518a;
}
.btn {
	padding:12px 20px;
	transition: all 0.7s ease;
	text-transform: uppercase;
	font-weight:bold;
	color:#fff;
}
.btn:hover {
	background-color:#e7dbcb;
	padding:20px;
	color:#00518a;
}
#breadcrumbs{
    list-style:none;
    margin:0 0 20px;
    padding:0;
    overflow:hidden;
}
  
#breadcrumbs li{
    display:inline-block;
    vertical-align:middle;
    margin-right:15px;
}
  
#breadcrumbs .separator{
    font-size:18px;
    font-weight:100;
    color:#ccc;
}
/* search */
.search {
	position: relative;
	float:left;
	margin-right:20px;
}
.search input {
	height:30px;	
}
form.search button {
  background: none;
  color: white;
  font-size: 17px;
  border: 0;
  border-left: none;
  cursor: pointer;
  color:#fff;
  padding:5px 8px 6px;
}

form.search button:hover {
  background: #fff;
  color:#00518a;
}

form.search::after {
  content: "";
  clear: both;
  display: table;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	background-color:#00518a;
	padding:20px;
	color:#fff;
}
.copyright {
	text-align:center;
}
.copyright a {
	color:#fff;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
article > p {
	width:1200px;
	margin:0 auto;
}
article > ul {
	width:1200px;
	margin:0 auto;
}

article > figure {
	width:1200px;
	margin:0 auto;
}
article > hr {
	width:1200px;
	margin:15px auto;
}
article.post {
	width:1200px;
	margin:0 auto;
}
article .entry-content {
	width:1200px;
	margin:0 auto;
}
.date {
	font-size:12px;
	color:#C35429;
}
.author {
	font-size:12px;
}
.comments {
	font-size:12px;
}
div.comments {
	background-color:#e7dbcb;
}
div.comments div.comment-respond {
	width:1200px;
	margin:0 auto;
	padding:20px 0;
}
p {
	padding:10px  0;
	line-height: 22px;
}
.wp-block-latest-posts a {
	font-family: "Fjalla One", sans-serif;
	font-size:1.7em;
	text-transform: uppercase;
	color:#000;
	font-weight: normal;
	line-height: 1.1;
}
a.view-article {
	text-transform: normal;
	color:#C35429;
	font:normal 14px/1.4 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.wp-block-latest-posts__featured-image {
	margin-bottom:30px;
}
.post-container {
	display: flex;
	align-items: stretch;
}
.post-thumnb {
	width: 150px;
	flex-shrink: 0;
	padding-top:35px;
}
.post-content {
	width:100%;
}
.tdih_event_year {
	font-weight:bold;
}
dd {
	margin:10px 0;
}
#mobile {
	display:none;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



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

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

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

}
@media only screen and (min-width:769px) {
	#toggle {
		display:none;
	}
	#popout {
		display:none;
	}
	#mobilemenu {
		display:none;
	}
}
@media screen and (max-width: 768px) { 
	.secondary-nav {
		display:none;
	}
	.main-nav {
		display:none;
	}
	.logo {
		width:60px;
	}
	header {
		position: fixed;
		width:100%;
		background-color:#fff;
		z-index:1000;
	}
	main {
		padding-top:88px;
		padding-left:10px;
	}
	#mobilemenu {
		float:right;
		margin-top: 20px;
	}
	#popout {
		position: fixed;
		height: 100%;
		width: 250px;
		background: rgb(25, 25, 25);
		background: rgba(25, 25, 25, .9);
		color: white;
		top: 0px;
		left: -250px;
		overflow:auto;
		z-index:3;
	}
	 
	 
	#toggle {
		float: right;
		position: fixed;
		top: 30px;
		right: 45px;
		width: 28px;
		height: 24px;
	 
	}
	.nav-menu ul {
		list-style-type:none;
		margin:0;
		padding:0;
	}
	.nav-menu ul ul {
		display:none;
	}
	.nav-menu li { 
		border-bottom:1px solid #444; 
		padding:10px 0 10px 10px;
		width:100%;
	}
	 
	.nav-menu li:hover { 
		background:#444;
	}
	 
	.nav-menu li a { 
		color:#FFF;
		text-decoration:none;
		width:100%;
	}
} 
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (max-width:1200px) {
	.container {
		width:100%;
	}
	.wp-block-group {
		width:100%;
	}
	article > p {
		width:100%;
	}
	article > ul {
		width:100%;
	}

	article > figure {
		width:100%;
	}
	article > hr {
		width:100%;
	}
	article.post {
		width:100%;
	}
	article .entry-content {
		width:100%;
	}
	.full-width .wp-block-group__inner-container {
		width:100%;
	}
	main h1 {
		width:100%;
	}
	article {
		width:100%;
	}
	.wp-block-group {
		padding-left:15px;
		padding-right:15px;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
