/*
Theme Name: Curriculum21 Blue
Author: Trevor Parscal
Version: 1.0
License: Apache v2.0
*/

/* Reset */

html {
	background-color: #fff;
}
*, *::before, *::after {
	box-sizing: border-box;
}
body {
	-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}
input, button, textarea, select {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/* Common Elements */

a {
	color: #149;
	text-decoration: none;
}
a:hover {
	text-decoration: underline
}

p, li {
	line-height: 1.5em;
}
h1 {
	font-size: 2.5em;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration: none;
}
h1 a, h2 a, h3 a {
	color: #000;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
	text-decoration: none !important;
}
h5 a:hover, h6 a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	clear: both;
}

/* Common WordPress */

.alignleft {
	display: inline;
	float: left;
	margin: 0 1em 1em 0;
}
.alignright {
	display: inline;
	float: right;
	margin: 0 0 1em 1em;
}
.aligncenter {
	display: block;
	margin: 1em auto;
}
.wp-caption {
	text-align: center;
	padding: 0.5em;
	background: #ddd;
}
.wp-caption-text,
.gallery-caption {
	font-size:0.7em;
	margin: 3px 0;
}
#comments {
	margin-top: 1em;
	border-top: 1px solid #ddd;
}
#comments h3 {
	margin-top: 1em;
}
#respond h3 {
	margin-top: 0.25em;
}
#comments li {
	list-style-type: none;
	margin: 0 0 2em 0;
}
#comments .avatar {
	vertical-align: middle;
	margin-right: 2px;
	padding: 2px;
	border: 1px solid #ddd;
}
#comments .comment-author {
	margin-bottom: 1em;
}
#comments .comment-author cite {
	font-weight: bold;
	font-style: normal;
	margin-top: 1em;
}
#comments .comment-meta {
	margin-bottom: 1em;
}
#comments .reply a {
	font-size: 0.7em;
}
#comments .children {
	margin: 2em;
}
#comments .pagination {
	margin-bottom: 2em;
}
#respond label {
	display: block;
}
#respond .required {
	display: none;
}
#respond #closed {
	font-style: italic;
}
#comments li.comment #respond {
	margin: 2em;
}
#comments li.comment #respond h3 {
	padding-top: 0em;
}
#comments li.comment #respond #cancel-comment-reply-link {
	font-size: 0.7em;
	margin-left: 1em;
}
.wp-block-media-text {
	margin-bottom: 1rem;
}
.wp-block-media-text__media img {
	border: solid 1px #ddd;
}

/* Theme */

body {
	margin: 0;
	padding: 0;
}
body, p, input, label, button, textarea, select {
	font-family: "Helvetica", sans-serif;
}
form {
	margin: 0;
	padding: 0;
}
button, input[type=button], input[type=submit] {
	background-color: #f3f3f3;
	padding: 0.25em 0.75em;
	color: #333333;
	border: solid 1px silver;
	cursor: pointer;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}
button:hover, input[type=button]:hover, input[type=submit]:hover {
	background-color: #ffffff;
}
button:disabled, input[type=button]:disabled, input[type=submit]:disabled {
	color: #cccccc;
	border-color: #dddddd;
}
#page {
	min-height: 101%;
	max-width: 1024px;
	margin: auto;
	width: 100%;
	background-color: white;
	box-shadow: 0 0 1rem rgba(0,0,0,0.25);
}
#head {
	background-color: #003F68;
	color: #fff;
	display: flex;
	align-items: center;
}
#head a {
	color: #fff;
}
#head-brand {
	display: flex;
	flex-direction: column;
	padding: 0 2rem;
	flex-grow: 1;
}
#head-brand-title {
	font-weight: bold;
	font-size: 2rem;
}
#head-brand-tagline {
	font-weight: normal;
	font-size: 1.2rem;
}
#head-picture {
	flex-grow: 0;
	flex-shrink: 1;
	max-width: 12rem;
	padding: 1rem 2rem;
	text-align: center;
}
#head-picture-image {
	width: 100%;
	border: solid 2px #000;
	border-radius: 0.125rem;
}

#page-menu {
	background-color: #000000;
	color: white;
	padding: 0 1rem;
}

#menu-main {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu-main li {
	margin: 0;
	padding: 0;
}
#menu-main li a {
	display: block;
	padding: 0.75em 0.9em;
	color: white;
	font-size: 1em;
	text-decoration: none;
}

#main-menu > li.current-menu-item {
	color: #097AC9;
}

#menu-main a:hover {
	background-color: #333;
}

#menu-main .sub-menu {
	position: absolute;
	display: none;
	flex-direction: column;
	z-index: 1000;
	box-shadow: 0 0 0.5rem rgba(0,0,0,0.25);
	margin: 0;
	padding: 0;
	background-color: #000000;
	max-width: 15rem;
	list-style: none;
}

#menu-main li:hover .sub-menu {
	display: flex;
}

#menu-main-trigger {
	display: none;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75em 0.9em;
	border: none;
	background-color: transparent;
	color: #fff;
	font-size: 1rem;
}

#menu-main-trigger-icon {
	width: 1rem;
}

#page-menu:focus-within .menu-main-container {
	display: block;
}

.menu-main-container {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

body #menu-item-42,
body #menu-item-44 {
	display: none;
}

body.page-name-clearinghouse.logged-in #menu-item-42,
body.page-name-clearinghouse #menu-item-44 {
	display: block;
}

body.page-name-clearinghouse.logged-in #menu-item-44 {
	display: none;
}

#content {
	position: relative;
	padding: 2rem;
}
#content-body {
	width: 100%;
}
#content-widgets {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-wrap: wrap;
}

#content-menu {
	width: 100%;
	background-color: #eee;
	list-style: none;
	margin-bottom: 2rem;
	padding: 1rem 0;
	border-radius: 0.25rem;
}

#content-menu li {
	list-style: none;
	margin: 0;
	padding: 0.25rem 1rem;
}

#content-menu .current_page_item > a {
	font-weight: bold;
}

#content-menu > li.current_page_item,
#content-menu > li:has(.current_page_item) {
	background-color: #ddd;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

#content-menu .children {
	padding-left: 1rem;
}

/*
.widget {margin-bottom:2em;}
.widget h4 {
	padding: 0.75em;
	margin: 0;
	border-bottom: solid #eeeeee 1px;
}
.widget div {
	padding: 0.75em;
}
.pagination {
	text-align:center;
	margin: 2em auto 1em auto;
}
.pagination a {
	display: inline-block;
	padding: 3px 8px;
	border: 1px solid #dddddd;
}
.pagination span {
	display: inline-block;
	padding: 3px 8px;
	border: 1px solid #eeeeee;
	background-color: #f3f3f3;
}
.pagination a span {
	display: inline;
	padding: 0;
	border: none;
	background-color: white;
}
*/

#foot {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem;
	gap: 2rem;
}
.foot-section {
	display: flex;
	gap: 2rem;
	align-items: center;
}
#foot-social {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 1rem;
}
#foot-social img {
	max-width: 3rem;
}
#foot-legal {
	font-size: 0.7rem;
	color: #aaa;
}
#foot-menus {
	display: flex;
}

#menu-top {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu-top li {
	margin: 0;
	padding: 0;
}
#menu-top li.current-menu-item {
	color: #097AC9;
}
#menu-top li a {
	display: block;
	padding: 0.33em 0.66em;
	text-decoration: none;
	font-size: 0.9em;
}

#menu-under-search {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu-under-search li {
	margin: 0;
	padding: 0;
}
#menu-under-search li.current-menu-item {
	font-weight: bold;
}
#menu-under-search li a {
	display: block;
	padding: 0.33em 0.66em;
	text-decoration: none;
	font-size: 0.9em;
}

.breadcrumbs {
	margin: 1.5rem 0 0 0;
}
.breadcrumb {
	margin: 0;
	padding: 0;
}
.breadcrumb-delim {
	margin-left: 0.5em;
	margin-right: 0.5em;
	color: #cccccc;
}

@media (max-width: 840px) and (min-width: 721px) {
	#menu-main li a {
		padding: 0.66em 0.9em;
		font-size: 0.9rem;
	}
}
@media (max-width: 720px) {
	#head {
		flex-direction: column;
		text-align: center;
	}
	#menu-main-trigger {
		display: flex;
	}
	.menu-main-container {
		display: none;
	}
	#menu-main {
		z-index: 10000;
		position: absolute;
		background-color: #000;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		flex-direction: column;
	}
	#menu-main .sub-menu {
		display: block;
		width: 100%;
		max-width: 100%;
		position: static;
	}
	#menu-main .sub-menu a {
		padding-left: 2rem;
	}
	.foot-section {
		flex-direction: column;
	}

/* gforms */
body .gform_wrapper input {
	padding: 0.25em 0.75em;
}

/* event espresso */
#event_espresso_registration_form{
    width:600px;
}
 
form {
    display: block;
    float: left;
}
 
.event_questions {
    display: block;
    float: left;
    margin-right: 25px;
    margin-top: 15px;
    margin-bottom: 10px;
    width:275px;
}
 
.textInput {
    margin-top: -50px;
}
 
.btn_event_form_submit{
    display: block;
    float: left;
    margin-left: 20px;
    margin-top:  1px;
}
 
#additional_header{
    clear:both;
}
 
.error{
    clear:left;
}

.post {
    padding-bottom: 1em;
    margin-bottom: 1em;
	border-bottom: solid #aaaaaa 1px;
}

#wpstats {
	display: block;
	width: 0;
	height: 0;
}