/*
	Theme Name: Schoolyard
	Description: This is a custom Genesis child theme created for School Specialty Inc.
	Author: Brian Tellock
	Author URI: http://briantellock.com/
	Version: 2.0.1

	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

	Template: genesis
	Template Version: 2.0.1

	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/


/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Header Navigation
	- Primary Navigation
	- Secondary Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Footer Widgets
- Site Footer
- Media Queries
	- Retina Display
	- Max-width: 1200px
	- Max-width: 960px
	- Max-width: 800px
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

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

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

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

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

body {
	background-color: #f2f2f2;
	color: #4d4d4d;
	font-family:'Museo Sans W01_300', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #0f6cb6;
	text-decoration: none;
}

a:hover {
/* 	color: #808080; */
	text-decoration: underline;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
/* 	margin: 40px; */
	padding: 40px;
	background-image: url('/wp-content/uploads/2024/03/quote.png');
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: -20px -40px;
}

/* blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
} */


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0f6cb6;
	font-family:'Museo Sans W01_300', sans-serif;
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery img {
	border: 1px solid #ddd;
	height: auto;
	padding: 4px;
}

.gallery img:hover {
	border: 1px solid #999;
}

/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #808080;
	font-size: 18px;
	font-weight: 300;
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #808080;
font-family: 'Museo Sans W01_300', sans-serif;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
font-family: 'Museo Sans W01_300', sans-serif;
	color: #808080;
	font-weight: 300;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #0f6cb6;
	border: none;
	color: #fff;
	cursor: pointer;
font-family:'Museo Sans W01_500', sans-serif;
 border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
	font-size: 16px;
	font-weight: 300;
	padding: 10px 25px;
	text-transform: none;
	width: auto;
}

.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"],
.footer-widgets .button {
	background-color: #e5554e;
	color: #fff;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover {
	background-color: #72c267;
	color: #fff;
}

.entry-content .button:hover {
	color: #fff;
}

.footer-widgets button:hover,
.footer-widgets input:hover[type="button"],
.footer-widgets input:hover[type="reset"],
.footer-widgets input:hover[type="submit"],
.footer-widgets .button:hover {
	background-color: #fff;
	color: #333;
}

.button {
	display: inline-block;
}

.button-ads {
background-color: #0f6cb6;
	border: none;
	color: #fff;
	cursor: pointer;
font-family:'Museo Sans W01_500', sans-serif;
 border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
	font-size: 16px;
	font-weight: 300;
	padding: 14px 25px;
	text-transform: none;
	width: auto;
}

.button-ads:hover {
background-color: #fff;
	color: #0f6cb6;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 400;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1200px;
}

.site-inner {
	clear: both;
	padding-top: 160px;
}

.front-page .site-inner { 
  max-width: 100%;
  padding-top: 40px;
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 980px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* ### Content */

.content {
	float: right;
	width: 800px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 580px;
}

.full-width-content .content {
	width: 100%;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* ### Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds,
.col-2,
.col-3 {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths,
.col-2 {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths,
.col-3 {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar,
.author-box .avatar {
	margin-right: 24px;
margin-bottom: 20px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

/* ## Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
}

.archive-description,
.author-box {
	background-color: #fff;
	font-size: 16px;
	margin-bottom: 40px;
	padding: 40px;
}

.author-box-title {
	font-size: 20px;
	margin-bottom: 4px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.site-header .search-form {
	float: right;
	/* margin-top: 12px; */
}

.entry-content .search-form/*,
.site-header .search-form*/ {
	width: 50%;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## Titles
--------------------------------------------- */

.archive-title,
.col-2 .entry-title {
	font-size: 20px;
}

.entry-title {
	font-size: 36px;
	color: #4d4d4d;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #808080;
}

.one-fourth .entry-title, .one-third .entry-title {
	font-size: 20px;
}

.widget-title {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-widgets .widget-title {
	color: #fff;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

.wp-caption {
font-size: 12px;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: none;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* ## Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.footer-widgets .entry {
	border-bottom: 1px dotted #666;
}

.featured-content .entry-title {
	font-size: 20px;
}


/* ## Related Posts
--------------------------------------------- */
.related-posts {
  background: #74c068;
  clear: both;
  display: table;
  padding: 30px 0 10px;
  width: 100%;
  margin-top: 40px;
}

.related-posts .entry {
    margin-bottom: 40px;
    padding: 0;
    background-color: #fff;
    padding-bottom: 10px;
}

.related-title {
  font-size: 21px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

.related-posts .col-3.entry {
  background: #fff;
  padding: 0;
}

.related-posts .col-3 .entry-header {
  padding: 10px 30px 0px 30px;
}

.related-posts .col-3 .entry-content {
  padding: 0px 30px;
}

.related-posts .col-3 .entry-content p:last-child {
  margin-bottom: 25px;
}

.related-posts .col-3 h2.entry-title {
  font-size: 21px;
  margin-bottom: 30px;
}

.related-posts .col-3 a.read-more,
.front-page a.read-more, .read-more {
background-color: #0f6cb6;
color: #fff;
  border: 0px solid #eee;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
/*box-shadow: 0 -3px 1px #f7f7f7 inset;
  -webkit-box-shadow: 0 -3px 1px #f7f7f7 inset;
  -moz-box-shadow: 0 -3px 1px #f7f7f7 inset;
  -o-box-shadow: 0 -3px 1px #f7f7f7 inset;*/
font-family:'Museo Sans W01_500', sans-serif;
  font-size: 16px;
  padding: 10px 25px;
}

.related-posts .col-3 a.read-more:hover {
background-color: #72c267;
}


/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Genesis eNews Extended
--------------------------------------------- */

.enews-widget,
.enews-widget .widget-title {
	color: #fff;
}

.sidebar .widget.enews-widget {
	background-color: #333;
}

.enews-widget input,
.enews-widget input:focus {
	border: 1px solid #333;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 16px;
}

.enews-widget input[type="submit"] {
	background-color: #e5554e;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"] {
	background-color: #fff;
	color: #333;
}

.enews form + p {
	margin-top: 24px;
}

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


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

.site-header {
	background-color: #fff;
	min-height: 160px;
}

.site-header .wrap {
	padding: 40px 0;
}

/* ## Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 10px 0;
	width: 360px;
}

.header-full-width .title-area {
	width: 100%;
}

.site-title {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
}

.site-title a,
.site-title a:hover {
	color: #333;
}

.header-image .site-title > a {
	background: url(images/logo.png) no-repeat left;
	float: left;
	min-height: 60px;
	width: 100%;
}

.site-description {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.site-description,
.site-title {
	margin-bottom: 0;
}

.header-image .site-description,
.header-image .site-title {
	display: block;
	text-indent: -9999px;
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	text-align: right;
	width: 800px;
}

/*Custom Header*/

.site-header .wrap {
	padding: 10px 0 0 0;
	padding: 1rem 0 0 0;
}

.site-header {
background-color: #FFF;
border-top: 3px solid #0f6cb6;
min-height: 68px;
z-index: 9999998 !important;
width: 100%;
position: fixed;
box-shadow: 0 3px 10px rgba(0,0,0,.4);
margin-top: 50px;
}

.header-image .title-area {
	padding: 0;
display: none;
}

.title-area {
display: none;
}

.header-image .site-header .wrap {
background: none;
padding: 0;
}

.header-image .site-header .widget-area {
padding: 20px;
padding: 2rem;
}

.site-header .widget-area {
float: left;
text-align: left;
width: 100%;
}

#text-7.widget.widget_text {
	width: 155px;
	width: 15.5rem;
margin: 0 auto;
float: left;
margin-right: 0 auto;
} 

#text-7.widget.widget_text a {
margin: 0;
padding: 0;
}


.site-header .widget-area .nav-header {
  float: left;
  display: inline;
  margin-left: 40px;
  margin-top: -5px;
}

#menu-header-right-navigation {
float: right;
}

#menu-header-right-navigation a {
color: #808080;
font-size: 13px;
padding-right: 0px;
padding-left: 30px;
}

#menu-header-right-navigation a:hover {
color: #0f6cb6;
}

/* Utility Bar
--------------------------------------------- */
.utility-bar {
 background-color: #0f6cb6;
 border-bottom: none;
 color: #fff;
 font-size: 10px;
 font-size: 1rem;
 padding: 10px 0;
 padding: 1rem;
position: fixed;
width: 100%;
max-height: 55px;
padding-top: 9px;
z-index: 9999999 !important;
}
.utility-bar a {
 color: #fff;
}
.utility-bar a:hover {
 text-decoration: none;
 color: #72c267;
}
.utility-bar-left {
 width: 0;
}

.utility-bar-right {
 width: 100%;
}

.utility-bar-left p,
.utility-bar-right p {
 margin-bottom: 0;
}
.utility-bar-left {
 float: left;
}
.utility-bar-right {
 float: right;
 text-align: right;
}
.utility-bar input[type="search"] {
 background: inherit;
 padding: 10px 0 0;
 padding: 1.0rem 0 0;
}

/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
font-family:'Museo Sans W01_300', sans-serif;
	font-size: 16px;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	color: #0f6cb6;
	display: block;
	padding: 16px 24px 16px 0;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #74c068;
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	padding: 20px;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -55px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	color: #fff;
	float: right;
	list-style-type: none;
	padding: 30px 0;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
}

.genesis-nav-menu > .search {
	padding: 10px 0 0;
}

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

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -56px;
}

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* ## Primary Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #72c267;
	box-shadow: 0 3px 10px rgba(0,0,0,.4);
        position: fixed;
        width: 100%;
	margin-top: 68px;
z-index: 9999999;
}

.nav-primary .genesis-nav-menu a {
	color: #fff;
}

.nav-primary .genesis-nav-menu .sub-menu a {
	color: #333;
}

.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item > a,
.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #0f6cb6;
}

/* ## Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #fff;
}


/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Home
--------------------------------------------- */


.front-page-1 .widget-title {
  font-size: 21px;
}

.front-page-0 {
  background: #fff;
  padding: 14px 0 0 0;
  padding: 1.4rem 0 0 0;
  margin-bottom: 20px;
  margin-bottom: 3rem;
}

.front-page-0 h1 {
  margin-bottom: 20px;
text-align: left;
}

.front-page-0 h2 {
    font-size: 30px;
    margin-bottom: 20px;
text-align: left;
}

.front-page-1 .featured-content .entry-title {
font-size: 32px;
}

.front-page-1 a.alignleft, .front-page-1 img.alignleft {
    margin: 0px 20px 20px 0px;
    width: 580px;
}


.front-page-1 .featured-content .entry {
  background: none;
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

.front-page-1 a.alignleft, 
.front-page-1 img.alignleft {
  margin: 0 20px 20px 0;
}

.front-page a.read-more {
  background-color: #0f6cb6;
  color: #fff;
  display: table;
  margin-top: 20px;
  margin-bottom: 20px;
  width: auto;
}

.related-posts .col-3 a.read-more:hover, .front-page a.read-more:hover {
  background-color: #72c267;
}

.front-page-2 {
  background: #74c068;
color: #fff;
font-size: 21px;
  padding: 30px 20px;
}

.front-page-2 h4.widget-title.widgettitle {
  color: #fff;
  font-size: 21px;
  text-align: left;
}

.front-page-2 h4 {
  color: #0f6cb6;
  font-size: 48px;
  font-weight: 700;
  text-align: left;
}

.front-page-2 .load-more {
  clear: both;
  cursor: pointer;
  display: table;
  margin: 25px auto 0;
}

.front-page-2 a.read-more {
float: right;
}

.front-page-2 a.read-more:hover {
background: #fff;
color: #0f6cb6;
}

.front-page-3 {
  background: #f2f2f2;
  padding: 30px 0 0;
}

.front-page-3 .wrap{
width: 100%;
}

.front-page-3 .widget-title {
color: #fff;
  font-size: 21px;
  text-align: left;
}

.front-page-3 .browse-all {
  display: inline-block;
  margin-top: 25px;
}

.front-page-3 .browse-all a,
.load-more {
  background: #fff;
  border: 0px solid #eee;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  /*box-shadow: 0 -3px 1px #f7f7f7 inset;
  -webkit-box-shadow: 0 -3px 1px #f7f7f7 inset;
  -moz-box-shadow: 0 -3px 1px #f7f7f7 inset;
  -o-shadow: 0 -3px 1px #f7f7f7 inset;*/
font-family:'Museo Sans W01_500', sans-serif;
  font-size: 16px;
  padding: 10px 25px;
}

.front-page-3 .browse-all a {
background-color: #0f6cb6;
  color: #fff;
}

.load-more {
background-color: #fff;
  color: #0f6cb6;
}

.load-more:hover {
background-color: #0f6cb6;
  color: #fff;
}

.front-page-3 .browse-all a:hover {
background-color: #fff;
  color: #0f6cb6;
}

.front-page-4 {  
background-color: #07a3cd;
  padding: 30px 0 0;
width: 100%;
}

.front-page-4 h4.widget-title.widgettitle {
  color: #fff;
  font-size: 21px;
  text-align: left;
}

.front-page-5 {  
background-color: #f2f2f2;
  padding: 30px 0 0;
width: 100%;
}

.front-page-6 {  
background-color: #07a3cd;
  padding: 30px 0 0;
width: 100%;
}

.front-page-6 h4.widget-title.widgettitle {
  color: #fff;
  font-size: 21px;
  text-align: left;
}

.front-page-7 {  
background-color: #f2f2f2;
  padding: 30px 0 0;
width: 100%;
}

.front-page-8 {  
background-color: transparent;
  padding: 30px 0;
width: 100%;
}

.front-page-1 .widget-title, .front-page-8 .widget-title {
    font-size: 21px;
    background: #0f6cb6;
    padding: 5px 20px;
    color: #fff !important;
    display: inline-block;
margin-bottom: 40px;
}

.front-page-1 .widget-title::before, .front-page-8 .widget-title::before {
  background: #bbb;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    /* top: 50%; */
    width: 100%;
    left: 0;
    z-index: -1;
    margin-top: 12px;
}


.front-page-4 div.one-third {
  background: transparent;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  height: 520px;
text-align: center;
}

.content .front-page-2 .entry, .content .front-page-1 .entry, .content .front-page-0 .entry {
  background-color: #fff;
  padding: 0;
}

.front-page-2 .entry-content {
    padding: 0 14px 14px;
}

.one-fourth .entry-header, .one-third .entry-header, .one-half .entry-header {
	background: #fff;
}

.one-fourth .entry-title, .one-third .entry-title, .one-half .entry-title {
    padding: 0 14px;
 }

.one-fourth .entry-header .entry-meta {
    margin-bottom: 0;
    padding: 0 14px 20px;
margin: 0;
}

.one-third .entry-header .entry-meta {
    margin-bottom: 24px;
    padding: 0 14px;
}

.one-half .entry-header .entry-meta {
    margin-bottom: 24px;
    padding: 0 14px;
}

.home-featured {
	margin-top: 0;
background: #fff;
padding-top: 160px;
max-width: 1199px;
margin: 0 auto;
}

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

	.home-featured-left {
margin-top: 120px;
		margin-bottom: 40px;
	}

}

.home-featured-left {
background: #fff;
}

.home-featured-left .entry {
    margin-bottom: 9px;
}

.home-featured-left .entry-content {
    margin: 0 20px;
}

.home-featured-right {
background: #fff;
}

.home-featured-right .entry-title {
font-size: 20px;
}

.home-featured-right .first, .home-featured-right .one-half {
background: #fff;
margin-bottom: 15px;
min-height: 300px;
}

/* ## Entries
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
	padding: 0;
background-color: #fff;
min-height: 300px;
}

.content .entry {
    background-color: #fff;
    min-height: 300px;
}

.single .content .entry {
	background-color: #fff;
max-width: 1200px;
    margin: 0 auto;
}

.content .col-2.entry,
.col-2.entry {
  background: none;
  background-color: transparent;
	padding: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
}

.entry-footer .entry-meta {
	border-top: 0px solid #f5f5f5;
	padding-top: 24px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-top: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #0f6cb6;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	padding: 8px 12px;
}

.archive-pagination li a:hover,
.archive-pagination .active a {
	background-color: #72c267;
}

.single .gap {
  background-color: #fff;
  display: block;
  padding-bottom: 40px;
  margin-bottom: 0;
}

/* ## Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #eff0f0;
	margin-bottom: 40px;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
}

.entry-comments {
	padding: 40px;
}

.comment-header {
	font-size: 16px;
}

li.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment-content {
	clear: both;
}

.comment-list li {
	margin-top: 24px;
	padding: 32px;
}

.comment-list li li {
	margin-right: -32px;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 16px;
	padding: 24px;
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
background-color: #eff0f0;
	font-size: 16px;
margin-bottom: 40px;
}

.sidebar li {
	border-bottom: 1px dotted #ddd;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #eff0f0;
	margin-bottom: 40px;
	padding: 20px;
}

.sidebar .widget-title {
color: #72c267;
  font-weight: 900;
}


/* # Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #0f6cb6;
	clear: both;
    padding-top: 10px;
    padding-bottom: 0;
}

.footer-widgets,
.footer-widgets a {
	color: #fff; 
font-family: 'Museo Sans W01_300', sans-serif;
}

.footer-widgets input {
	border: 1px solid #333;
}

.footer-widgets a.button,
.footer-widgets a:hover {
	color: #72c267;
}

.footer-widgets li {
	border-bottom: 1px dotted #666;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.footer-widgets .widget {
	margin-bottom: 0;
}

.footer-widgets p:last-child {
	margin-bottom: 0;
}

.footer-widgets-1 {
	width: 100%;
}

.footer-widgets-2 {
	width: 290px;
}

.footer-widgets-1 {
	margin-right: 0;
}

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

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

/* # Footer Widget Headline
---------------------------------------------------------------------------------------------------- */
.footerwidgetheader-container {
    background-color: #fff;
    color: #333;
    line-height: 1.2;
    clear: both;
    margin: 0 auto;
    padding: 0;
    width: 100%;
	padding-top: 40px;
    border-bottom: 0px solid #ddd;
}


/* # Footer Navigation
---------------------------------------------------------------------------------------------------- */
.footer-widgets .search-form {
display: none;
}

.footer-widgets li {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 10px;
padding-right: 30px;
  display: inline;
}


/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
  background-color: #07a3cd;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 0;
  text-align: right;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer a {
color: #fff;
}

.site-footer a:hover {
color: #0f6cb6;
}

#menu-footer-left-navigation {
	padding-top: 4px;
    padding-left: 0;
    display: inline-block;
}


 
/*@media only screen and (max-width: 1024px) {
 
	.genesis-nav-menu {
		width: 100%;
		float: none;
	}
 
	.nav-primary .search-form,
	.nav-secondary .search-form {
		float: none;
		text-align: center;
		margin-bottom: 20px;
	}
 
}
 
@media only screen and (max-width: 568px) {
 
	.site-header .search-form {
		width: auto;
	}
 
}*/

/* # Sidebar on Archives column fix
---------------------------------------------------------------------------------------------------- */

.sidebar .col-2.entry {
  padding: 0;
  width: 100%;
margin-left:0;
margin-bottom: 40px;
}

/* # Misc custom CSS
---------------------------------------------------------------------------------------------------- */

.gfpc-iscroll-content {
    margin-bottom: 40px !important;
}


.home .gfpc-iscroll-content {
    margin-bottom: 20px !important;
}

.nav-primary .genesis-nav-menu .sub-menu a {
  border-top: 1px solid #fff;
}

a, a:active, a:focus {
outline: none;
}

.post-edit-link {
display: none;
}

.sidebar .alignleft {
margin-right: 0;
margin-bottom: 5px;
}

.featured-content img {
    width: 100%;
}

#featured-post-3 {
margin-bottom: 0;
}

.featured-content .entry-title {
  font-size: 18px;
}

.featured-content .entry {
  border-bottom: 0px solid #f5f5f5; 
  margin-bottom: 20px;
  padding: 0 0 24px;
}

.entry-tags {
    background: url("/wp-content/themes/schoolyard/images/tags.png") no-repeat left 5px;
padding-left: 18px;
}

.archive-description, .author-box {
  background-color: #eff0f0;
  font-size: 16px;
  margin-bottom: 40px;
  padding: 20px;
}

.author-box {
  background-color: #fff;
}

.single .author-box {
  background-color: #fff;
  margin-bottom: 40px;
  padding: 20px;
padding-top: 40px;
}

.sidebar .search-form {
display: none;
}

.widget-title {
font-size: 21px;
}

h4.widget-title.widgettitle {
color: #07a3cd;
}

.sidebar li {
  border-bottom: 0 dotted #ddd;
  margin-bottom: 6px;
  padding-bottom: 0;
}

.related-posts .entry-content .addthis_toolbox {
  display: none  !important;
}

.adjacent-entry-pagination {
    margin-top: 0;
    display: none;
}

.search .site-inner {
padding-top: 40px;
}

/* ## Single Entry Meta, title, content
--------------------------------------------- */
.single .entry-meta {
   margin: 20px;
}

.single .entry-title {
   margin: 20px;
}

.single .entry-content {
   margin: 20px;
}

.related-posts .entry-title {
   margin: 0;
}

.related-posts .entry-content {
   margin: 0;
}

.search .entry {
    margin-bottom: 40px;
    padding: 20px;
}

/* Category Meta   
--------------------------------------------- */

.archive-description {
    background-color: #07a3cd;
color: #fff;
    font-size: 16px;
text-align: center;
    margin-bottom: 40px;
margin-top: 118px;
    padding: 80px 20px;
}

.archive-title {
color: #fff;
    font-size: 48px;
text-transform: uppercase;
}

.archive .site-inner {
padding-top: 0;
}

.entry-meta {
  color: #4d4d4d;
  font-size: 16px;
}

p.entry-meta {
  font-size: 16px;
text-transform: uppercase;
}

.entry-time, .entry-modified-time {
  font-size: 16px;
text-transform: none;
}

.entry-author {
text-transform: none;
}

.entry-categories {
text-transform: uppercase;
}

.entry-meta a {
  color: #0f6cb6;
  font-size: 16px;
}

.entry-meta a:hover  {
color: #4d4d4d;
}

/* Category Archive Widget CSS  
--------------------------------------------- */

.archive-ad {
	background: #74c068;
    color: #fff;
    font-size: 21px;
    padding: 30px 20px;
margin-bottom: 40px;
}


.archive-ad-widget.widget-area h4 {
    color: #0f6cb6;
    font-size: 48px;
    font-weight: 700;
    text-align: left;
}

.archive-ad a.read-more {
float: right;
}

.archive-ad a.read-more:hover {
background: #fff;
color: #0f6cb6;
}

#text-19.widget.widget_text {
font-size: 21px;
    line-height: 1.2;
    background: #0f6cb6;
    padding: 5px 20px;
    color: #fff !important;
    display: inline-block;
margin-bottom: 40px;
}

#text-19.widget.widget_text::before {
  background: #bbb;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    /* top: 50%; */
    width: 100%;
    left: 0;
    z-index: -1;
    margin-top: 12px;
}

#text-19.widget.widget_text p {
margin: 0;
}

/* Category Nav dropdown colors CSS  
--------------------------------------------- */

#menu-item-843 a:hover {
	background-color: #BED14F;
	color: #fff; 
}

#menu-item-844 a:hover {
	background-color: #91ACEA;
	color: #fff; 
}

#menu-item-845 a:hover {
	background-color: #01A3A3;
	color: #fff; 
}

#menu-item-846 a:hover {
	background-color: #60AD23;
	color: #fff; 
}

#menu-item-847 a:hover {
	background-color: #339193;
	color: #fff; 
}

#menu-item-848 a:hover {
	background-color: #A70267;
	color: #fff; 
}

#menu-item-849 a:hover {
	background-color: #E9D11F;
	color: #fff; 
}

#menu-item-850 a:hover {
	background-color: #F08D05;
	color: #fff; 
}

#menu-item-851 a:hover {
	background-color: #a6a6a6;
	color: #fff; 
}

#menu-item-1850 a:hover {
	background-color: #E2383F;
	color: #fff;
}

#menu-item-2246 a:hover {
	background-color: #00488f;
	color: #fff; 
}

#menu-item-3176 a:hover {
	background-color: #F7923F;
	color: #fff; 
}

/* # Mobile Navigation
---------------------------------------------------------------------------------------------------- */

div.gilidPanel .gilidPanel-wrap, div.gilidPanel .gilidPanel-wrap p {
    font-family: "Museo Sans W01_300", sans-serif !important;
}

div.gilidPanel .gilidPanel-wrap h2.widgettitle {
    margin: 0px 0px 10px;
    padding: 0 !important;
}

div.gilidPanel .gilidPanel-wrap .menu .current-menu-item>a {
color: #72c267 !important;
  border-left: 2px solid #72c267 !important;
  padding-left: 6px !important;
}

#nav_menu-5 .search-form, #nav_menu-6 .search-form {
display: none;
}

div.gilidPanel .gilidPanel-wrap input {
    width: 100%;
    border-radius: 5px !important;
}

div.gilidPanel .gilidPanel-wrap .search-form input[type="search"] {
    font-size: 14px !important;
    color: #666 !important;
    padding: 12px 15px 12px 12px !important;
}

div.gilidPanel .gilidPanel-wrap input[type="submit"] {
    display: none !important;
}

/* # Simple Social Icons
---------------------------------------------------------------------------------------------------- */

.simple-social-icons {
    overflow: hidden;
    display: inline !important;
}

.simple-social-icons ul li {
    background: none !important;
    border: none !important;
    float: left;
    list-style-type: none !important;
    margin: 0px !important;
    padding: 0 !important;
}

#text-14.widget.widget_text {
    margin-top: 6px;
    display: inline;
    float: right;
    margin-left: 10px;
    padding-left: 18px;
}

#text-15.widget.widget_text {
display: inline;
    float: right;
margin-top: 6px;
margin-left: 6px;
}

div.gilidPanel .simple-social-icons ul li {
    display: inline !important;
padding-top: 10px !important;
padding-bottom: 10px !important;
font-size: 21px !important;
}


/* # Infinite Scroll on Archives
---------------------------------------------------------------------------------------------------- */

/*
Animated Search Form
---------------------------------------------------------------------------------------------------- */


.site-header .search {
	display: inline-block;
	position: relative;
	width: auto;
	padding: 0;
	float: right;
	margin-top: 7px;
}


li a.icon-search:before {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	content: "\f002";
	position: absolute;
	right: 0;
}

li a.icon-search {
	cursor: pointer;
	position: relative;
	padding-right: 23px;
}

/*li a.icon-search:hover {
	border-bottom: none;
}*/

.search-div {
	display: none;
	position: absolute;
	z-index: 10;
	right: 0;
	width: 300px;
	padding: 5px;
	-webkit-border-radius: 0;
	border-radius: 0;
	background: #f2efef;
margin-top: -38px;
}

.search-div .search-form {
	position: relative;
	width: 100%;
}

.search-div .search-form input[type="search"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
}

.search-div .search-form input[type="submit"] {
	position: absolute;
	right: -1px;
	bottom: 1px;
	padding: 10px 14px;
	-webkit-border-radius: 0;
	border-radius: 0;
}

/* Clear search field placeholder text on focus */
input:focus::-webkit-input-placeholder {
	color: transparent;
}
input:focus:-moz-placeholder {
	color: transparent;
} /* Firefox 18- */
input:focus::-moz-placeholder {
	color: transparent;
} /* Firefox 19+ */
input:focus:-ms-input-placeholder {
	color: transparent;
} /* oldIE ;) */

/* @media only screen and (max-width: 800px) {
	.site-header .search {
		display: block;
		text-align: left;
	}
	.search-div {
		left: 0;
	}
} */

/* @media only screen and (max-width: 340px) {
	.search-div {
		width: auto;
	}
} */

/* # Topic Headers
---------------------------------------------------------------------------------------------------- */

.archive-description { 
display: inline-flex; 
-ms-flex-align: center; 
align-items: center; 
-ms-flex-pack: center; 
justify-content: center; 
background-position: center center; 
background-size: cover; 
color: #fff; 
font-color: #fff; 
font-size: 24px; 
text-align: center;
width: 100%;
margin-top: 118px;
padding: 0;
min-height: 260px; 
}

.category-art-craft .archive-description::before {
    content: url(/wp-content/uploads/2018/03/sax-logo-large-e1521562147430.png);
    float: left;
    display: inline-block;
    margin: 0 0 0 30px;
    margin-bottom: -20px;
    clear: both;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    padding: 20px 20px 0;
}

.category-early-childhood .archive-description::before {
content: url("/wp-content/uploads/2018/03/childcraft-logo-large-e1521566434976.png");
float: left;
display: inline-block;
    margin: 0 0 0 30px;
    margin-bottom: 20px;
    clear: both;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    padding: 20px;
}

.category-special-needs .archive-description::before {
content: url("/wp-content/uploads/2018/03/abilitations-logo-large-e1521566826371.png");
float: left;
display: inline-block;
    margin: 0 0 0 30px;
    margin-bottom: 10px;
    clear: both;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    padding: 20px;
}

.category-physical-education .archive-description::before {
content: url("/wp-content/uploads/2018/11/sportime.png");
float: left;
display: inline-block;
    margin: 0 0 0 30px;
    margin-bottom: 0;
    clear: both;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    padding: 20px 20px 10px;
}

.category-art-craft .archive-description, .category-early-childhood .archive-description, .category-special-needs .archive-description, .category-physical-education .archive-description {
display: block;
clear: both;
}

.category-art-craft .archive-title, .category-early-childhood .archive-title, .category-special-needs .archive-title, .category-physical-education .archive-title {
clear: both;
}

.category-math .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2022/06/math.jpg");
}

.category-science .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2022/06/science.jpg");
}

.category-art-craft .archive-description {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/art-craft.jpg");
	/* margin-top: 48px; */
}

.category-education-essentials .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/04/education-essentials-1.jpg");
}

.category-inspiration-planning .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/04/inspiration-planning.jpg");
}

.category-learning-spaces .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/04/learning-spaces.jpg");
}

.category-21st-century-learning .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/21st-century-learning.jpg");
}

.category-back-to-school .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/back-to-school.jpg");
}

.category-celebrations-themes .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/celebrations-themes.jpg");
}

.category-early-childhood .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/early-childhood.jpg");
}

.category-educational-technology .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/educational-technology.jpg");
}

.category-healthy-students .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/healthy-students.jpg");
}

.category-news .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/news.jpg");
}

.category-organization-storage .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/organization-storage.jpg");
}

.category-out-of-school .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/out-of-school.jpg");
}

.category-physical-education .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/physical-education.jpg");
}

.category-reading-literacy .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/reading-literacy.jpg");
}

.category-special-needs .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/special-needs.jpg");
}

.category-steam-stem .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/steam-stem.jpg");
}

.category-student-resources .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/student-resources.jpg");
}

.category-teacher-life .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/teacher-life.jpg");
}

.category-classroom-management .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2018/07/classroom-management.jpg");
}
.category-at-home-learning .archive-description  {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2020/03/at-home-learning.jpg");
}

.category-podcasts .archive-description {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2023/09/podcasts-category-mic.jpg");
}

.category-time-for-science .archive-description {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2023/09/timeforscience-category.jpg");
}

.category-schoolyard-podcast .archive-description {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/wp-content/uploads/2023/10/SYP-Banner-noTitle-1-scaled.jpg");
}

/*Image hover in grid*/


.col-background:hover {
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=70)"; /* IE 8 */
    filter: alpha(opacity=70); /* IE 4, 5, 6 and 7 */
    zoom:1 /* so the element "hasLayout" or, to trigger "hasLayout" set a width or height */
}

.search .archive-description {
background-color: transparent;
display: inline-flex; 
-ms-flex-align: center; 
align-items: center; 
-ms-flex-pack: center; 
justify-content: center; 
background-position: center center; 
background-size: cover; 
color: #fff; 
font-color: #fff; 
font-size: 24px; 
text-align: center;
width: 100%;
margin-top: 0;
padding: 0;
min-height: 0; 
}

.search .archive-title {
    color: #4d4d4d;
    font-size: 24px;
}

.page .entry-content {
padding: 20px;
}

.topics-header {
margin-bottom: 30px;
}

.tag .archive-most-recent .wrap ,
.author .archive-most-recent .wrap,
.author .site-inner {
    margin-top: 160px;
}

.search .site-inner {
    margin-top: 130px;
}

.tag #text-19.widget.widget_text {
display: none;
}

.nav-secondary {
    background-color: #fff;
    margin-top: -40px;
    margin-bottom: 40px;
    padding: 10px;
text-align: center;
border-bottom: 2px solid #74c068;
    text-transform: inherit;
}

.genesis-nav-menu {
    clear: both;
    font-family: 'Museo Sans W01_300', sans-serif;
    font-size: 16px;
    line-height: 1;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: inline;
    overflow-x: auto;
}

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

.genesis-nav-menu {
display: flex;
}

}

.tag-archive-featured-widget {

margin-top: 160px;
}

.tag-archive-featured {

    margin-bottom: -520px;
}

.tag-archive-featured-widget .widget-title {
    font-size: 21px;
    background: #0f6cb6;
    padding: 5px 20px;
    color: #fff !important;
    display: inline-block;
    margin-bottom: 40px;

}

.tag-archive-featured-widget .widget-title::before {
    background: #bbb;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    /* top: 50%; */
    width: 100%;
    left: 0;
    z-index: -1;
    margin-top: 12px;
}


/* # Media Queries
---------------------------------------------------------------------------------------------------- */

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

	.site-inner,
	.wrap {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content {
		width: 620px;
	}

.sidebar-primary {
    float: right;
    width: 300px;
}

	.site-header .widget-area {
		width: 100%;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	/*.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-primary,
	.title-area {
		width: 300px;
	}

	.footer-widgets-1 {
		margin-right: 30px;
	}*/


/*.front-page-0 h1 {
font-size: 32px;
  line-height: 1.2;
  margin: 0;
text-align: center;
}*/

/*.footer-widgets-1, .footer-widgets-2  {
    float: none;
    margin: 0 auto;
}*/

.footer-widgets .widget {
	margin-bottom: 20px;
}

#nav_menu-4 {
text-align: center;
}

.footer-widgets-2 {
  text-align: center;
}

}


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

.front-page-1 {
margin-top: 0;
}

}

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

.site-header {
border-top: 0px solid #0f6cb6;
box-shadow: 0 3px 10px rgba(0,0,0,.4);
margin-top: 0;
}

.home-featured {
	margin-top: 0;
background: #fff;
padding-top: 100px;
}

.utility-bar {
    display: none;
}

.nav-primary {
	display: none;
}

.site-header .widget-area .nav-header {
    display: none;
}


.tag .archive-most-recent .wrap {
    margin-top: 100px;
}

.author .site-inner {
    margin-top: 100px;
}

.author .archive-most-recent .wrap {
    margin-top: 100px;
}

.site-inner {
	clear: both;
	padding-top: 98px;
}

.front-page .site-inner { 
  max-width: 100%;
}

#text-14.widget.widget_text {
    margin-top: 6px;
    display: block;
    float: none;
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.simple-social-icons {
    display: block !important;
margin-bottom: 20px !important;
}

.simple-social-icons ul li {
    float: none !important;
}


.simple-social-icons .alignright {
    float: none !important;
    text-align: center !important;
}

.site-footer {
    text-align: center;
}

.gilidPanel-opener {
  position: fixed;
  top: 10px !important;
  left: 0px;
  font-size: 130% !important;
  z-index: 100000000 !important;
}

.gilidPanel-opener, .gilidPanel-opener a {
  font-size: 130% !important;
}

div.gilidPanel {
    background: #FFF none repeat scroll 0% 0%;
    z-index: 10000000 !important;
}

.archive-description {
margin-top: 68px;
}

.author-box {
    margin-top: 0;
}

.search .archive-description {
margin-top: 0px;
}
	
	.site-header .search {
		margin-right: 50px;
	}

.search .site-inner {
    margin-top: 90px;
}

.category-art-craft .archive-description::before, .category-early-childhood .archive-description::before, .category-special-needs .archive-description::before, .category-physical-education .archive-description::before {
	float: none;
	margin: 0 auto;
margin-bottom: 20px;

}

.category-art-craft .archive-description, .category-early-childhood .archive-description, .category-special-needs .archive-description, .category-physical-education .archive-description {
	padding: 0;
}

}

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

	.site-inner,
	.wrap {
		max-width: 800px;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}

	.site-header .wrap {
		/*padding: 20px 5%;*/
	}

	.header-image .title-area {
		background-position: center top;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 20px 16px;
	}

	/* .site-header .search-form {
		margin: 16px auto;
	} */

	.genesis-nav-menu li.right {
		display: none;
	}

	.footer-widgets-1 {
		margin-right: 0;
	}

	.search-form input[type="search"] {
    	width: auto;
	}

   .featured-content img {
    width: auto;
    margin-right: 20px;
   }


}


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

.home #text-7.widget.widget_text {
    margin-left: 10px;
}

.home-featured {
	margin-top: 68px;
background: #fff;
padding-top: 0;
}

.front-page .site-inner { 
  padding-top: 20px;
}


.site-header .wrap {
		padding-left: 10px;
	}

	body {
		font-size: 16px;
	}

	.site-inner,
	.wrap {
		padding-left: 5%;
		padding-right: 5%;
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget,
	.site-header {
		padding: 0;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
	}

  .related-posts .col-3 .entry-header {
    padding: 0 20px;
  }

  .related-posts .col-3 .entry-header,
  .related-posts .col-3 .entry-content {
    padding: 0 20px 10px 20px;
  }
  
  
  .related-posts {
    display: block;
    width: auto;
  }


.featured-content img {
    margin-right: 0;
    width: 800px;
}

.author-box, .comment-respond, .entry-comments, .entry-pings, .sidebar .widget {
    padding: 20px;
}

.archive-description {
 padding: 80px;
} 

.related-posts {
    margin-top: 40px;
}

.comment-respond, .entry-comments, .entry-pings {
    margin-bottom: 0px;
}

.front-page .site-inner, .front-page .wrap {
    padding-left: 0;
    padding-right: 0;
}

.front-page-1 .featured-content .entry-title {
    padding-left: 5%;
    padding-right: 5%;
}

.front-page-1 .entry-content {
    padding-left: 5%;
    padding-right: 5%;
}

.front-page-1 a.alignleft, .front-page-1 img.alignleft {
    margin: 0px 0px 20px 0px;
    width: 100%;
}

.footer-widgets {
    padding-left: 30px;
}

.front-page-1, 
.front-page-3, 
.front-page-4, 
.front-page-5, 
.front-page-6, 
.front-page-7, 
.home-featured-right.widget-area.one-half {
padding: 20px 20px 0;
}

.front-page-8 {
padding: 20px;
}

.home-featured-left.widget-area.one-half {
margin-bottom:0;
}

.front-page-1 {
margin-top: 0;
}

.home .one-half, 
.home .one-third,
.home .one-fourth,
.archive-featured .one-fourth {
margin-bottom: 20px;
}

.footerwidgetheader-container .one-third {
margin-bottom:30px;
}

.content .entry {
margin-bottom: 20px;
}

.entry {
	margin-bottom: 20px;
}

.post-5670 .entry-content p {
margin-bottom: 0;
}

.post-5670 {
margin-top: 30px;
}

.archive-ad-widget.widget-area h4, .front-page-2 h4 {
    color: #0f6cb6;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
}

.archive-ad-widget.widget-area p, .front-page-2 p {
font-size: 18px;
}

}

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

.site-header .search {
    display: none;
}

.archive-ad-widget.widget-area h4, .front-page-2 h4 {
    color: #0f6cb6;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
}

.archive-ad-widget.widget-area p, .front-page-2 p {
font-size: 16px;
}

}

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


.related-posts .col-3.entry {
    /*width: 100%;*/
/*margin-left: 0px;*/
}

.related-posts img.centered, .related-posts .aligncenter {
    width: 100%;
}

.footer-widgets li {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 10px;
padding-right: 30px;
  display: inline;
}

#nav_menu-4 {
text-align: left;
}

.footer-widgets-2 {
  text-align: left;
}

}

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

.col-2,
  .col-3 {
		margin: 0 0 25px;
		width: 100%;
	}

.archive-description h3 {
  font-size: 0px;
padding-bottom: 20px;
}

}

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


.archive-title {
    font-size: 28px;
}

.sidebar .alignleft {
float: none;
}

.featured-content img {
    width: 100%;
}

  .col-2,
  .col-3 {
		margin: 0 0 25px;
		width: 100%;
	}

/*---  .no-mobile { display:none !important;}
} ----*/
}


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

.sidebar .alignleft {
    float: left;
}

.home .footer-widgets {
    padding-left: 0;
}

.footer-widgets {
    padding-left: 0;
}

.simple-social-icons ul li {
    margin: 0 4px 6px !important;
}

}

#text-9 {
background: transparent;
}

h3.comments-title {
display: none !important;
}

p.comment-count {
display: none !important;
}

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

	.search-div {
		width: 250px;
	}

}

.wp-caption {
    font-size: 12px;
    /* float: none; */
    padding-right: 20px;
    font-style: italic;
}

.col-background { 
display: inline-flex; 
-ms-flex-align: center; 
align-items: center; 
-ms-flex-pack: center; 
justify-content: center; 
background-position: center center; 
background-size: cover; 
color: #fff; 
font-color: #fff; 
font-size: 24px; 
text-align: center; min-height: 200px;
}

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

.col-background {
margin-bottom: 30px;
}

.col-background .clearfix p {
    margin: 0;
}

}

.post-5670.page.type-page.status-publish.entry {
    background-color: #f2f2f2;
}

.post-5670 .entry-content{
    margin-top: -30px;
	padding: 0;
}

.bio-single {
margin: 60px 7% 80px 7%;
}

/* Tag Archives
--------------------------------------------- */

.tag .archive-description  {
    background: #fff;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    float: none;
    color: #4d4d4d;
    clear: both;
    margin-top: 120px;
margin-bottom: -120px;
    padding: 40px 40px 40px 0;
    text-align: left;
overflow: hidden;

}

.tag .archive-description img {
max-width: 50%;
width: auto;
margin-bottom:0;
}

.tag .archive-description h1 {
margin-top: 5.5%;
}

.tag .archive-description p {
font-size: 16px;
}

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

.tag .archive-description  {
margin-top: 68px;
margin-bottom: -80px;
padding: 0;
padding-bottom: 30px;
}

.tag .archive-description img {
max-width: 100%;
width: auto;
margin-bottom:24px;
}

.tag .archive-description h1 {
padding: 0 20px;
}

.tag .archive-description .button {
margin-left: 20px;
}

}

#wpdevar_comment_3 {
margin-top: 40px !important;
}

/* Home Page GFPC Archives Link
--------------------------------------------- */

.gfpc-widget p.more-from-category {
background-color: transparent !important;
    clear: both;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

.front-page-3 .gfpc-widget p.more-from-category a, .front-page-5 .gfpc-widget p.more-from-category a, .front-page-7 .gfpc-widget p.more-from-category a {
color: #07a3cd !important;
    clear: both;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

.front-page-4 .gfpc-widget p.more-from-category a, .front-page-6 .gfpc-widget p.more-from-category a {
color: #fff !important;
    clear: both;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

.front-page-3 .entry, .front-page-4 .entry, .front-page-5 .entry, .front-page-6 .entry, .front-page-7 .entry {
    margin-bottom: 20px !important;
}