/*!
Theme Name: Wyoming Outdoor Council 2021
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: under_gliffen
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

under_gliffen is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
:root {
	--white:#FFF;
	--grey:#ccc;
	--black: #000;
	--blue:#007DA9;
	--green:#6A8A22;
	--brown:#9D772B;
	--yellow:#FCC558;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
input,
select,
optgroup,
textarea {
	color: #000;
	font-family: 'Arimo', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', serif;
	font-weight: bold;
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: .5em;
}
h1 {
	font-size: 42px;
}

h2 {
	font-size:26px;
}

h3 {
	font-size: 20px;
}

p {
	margin-bottom: 1.5em;
	font-weight:400;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	max-width:100% !important;
	overflow-x: hidden !important;
	background: #fff;
	
	font-family: 'Arimo', sans-serif;
	/* Fallback for when there is no custom background color defined. */
}


hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}
.wp-block-pullquote {
	padding: 2em 0;
	margin: 15px 0;
    text-align: center;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

.wp-block-quote {
	text-align: center;
}
/*--------------------------------------------------------------
Color Palettes
---------------------------------------------------------------*/
.bg-white
:root .has-white-background-color{
	background-color:#FFF;
}
.bg-black,
:root .has-black-background-color{
	background-color:#000;
}
.bg-blue,
:root .has-blue-background-color{
	background-color:#007DA9;
}
.bg-brown,
:root .has-brown-background-color{
	background-color:#9D772B;
}
.bg-orange,
:root .has-orange-background-color{
	background-color:#006371;
}
.bg-green,
:root .has-green-background-color{
	background-color:#6A8A22;
}
.text-white,
:root .has-white-color{
	color:#FFF;
}
.text-black,
:root .has-black-color{
	color:#000;
}
.text-blue,
:root .has-blue-color{
	color:#007DA9;
}
.text-brown,
:root .has-brown-color{
	color:#9D772B;
}
.text-green,
:root .has-green-color{
	color:#6A8A22;
}
.text-orange,
:root .has-orange-color{
	color:#FCC558;
}
/*--------------------------------------------------------------
# Gravity Forms
--------------------------------------------------------------*/
#gform_submit_button_1 {
	padding: 5px 40px;
	font-family: hind,sans-serif;
	font-weight: 700;
	font-style: normal;
	background: #006371;
	color: #fff;
}
.gform_footer.top_label {
	text-align: left;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button,
.wp-block-button__link {
	font-size: 22px;
	padding:  10px 15px;
	text-transform: uppercase;
	border-radius: 0 !important;
	font-weight: bold;
	background-color: var(--blue);
}
.wp-block-button__link:hover {
	color: inherit;
}
.is-style-outline>.wp-block-button__link, .wp-block-button__link.is-style-outline {
    border: 4px solid;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--blue);
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
	color: var(--green);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration: none;	
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.super-header{
	padding: 15px;
}
.super-header a{
	text-decoration: none;	
}
.super-header a:hover{
	text-decoration:none;	
}
.main-header {
	background-color: #6A8A22;
	color: #FFF;
}
.admin-bar .main-header {
	top: 32px;
}
.hero-title {
	font-size: 52px!important;
}
@media (max-width:768px){
	#header-social, #super-menu, .main-header {
		display: none;
	}
}
/*--------------------------------------------------------------
## Header Image
--------------------------------------------------------------*/
.header-image {
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    min-height: 400px;
}
.header-image .entry-title {
	display: block;
}
.title-blade {
	background: rgba(4,11,20, 0.5);
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    width: 100vw;
}
.title-blade h1 {
	color: #fff;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#super-menu {
	padding: 0;
	margin: 0;
    font-size: 1.1rem;
}
#super-menu > li {
	display:inline-block;
	position:relative;

}
#super-menu > li a {
	color:#007DA9;
    font-weight: bold;
    padding:5px 7px;
}
#super-menu > li a:after{
    font-family: 'Material Icons';
    content: "chevron_right";
    -webkit-font-feature-settings: 'liga';
    display: inline-block;
    padding-left: 3px;
    vertical-align: top;
}
#super-menu > li a:hover {
    color: #6A8A22;
}
    
#primary-menu {
	list-style:none;	
	margin:0;
	padding:0 0 0 15px;
}
#primary-menu a:link, #primary-menu a:visited, #primary-menu a:active {
	color:#fff;	 
	text-decoration:none;
	display:block;
	text-transform: uppercase;
}
#primary-menu a:hover{
	color:#FCC558;	
}
#primary-menu a{
	padding:5px 10px;
}
#primary-menu > li > a {
	padding: 20px 40px;
    text-transform: uppercase;  
}
#primary-menu > li > a:after{
    font-family: 'Material Icons';
    content: "expand_more";
    -webkit-font-feature-settings: 'liga';
    display: inline-block;
    padding-left: 3px;
    vertical-align: top;
    text-transform: lowercase;
}

#primary-menu > li {
	display:inline-block;
	position:relative;
	font-size:22px;
	color:#FFF;
}
#primary-menu > li .sub-menu {
	display:none;	
	position:absolute;
	top:100%;
	left:0;
	list-style:none;
	margin:0;
	padding:0;
 
	background-color:#6A8A22;
	min-width: 220px;
	z-index:10000000;
	text-align: left;
	white-space: nowrap;
}
#primary-menu > li .sub-menu li a{
	font-size: 18px;
    padding: 10px 10px;
    color: #FFF;
	text-transform: uppercase;
}
#primary-menu > li:hover .sub-menu{
	display:block;
}
#primary-menu .sub-menu li a:hover{
	color: #FCC558!important;
	background-color: #5c771e;
}
#menu-footer,
.push {
  height: 50px;
}
#menu-footer, #menu-super {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menu-footer > li, #menu-super > li {
	display: inline-block;
}
@media (max-width:1100px){
	#primary-menu > li > a {
		padding: 5px 20px;	
	}
}
@media (max-width:850px){
	#primary-menu > li > a {
		padding: 5px 15px;	
	}
	#primary-menu > li {
		font-size:16px;
		letter-spacing: 1px;
	}
}

#mobile-menu{
	list-style:none;	
	padding:15px;
	margin:0;
	width:100%;
	display:block;
	background-color: rgba(247,247,247,0.95);
	position:absolute;
	font-size:20px;
	font-weight:bold;
	z-index: 1000;
}
#mobile-menu > li .sub-menu{
	list-style:none;
	margin: 0;
}	
#mobile-menu a:link, #mobile-menu a:visited, #mobile-menu a:active{
	padding:3px 10px;
	color:#333;	 
	text-decoration:none;
	display:block;
	font-weight: 400;
}

.mobile-toggle .material-icons{
	font-size:50px;
	cursor:pointer;
	color: var(--blue);
}
.entry-footer{
	padding-top:20px;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Hero Image
--------------------------------------------------------------*/
.page-id-10333 .entry-content{
	margin-top:20px;
}
.entry-content .hero-img {
	height: 70vh;
}
.row.row, [class^="row"].row {
    padding-bottom: 0 !important;
}
.hero-heading {
	text-transform: uppercase;
	font-size: 130px;
	opacity: 80%;
	font-family: hind,sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 15px;
}
.hero-subheading {
	text-shadow: -4px -4px #666;
	text-transform: uppercase;
	font-family: hind,sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 60px;
}
.hero-block {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	max-width: 600px;
	margin: 0 auto;
}
@media (max-width:768px){
	.hero-heading {
		font-size: 75px;
	}
	.hero-subheading {
		font-size: 35px
	}
	.hero-block {
		bottom: 50px;
		max-width: 300px;
	}
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}
#content{
  min-height: calc(100vh - 70px);
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width:1300px){
	.entry-content .alignwide {
		margin-left  : -80px;
		margin-right : -80px;
	}
}
.entry-content .alignfull {
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	max-width    : 100vw;
	width:100vw;
}
.alignfull img {
	width: 100vw;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
.quote-open::before {
	content: url(img/open.png);
    position: absolute;
    z-index: -1;
    top: 15px;
	display: block;
	left: 18%;
}
.quote-close::after {
	content: url(img/close.png);
    position: absolute;
    bottom: 45px;
	display: block;
	z-index: -1;
	right: 18%;
}
@media (max-width:768px) {
	.ghostkit-custom-ZwNIpw {
		margin-bottom: 15px;
		text-align: center;
	}
	.ghostkit-custom-20z1Au {
		font-size: 20px!important;
	}
	.quote-open::before {
		left: 2%;	
	}
	.quote-close::after {
		right: 2%;
	}
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}
.updated:not(.published) {
	display: none;
}
.page-content,
/*.entry-content,*/
.entry-summary {
	margin: 1.5em 0 0;
}
.single .entry-title, .single h2, 
.archive .page-title {
	color: #000;
}
.single h3, .single h4, .single h5, 
.archive h3, .archive h4, .archive h5 {
	font-weight: 300!important;
	color: #9D772B;
}
.archive .entry-title {
	font-size : 30px;
	display: block!important;
}
.archive h2 a {
	color: #007DA9;
}
.entry-meta {
	font-style: italic;
	font-size: 12px;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
	display: inline-flex;
	color: #007DA9;
	padding-right: 5px;
}
.wp-block-latest-posts__list {
	margin: 0;
	padding: 0;
}
.wp-block-latest-posts__list > li {
	padding: 40px 0;
}
.wp-block-latest-posts__list > li a {
	color: #6A8A22;
	font-size: 24px;
	display: flex;
}
.wp-block-latest-posts__featured-image.alignleft {
    margin-right: 3em;
}
@media (max-width: 768px) {
    .wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
        display: block;
	}
	.wp-block-latest-posts__list > li {
		padding: 20px 0;
	}
	.wp-block-latest-posts__list > li a {
		font-size: 20px;
		display: block;
	}
	.wp-block-latest-posts__featured-image.alignleft {
		margin-right: 0;
	}
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer span.cat-links, footer span.tags-links{
    margin-right: 5px;
}
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation{
	margin-top:5px;
}
#colophon {
	margin-top: 30px;
	position: relative;
	background: #007DA9;
	color: #FFF;
	padding: 30px 20px;
}
#colophon a {
	color: #FFF;
	text-transform: uppercase;
	padding: 0px 10px;
}
#colophon .site-info a {
	font-size: 11px;
	text-transform: none;
}
.footer-area-two, .social-container {
	text-align: right;
}
#footer-social {
	margin: 0;
	padding: 0;
}
#footer-social > li {
	display:inline-block;
	position:relative;
	list-style: none;
}
#footer-social img {
	max-height: 30px;
	padding: 5px; 
}
.site-info {
	line-height: 15px;
	margin-top: 20px;
}
@media (max-width: 768px) {
	#colophon {
		padding: 20px 10px;
	}
	.footer-area-one, #menu-super {
		font-size: 14px;
	}
	.footer-area-two {
		margin: 15px 0;
	}
	.footer-area-one, .footer-area-two, .social-container {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# WP Block Customizations
--------------------------------------------------------------*/
.wp-block-social-link {
  border-radius: 6px;
}
:where(.wp-block-columns) {
  margin-bottom: 0;
}
.wp-block-separator {
/*	border: none;
	width: 200px;
	background-image: url("img/hr-line.png");
	height: 60px;
*/
}