/*
Theme Name: TN Arts Commission
Theme URI: https://tnartscommission.org
Author: DesignUps
Author URI: https://designups.com/
Description:  The best WordPress starter theme based on the most powerful frameworks in the world: "_s" (by Automattic, the main people behind WordPress development), Twitter Bootstrap (the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web) and Font Awesome (or Fontawesome, a full suite of 675+ pictographic icons for easy scalable vector graphics on websites). 
Version: 3.1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-bootstrap-starter
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready, right-sidebar, custom-background, e-commerce, theme-options, sticky-post, full-width-template
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Woocommerce
# Footer
--------------------------------------------------------------*/

/**
 * ----------------------------------------------------------------------------------------
 * Fonts
 * ----------------------------------------------------------------------------------------
 */

@font-face {
  font-family: 'interstateregular';
  src: url("fonts/interstate_bold-webfont.eot");
  src: url("fonts/interstate_bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/interstate_bold-webfont.woff") format("woff"), url("fonts/interstate_bold-webfont.ttf") format("truetype"), url("fonts/interstate_bold-webfont.svg#interstateregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /*Fixes horrible rendering of @font-face in Chrome for Windows*/
  @font-face {
    font-family: 'interstateregular';
    src: url("fonts/interstate_bold-webfont.svg") format("svg");
  }
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html, body {overflow-x:hidden;} /*only reason for this is some dumb inline style on the body ?? where is this coming from ?? */
body {
  margin: 0;
  -webkit-font-smoothing: auto;
  margin-top:111px;
  font-family: "ff-tisa-web-pro", serif;
  color:#3b3b3b;
  overflow-y:hidden;
}


/* fix for interstate font rendering */
h1, h2, h3, h4, h5, h6, .widget-title, p, span, html a, section li {
    -webkit-font-smoothing: antialiased !important;
}

.sectionpad p a {font-weight: 600;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
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-color: transparent;
  color:#96c441;
}

a:active,
a:hover {
  outline: 0;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 2.5rem;
}

hr {
  box-sizing: content-box;
  height: 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-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "interstateregular", Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
  -webkit-font-smoothing: antialiased;
  color: #3c3b3d;
  font-weight: normal;
}
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b,
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {font-weight: normal !important;}



h1, .hero h2 {
 font-size: 2rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  /*font-size: 2em;*/
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
h5 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5em;
}
h1.entry-title {
  font-size: 1rem;
  margin-bottom:5px;
}
h2.entry-title {
  border-bottom: 1px solid #eaecef;
}
h3.widget-title {
  font-size: 1.3em;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
  font-size:100%;
}

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

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
header#masthead {
    margin-bottom: 0;
    background-color: transparent;
    box-shadow: 0 -5px 40px 2px rgba(80,80,80,0);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s ease;
}

header#masthead.nav-up {
    top: -30px;
    box-shadow: 0 -5px 40px 2px rgba(80,80,80,.3);
}

.navbar-brand > a {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.1rem;
  outline: medium none;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.navbar-brand img {max-width:560px;}

.navbar-brand > a:visited, .navbar-brand > a:hover {
  text-decoration: none;
}

#page-sub-header {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 1.25rem;
  background-size: cover !important;
}

body:not(.theme-preset-active) #page-sub-header h1 {
  line-height: 1.6;
  font-size: 4rem;
  color: #563e7c;
  margin: 0 0 1rem;
  border: 0;
  padding: 0;
}

#page-sub-header p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 300;
}
body:not(.theme-preset-active) #page-sub-header p {
color: #212529;
}
a.page-scroller {
  color: #333;
  font-size: 2.6rem;
  display: inline-block;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  body:not(.theme-preset-active) #page-sub-header h1 {
    font-size: 3.750rem;
  }
  body:not(.theme-preset-active) #page-sub-header {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  #page-sub-header p {
    max-width: 43rem;
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead nav {
  padding-left: 0;
  padding-right: 0;
}


#masthead .navbar-nav > li > a {
    color: #9ac647;
    padding: 10px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 1.36em;
    border-bottom:none;
    font-family: "interstateregular", Arial, Helvetica, sans-serif;
    transition: color .3s ease;
}


#masthead .navbar-nav > li > a:hover,
#masthead .dropdown-item:hover, 
#masthead .dropdown-item:focus  {
  color: #00548c;
}
#masthead .navbar-nav li.current-menu-item > a {text-decoration: underline;}

#masthead .navbar-nav > li {margin-right:2%;width:18%;}




#masthead .navbar-nav > li#menu-item-1480 {margin-right:2%;width:14%;}
#masthead .navbar-nav > li#menu-item-1433 {margin-right:2%;width:20%;}
#masthead .navbar-nav > li#menu-item-1271 {margin-right:2%;width:19%;}


#masthead .navbar-nav > li:last-child {margin-right:0;}

#masthead .navbar-nav {
	-ms-flex-direction: row;
    flex-direction: row;
    padding:20px 0 30px;
}

#masthead .dropdown-menu {
	visibility: visible;
    opacity: 1;
    border:none;
    background-color:transparent;
    padding-top:0;
    margin-top:0;
}

#masthead #main-nav {overflow:hidden;background-color:transparent;}

#masthead .dropdown-toggle::after {display:none;}

#masthead .mainnavv, #masthead .main-search  {
	width:100%; 
	background:rgba(240, 240, 240, 0.99); 
	box-shadow: 0 10px 30px -18px rgba(80,80,80,.5);
}



#masthead .search-toggler {
    background: url(img/searchicon.png);
    border: none;
    background-size: 25px;
    background-repeat: no-repeat;
    position: absolute;
    top: 28px;
    right: 80px;
    width: 25px;
    height: 25px;
    padding: 0;
}



#masthead .search-form input[type=search] {
    width: 90%;
    border: none;
    border-radius: 0;
    font-size: 1.13em;
    background-color: white;
    border: 1px solid #d6d6d6;
    display:inline-block;

}
#masthead .search-form input[type=submit] {
    width: 10%;
    position: relative;
    top: -4px;
    padding: 9px;
    line-height: 1.6;
    border: none;
}
/*#masthead .search-form input[type=search]:focus {
  width: 100%;
}*/

.search-container {padding:20px 0;}

.navbar > .white-bkd {width:100%;}

.navbar-brand {
  height: auto;
  padding:17px 0;
}

.navbar-toggle .icon-bar {
  background: #000 none repeat scroll 0 0;
}

.dropdown-menu .dropdown-toggle::after {
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  border-top: 0.3em solid transparent;
}

.navbar-light .navbar-toggler {border:none; color:transparent; padding:0;}
.navbar-toggler-icon {filter:invert(100) contrast(200%); transform:scale(1.5); width: 35px; height: 35px;}


/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.dropdown-item {
  line-height: 1.2;
  padding: 2px 10px;
  font-size:.88em

}

.dropdown-menu {
  min-width: 12.500rem;
}

.dropdown .open .dropdown-menu {
  display: block;
  left: 12.250em;
  top: 0;
}

.dropdown-menu .dropdown-item {
  white-space: normal;
  background: transparent;
  line-height: 1.6;
}
.dropdown-menu .dropdown-item:hover {
  background: transparent;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .dropdown-menu li > .dropdown-menu {
    right: -9.875rem;
    top: 1.375rem;
  }
}
@media screen and (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    border: medium none;
    /*margin-left: 1.250rem;*/
    padding: 0;
    min-width:auto;
  }

  .dropdown-menu li a {
    padding: 0;
  }

  #masthead .navbar-nav > li > a {
    padding:10px 0 0 0;
    font-size:1em;
  }

  .navbar-light .navbar-toggler {
    border: medium none;
    outline: none;
  }
}
.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%;
}
.comment-content.card-block {
  padding: 20px;
}

.navigation.post-navigation {
  padding-top: 1.875rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  border: 1px solid #ddd;
  border-radius: 0.938rem;
  display: inline-block;
  padding: 0.313rem 0.875rem;
  text-decoration: none;
}

.post-navigation .nav-next a::after {
  content: " \2192";
}

.post-navigation .nav-previous a::before {
  content: "\2190 ";
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #eee none repeat scroll 0 0;
}





.dropdown-menu {
  display:block; 
  visibility:hidden; 
  opacity:0;  
  transition:opacity .5s ease;
}
.dropdown:hover>.dropdown-menu {
  visibility:visible;
  opacity:1; 
  transition:opacity .5s ease;
}





/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  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;
  color: #21759b;
  display: block;
  font-size: 14px;
  /*font-size: 0.875rem;*/
  font-weight: bold;
  height: auto;
  left: 0.313rem;
  line-height: normal;
  padding: 0.938rem 1.438rem 0.875rem;
  text-decoration: none;
  top: 0.313rem;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}


.font-size-wrap span {
  cursor: pointer;
}

.font-size-wrap .js-font-decrease {
  font-size: 75%;
  padding: 7px 7px 3px;
}

.font-size-wrap .js-font-normal {
  font-size: 100%;
  font-size: 100%;
  padding: 3px 5px 2px;
}

.font-size-wrap .js-font-increase {
  font-size: 125%;
  padding: 0px 3px 1px;
  border-right: 0;
}

p.font-changer {font-family: 'interstateregular', sans-serif; color:#9e9e9e; font-size:15px; margin-bottom:0;}

p.font-changer span {color:#9e9e9e; background-color:#e5e5e5; border-right:1px solid #ccc;}
p.font-changer span.this-size {color:#fff; background-color:#22558a;}
/*--------------------------------------------------------------
# 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;
}

a img.alignright {
  float: right;
  margin: 0.313rem 0 1.25rem 1.25rem;
}

a img.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.alignleft {
  float: left;
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignleft {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignright {
  margin: 0.313rem 0 1.25rem 1.25rem;
}

/*--------------------------------------------------------------
# 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;
  font-size: 0.875rem;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

.widget_search .search-form input[type="submit"] {
  display: none;
}

.nav > li > a:focus,
.nav > li > a:hover {
  /*background-color: #eee;*/
  text-decoration: none;
}
.half-rule {
  width: 6rem;
  margin: 2.5rem 0;
}
.widget_categories .nav-link {
  display: inline-block;
}

.widget-title {color:#96c441; font-size: 1.3em; font-family: "interstateregular", Arial, Helvetica, sans-serif;}
.sidebar .widget {background:#fff; padding:20px;}

#secondary .nav-link,
#secondary ul li a {padding:6px 0 0 5px; display: block; text-decoration: none; color:#3b3b3b;}
#secondary ul li a:hover {text-decoration: underline;}

#secondary ul {list-style:none; padding:0;}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
#content.site-content {
  padding-bottom: 3.75rem;
  padding-top: 4.125rem;
}

.sticky .entry-title::before {
  content: '\f08d';
  font-family: "Font Awesome\ 5 Free";
  font-size: 1.563rem;
  left: -2.5rem;
  position: absolute;
  top: 0.375rem;
  font-weight: 900;
}

.sticky .entry-title {
  position: relative;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-template-blank-page .entry-content,
.blank-page-with-container .entry-content {
  margin-top: 0;
}

.post.hentry {
  margin-bottom: 4rem;
}

.posted-on, .byline, .comments-link {
  color: #9a9a9a;
}

.entry-title > a {
  font-size:1.4em;
  color:#96c441; 
}

.entry-meta {margin-bottom:8px;}
.entry-meta a {color:#161616;}

/* blog list customizations */
body.page-template-blog .entry-title > a, body.post-type-archive-press-releases .entry-title > a {
    color: #134687;
}
body.page-template-blog .post .btn.blue-btn,
body.post-type-archive-press-releases .press-releases .btn.blue-btn 
 {background:#96c441;}


header.entry-header {margin-bottom:30px;}
h1.post-title {font-size:2em;}


.blogimg {max-width:250px; float:left; margin:0 20px 20px 0;}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comment-body .pull-left {
  padding-right: 0.625rem;
}

.comment-list .comment {
  display: block;
}

.comment-list {
  padding-left: 0;
}

.comments-title {
  font-size: 1.125rem;
}

.comment-list .pingback {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.563rem 0;
}

.comment-list .pingback:first-child {
  border: medium none;
}

/*--------------------------------------------------------------
# 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%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 0.313rem 0.313rem 0;
  text-align: center;
}
.wp-caption img[class*="wp-image-"] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text {
  font-size: 0.688rem;
  line-height: 1.063rem;
  margin: 0;
  padding: 0.625rem;
}

.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-item .gallery-columns-2 {
  max-width: 50%;
}
.gallery-item .gallery-columns-3 {
  max-width: 33.33333%;
}
.gallery-item .gallery-columns-4 {
  max-width: 25%;
}
.gallery-item .gallery-columns-5 {
  max-width: 20%;
}
.gallery-item .gallery-columns-6 {
  max-width: 16.66667%;
}
.gallery-item .gallery-columns-7 {
  max-width: 14.28571%;
}
.gallery-item .gallery-columns-8 {
  max-width: 12.5%;
}
.gallery-item .gallery-columns-9 {
  max-width: 11.11111%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugin Compatibility
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Woocommerce
--------------------------------------------------------------*/
.woocommerce-cart-form .shop_table .coupon .input-text {
  width: 8.313rem !important;
}

.variations_form .variations .value > select {
  margin-bottom: 0.625rem;
}

.woocommerce-MyAccount-content .col-1,
.woocommerce-MyAccount-content .col-2 {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Elementor
--------------------------------------------------------------*/
.elementor-page article .entry-footer {
  display: none;
}

.elementor-page.page-template-fullwidth #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}

.elementor-page .entry-content {
  margin-top: 0;
}

/*--------------------------------------------------------------
## Visual Composer
--------------------------------------------------------------*/
.vc_desktop article .entry-footer {
  display: none;
}

.vc_desktop #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}

.vc_desktop .entry-content {
  margin-top: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer#colophon {
  font-size: .63em;
  color: #9c9c9c;
  background-color: #393939;
/*  font-size:10px;*/
}
/*footer#colophon .row > div:nth-of-type(2) a {font-weight: 700;-webkit-font-smoothing: antialiased;}
*/
footer#colophon img {max-width:120px;}


.copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-align: center;
}

.copyright a, footer#colophon a {
  color: inherit;
}

/*@media screen and (max-width: 767px) {
  #masthead .navbar-nav > li > a {
    padding-bottom: 0.938rem;
    padding-top: 0.938rem;
  }
}

*/

/*--------------------------------------------------------------
# Custom Header Nav Stuff
--------------------------------------------------------------*/


body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}


.navbar-toggler {    
  width: 40px;
    height: 40px;
    position: absolute;
    z-index: 1500;
    top: 21px;
    right: 15px;
    cursor:pointer;
      -webkit-transition: top .3s ease;
  -moz-transition: top .3s ease;
  -ms-transition: top .3s ease;
  -o-transition: top .3s ease;
  transition: top .3s ease;
}

#nav-toggle {    
    height: 36px;
    float: left;
    cursor: pointer;
    width: 36px;
    position: relative
}

.navbar-toggler #nav-toggle span,
.navbar-toggler #nav-toggle span:before,
.navbar-toggler #nav-toggle span:after {
  position: absolute;
  display: block;
  content: '';
  background: #bbbbbb;
  width:36px;
  right:0;
  cursor: pointer;
  height: 4px;
  opacity:1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;

}

.navbar-toggler.collapsed #nav-toggle span:before {top:12px;}
.navbar-toggler.collapsed #nav-toggle span:after {top:12px;}

.navbar-toggler #nav-toggle span {
  -webkit-transform: translateY(0) translateX(0) rotate(45deg) !important;
          transform: translateY(0) translateX(0) rotate(45deg) !important;
          top:16px;
    background: #aaa;
}
.navbar-toggler #nav-toggle span:before {
  opacity: 0;
  top:0px;
}
.navbar-toggler.collapsed #nav-toggle span:before {top:-12px;}

.navbar-toggler #nav-toggle span:after {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-90deg) !important;
          transform: translateY(-10px) translateX(0) rotate(-90deg) !important;
  top:10px;
  background: #bbbbbb;

}


.navbar-toggler.collapsed #nav-toggle span,
.navbar-toggler.collapsed #nav-toggle span:before,
.navbar-toggler.collapsed #nav-toggle span:after {
  -webkit-transform: translateY(0) translateX(0) rotate(0) !important;
  transform: translateY(0) translateX(0) rotate(0) !important;
  opacity:1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
    background: #bbbbbb;
}

.mainnavv li.navicon-tw {border-left:1px solid #4b4b4b; margin-left:10px;}

.mainnavv li[class*="navicon-"] {
    width: 45px;
    float: left;
    border-top: 1px solid #4b4b4b;
    border-bottom: 1px solid #4b4b4b;
    border-right:1px solid #4b4b4b;
  }

.mainnavv li[class*="navicon-"] a {
    color: #4b4b4b;
    font-size: 0;
    padding:7px 0;
    text-align: center;
    display: block;
    transition: color .3s ease;

}
.mainnavv li[class*="navicon-"] a:after {
    content: "\f099";
    font-size:23px;
    display:block
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 5 Brands";
    line-height: 150%;
}
.mainnavv li.navicon-fb a:after { content: "\f09a";}
.mainnavv li.navicon-yt a:after { content: "\f167";}

#masthead .mainnavv li.navicon-tw a:hover { color:#00aced;}
#masthead .mainnavv li.navicon-fb a:hover { color:#3b5998;}
#masthead .mainnavv li.navicon-yt a:hover { color:#ff0000;}


.mainnavv .navnewsletter a {padding:10px 0 10px 10px; color:#22558a;font-family: "interstateregular", Arial, Helvetica, sans-serif;}

.mainnavv .navnewsletter a:after {
  content:"";
  display:inline-block;
  position: relative;
    top: 2px;
    left: 9px;
  background:url('img/blue-right-arrow-34.png'); 
  background-size: 17px 13.5px; 
  width:17px; 
  height:13.5px; 
  transition:left .2s ease;
}
.mainnavv .navnewsletter a:hover:after {left:13px;}
.mainnavv .navnewsletter a:hover {color:#22558a;}

/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/


.container > div > .col-1 {width:100%; max-width:100%; flex:100%;}
.btn, input[type="submit"], input[type="reset"] {
	  color: #205788;
    background-color: #ffffff;
    border-radius: 0;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    padding: 13px 30px 16px 23px;
    line-height: 50%;
    transition: all .4s ease;
    border:none;
}

.btn:after {
	content:"";
	display:inline-block;
	position: relative;
    top: 2px;
    left: 9px;
	background:url('img/blue-right-arrow-34.png'); 
	background-size: 17px 13.5px; 
	width:17px; 
	height:13.5px; 
	transition:left .2s ease;
}
.btn:hover:after {left:13px;}


.btn.hmme:after {
  content:"";
  display:inline-block;
  position: relative;
    top: 2px;
    left: 9px;
  background:url('img/white-right-arrow-34.png'); 
  background-size: 17px 13.5px; 
  width:17px; 
  height:13.5px; 
  transition:left .2s ease;
}
.btn.hmme:hover:after {left:13px;}


.btn.blue-btn,
input[type="submit"],
input[type="reset"]  {background-color:#134687;color:#fff;}

.btn.blue-btn:hover,
input[type="submit"]:hover,
input[type="reset"]:hover  {color:#fff;}

.blue-btn.btn:after,
input[type="submit"]:after, input[type="reset"]:after  {
  content:"";
  display:inline-block;
  position: relative;
  top: 0;
  left: 9px;
  background:url('img/white-right-arrow-34.png'); 
  background-size: 17px 13.5px; 
  width:17px; 
  height:13.5px; 
  transition:left .2s ease;

}
.btn.blue-btn:hover:after {left:13px;}


.btn.red-btn {background-color:#aa222c; color:#fff;}
.btn.red-btn:hover {color:#fff;}


.btn.red-btn:after {
  content:"";
  display:inline-block;
  position: relative;
  top: 0;
  left: 9px;
  background:url('img/white-right-arrow-34.png'); 
  background-size: 17px 13.5px; 
  width:17px; 
  height:13.5px; 
  transition:left .2s ease;

}
.btn.red-btn:hover:after {left:13px;}



.btn.grey-btn {background-color:#666; color:#fff;}
.btn.grey-btn:hover {color:#fff;}


.btn.grey-btn:after {
  content:"";
  display:inline-block;
  position: relative;
  top: 0;
  left: 9px;
  background:url('img/white-right-arrow-34.png'); 
  background-size: 17px 13.5px; 
  width:17px; 
  height:13.5px; 
  transition:left .2s ease;

}
.btn.grey-btn:hover:after {left:13px;}


.green-txt, .green-txt:hover {color:#9bc748;}
.ltblue-txt, .ltblue-txt:hover {color:#6fc4ca;}
.blue-txt, .blue-txt:hover {color:#00548c;}


.contain550 {max-width:550px; width:100%; margin:0 auto;padding-right: 15px;padding-left: 15px;}
.contain750 {max-width:750px; width:100%; margin:0 auto;padding-right: 15px;padding-left: 15px;}
.contain990 {max-width:990px; width:100%; margin:0 auto;padding-right: 15px;padding-left: 15px;}
.contain1500 {max-width:1500px; width:100%; margin:0 auto;padding-right: 15px;padding-left: 15px;}


.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p {color:#fff;}

.blue-bkd {background:#00548c;}
.medblue-bkd {background:#346394;}
.ltgray-bkd {background:#f7f9f9;}
.white-bkd {background:#ffffff;}
.ltblue-bkd {background:#e4f7f4;}
.fa-bkd {background:#fafafa;}
.fc-bkd {background:#fcfcfc;}
.ef-bkd {background:#f9f9f9;}


.smallerpad {padding:20px 0;}
.sectionpad {padding:35px 0;}
.biggerpad {padding:60px 0;}

section p, section li {font-size:1.13rem;}

.home-hero .btn {
    font-size: 1.56em;
    background: #9bc748;
    color: #fff;
    line-height: 50%;
    padding: 20px 30px;
    position: absolute;
    left: 5%;
    border-radius: 0;
    top: 65%;
    transform: translateY(-50%);
    white-space: inherit;
    line-height: 140%;
}

.home-hero .btn:after {
	content:"";
	display:inline-block;
	position: relative;
    top: 0;
    left: 9px;
	background:url('img/white-right-arrow-34.png'); 
	background-size: 17px 13.5px; 
	width:17px; 
	height:13.5px; 
	transition:left .2s ease;

}

.home-hero .btn:hover:after {left:13px;}

.home-hero > div {height:560px;}

.img-bg {    
  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; height: 100%;}

a.img-link {display: block; position: relative; width:100%; height:100%; text-indent: -9999px;font-size: 0px;
line-height: 0px;}

.carousel-control-next, .carousel-control-prev {width:10%; opacity:.8;}
.carousel-control-next-icon {
        height: 50px; width:25px; background-image: url('img/right-chevron-49.png');
}
.carousel-control-prev-icon {
        height: 50px; width:25px;background-image: url('img/left-chevron-49.png');
}



.entry-content h1 {font-size: 1.6em;}

body a.scrolldown {font-family: "interstateregular", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #00548c;
    margin: 30px 0 0 0;
    padding: 0;
    font-weight: normal;
    font-size: 14px; 
    text-align: center;
   text-decoration:none !important;}

body a.scrolldown img {width: 35px; height: auto; margin: 0 auto 10px; padding: 0;}


.home-intro img {width:50px; margin-bottom:20px;}
.home-intro p {max-width:290px; width:100%; margin:0 auto;}
.home-intro a {border-bottom:1px solid; color:#67bfcd; display:inline-block; margin:18px 0 5px; font-size:1.13em;}
.home-intro a:hover {border-bottom:1px solid #fff;text-decoration: none;}

.card {background:#fff; border:none; box-shadow:0 0 10px 1px rgba(180,180,180,.2); border-radius:0; height:100%;transition:box-shadow .3s ease;}
.card:hover {box-shadow:0 0 20px 1px rgba(200,200,200,.8);}
.card-img {height:240px; border-radius:0; width:100%; min-width:100%; display:block;}
.card-img:hover + .card-txt h3 a {text-decoration: underline;}
.card-txt {padding:40px 30px;}
.card-txt p {margin:0;}
.card-txt h3 {font-size:1.6em; }
.card-txt h3 a {color:#9bc748;}
.dates-list {list-style:none; margin:0; padding:0;}
.dates-list li {padding-bottom:13px;}
.dates-list a {color:#fff;}

a.card-img {text-indent: -9999px; display: block;}

.grant-boxes .card-txt {padding:20px 15px 25px;}
.grant-boxes .card-txt h3 {font-size: 1.5em; margin:0 0 6px 0;}

body.post-type-archive-permanentcollection .card-img {height:160px;}
body.post-type-archive-permanentcollection .card-txt {padding:10px;}
body.post-type-archive-permanentcollection .card-txt h3 {font-size: 1.2em;}
body.post-type-archive-permanentcollection .card-txt h3 a {color: #3b3b3b;}

body.page-template-archive-staff .card-txt {padding:15px 12px;}
body.page-template-archive-staff .card-txt h3 {font-size: 1.3em;margin:0;}
body.page-template-archive-staff .col-md-2 {padding-left:25px; padding-right:25px;}
body.page-template-archive-staff .card-txt p {font-size: 1em;}





@media screen and (max-width:1199px) {
  .cards-holder .col-md-2,
  body.post-type-archive-staff .col-md-2 {flex: 20%; max-width: 20%;}
}
@media screen and (max-width:991px) {
  .cards-holder .col-md-2,
  body.post-type-archive-staff .col-md-2 {flex: 25%; max-width: 25%; padding-left:15px; padding-right:15px;}
}
@media screen and (max-width:767px) {
  .cards-holder .col-md-2,
  body.post-type-archive-staff .col-md-2 {flex: 33.333%; max-width: 33.333%;}

}
@media screen and (max-width:500px) {
  .cards-holder .col-md-2,
  body.post-type-archive-staff .col-md-2 {flex: 50%; max-width: 50%;}
}


.contact {list-style:none; margin:0; padding:0;}
.contact i {margin-right:7px;}
.card-txt .entry-footer ul.contact {list-style:none; padding:20px 0 0 0; margin:0;}

.cards-holder > div {margin-bottom:50px;}




.hero {padding:35px 0 5px;}
.breadcrumbs {padding:10px 0; background-color:#d1d3d3;}
.breadcrumbs p {font-family: "interstateregular", Arial, Helvetica, sans-serif;color:#686868;margin:0; font-size: .95rem;}
.breadcrumbs p a {color:#686868;}
.breadcrumbs p a:hover {color:#686868; text-decoration: underline;}

.inner-intro p {font-size:1.2em;}

ul.link-list {list-style:none; padding:0; margin:40px 0 25px;}
ul.link-list.light-links li {padding-bottom: 10px;}
ul.link-list.light-links a {color:#fff; font-size: 1em;}
ul.link-list.light-links a:hover {text-decoration:underline;}

div.link-list ul {list-style:none; padding:0; margin:30px 0 0;}
div.link-list ul li {width:44%; margin-right: 6%; min-height: 50px; font-size: 1em; display:inline-block; text-align: left; padding-bottom:20px; vertical-align: top; float: left;}
div.link-list ul li a {color:#00548c;}
div.link-list ul li a:hover {text-decoration: underline;}


div[class*="col-"] > .blue-bkd.light-text p {font-size:1.2em;}
div[class*="col-"] > .blue-bkd.light-text a {color:#fff; text-decoration: underline;}
div[class*="col-"] > .blue-bkd.light-text a.lbox {font-size:1.2em; color:#fff; text-decoration: underline; font-weight: 600;}
div[class*="col-"] > .blue-bkd.light-text a:hover {text-decoration:none;}







.dart-list {list-style:none; padding:0; margin:0 0 40px 0;}
.dart-list li {display:inline-block; width:23%; margin-right:1%; text-align:center; }
.dart-list li a {
  position: relative;
  background:#0b558a; 
  color:#fff; 
  font-family: "interstateregular", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  display:block; 
  font-size:22px; 
  font-weight: 500; 
  padding:10px;
  width:100%; 
  height:100%; 
  transition:all .3s ease;
  cursor:pointer;
  text-indent:25px;
}
.dart-list li a:before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    height: 0;
    border-style: solid;
    border-width: 26.5px 0 26.5px 25px;
    border-color: transparent transparent transparent #f9f9f9;
}

.dart-list li a:after {
    content: '';
    position: absolute;
    z-index: 3;
    right: -25px;
    top: 0;
    height: 0;
    border-style: solid;
    border-width: 26.5px 0 26.5px 25px;
    border-color: transparent transparent transparent #0b558a;
    transition:all .3s ease;
    width:10px;
}


.dart-list li a.active,
body.page-id-18594 .dart-list li:nth-of-type(2) a,
body.page-id-1718 .dart-list li:nth-of-type(3) a,
body.page-id-1492 .dart-list li:nth-of-type(4) a {background:#9ac74b; color:#fff; text-decoration: none;}

.dart-list li a:hover {background:#6fc4ca; color:#fff; text-decoration: none;}

.dart-list li a.active:after,
body.page-id-18594 .dart-list li:nth-of-type(2) a:after,
body.page-id-1718 .dart-list li:nth-of-type(3) a:after,
body.page-id-1492 .dart-list li:nth-of-type(4) a:after {border-color: transparent transparent transparent #9ac74b;}

.dart-list li a:hover:after {border-color: transparent transparent transparent #6fc4ca;}


.grant-box-text {width: 100%; max-width: 900px; margin: 0 auto; color: #fff;}


body .collapseomatic {background-position: 0 6px !important;}

.searchandfilter li {width:100%;}
.searchandfilter ul,
.entry-footer ul.contact {padding:0; width:100%;}
.searchandfilter label {font-size: .94rem;}
/*.searchandfilter li.cat-item {width:49%; display:inline-block;}*/


.searchandfilter li.cat-item {width:100%; display:inline-block;}


.searchandfilter h4 {
    color: #5e5e5e;
    font-size: 1.38rem;
}

.searchandfilter > div > ul > li > ul {border-bottom:3px solid #ddd; padding-bottom: 20px;margin-bottom: 12px;}
.searchandfilter > div > ul > li:nth-last-of-type(2) > ul {border:none;}
.searchandfilter label {cursor:pointer;}




input[type='checkbox'] { 
    padding: 9px;
    cursor: pointer;
    background: transparent;
    border: 2px solid #959595;
    outline: none;
    margin: 0px 8px -4px 0;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    line-height: 2;
}

input[type=checkbox]:focus {
  border-color: #444;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18)!important;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18)!important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18)!important;
}

input[type=checkbox]:checked {
  background-color: #9bc748;
  border-color: #9bc748;
}




/*--------------------------------------------------------------
# Custom Footer Looks
--------------------------------------------------------------*/

#footer-widget {padding:60px 0 20px; background-color:#eaeaea;position:relative;}
#footer-widget > img {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}

#footer-widget #custom_html-12 p {
    font-size: .94em;
    margin: 0;
    max-width:440px;
    float:left;
    margin-bottom: 10px;
}
#footer-widget #custom_html-12 img { float:left; width:79px; height:auto; margin: 0 9px 9px 0;}


#footer-widget .col-md-6:nth-of-type(2) {padding-left:15%;}


#menu-footer-menu {list-style:none; padding:0; margin:0; width:100%;}
#menu-footer-menu li {width:48%; display:inline-block; padding-bottom:5px;}
#menu-footer-menu a {color:#161616; font-size:.95em;}


.ftsocial {list-style:none; padding:0; margin:0; clear:both; margin-top:30px; float: left;}

.ftsocial li:first-child {border-left:1px solid #4b4b4b;}
.ftsocial li {
    float:left;
    width: 45px;
    border-top: 1px solid #4b4b4b;
    border-bottom: 1px solid #4b4b4b;
    border-right:1px solid #4b4b4b;
}
.ftsocial a {
  color: #4b4b4b;
    font-size: 23px;
    padding:7px 0;
    text-align: center;
    display: block;
    transition: color .3s ease;
}
.ftsocial a span {text-indent: -9999px;
    font-size: .001em;
    display: block;}

.ftsocial li:first-child a:hover { color:#00aced;}
.ftsocial li:nth-of-type(2) a:hover { color:#3b5998;}
.ftsocial li:nth-of-type(3) a:hover { color:#ff0000;}






#google_language_translator select.goog-te-combo {font-size:11px !important; height:23px !important;}
.goog-logo-link, 
.goog-logo-link:link, 
.goog-logo-link:visited, 
.goog-logo-link:hover, 
.goog-logo-link:active,
.goog-te-gadget {
    font-size: 11px !important;
    font-weight: 200 !important;
    color: #888 !important;
}

.searchyfilter {margin-bottom:30px;}

.searchyfilter form#searchform {position: relative; max-width:70%;}

.searchyfilter input[type=text] {
    border: none;
    border-radius: 0;
    font-size: 1.13em;
    background-color: white;
    line-height: 170%;
    top: 0;
   /* position: absolute; do we need this? */
    width: 100%;
    padding: 10px;

}

.searchyfilter input[type=submit] {
   
    background-color: white;
    background-image: url(img/searchicon.png);
    background-position: 12px;
    background-size: 25px;
    background-repeat: no-repeat;
    border: none;
    width: 50px;
    line-height: 170%;
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 8px;
}

.searchyfilter > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    min-height:140px;
}


#lct-widget-a-z-taxonomy {padding:0; list-style:none;}
.searchyfilter #lct-widget-a-z-taxonomy li {display:inline-block; padding-right:1px;}
.searchyfilter #lct-widget-a-z-taxonomy li a {color:#11598d; padding:2px; font-size:20px;}

.pagination a {padding:6px; width:40px; background:#fff; color:#00548c; text-align: center;}
.pagination a:hover {text-decoration: none; background:#9bc748; color:#fff;}
.pagination span {padding:6px; width:40px; background:#9bc748; color:#fff;text-align: center;}

.searchyfilter .widget-title { font-family: "interstateregular", Arial, Helvetica, sans-serif; color:#9bc748; font-size:32px;margin-bottom:20px;}


body.single-grants .textwidget p {margin-bottom: .5em;}
body.single-grants .textwidget .btn {margin-top:20px;}


.blurb div {display: none;}
.blurb {font-size: 1.4em; font-weight: 600; padding: 0 0 1.5em 0; color:#134687;}

.media-left {background: #fff;
    margin: 0 2.26% 0 0;
    padding: 20px;
    width: 28.28%;}

.media-left p { font-size: 14px; line-height: 1.3;}


.social {list-style:none; padding:0;}
.social li {display:inline-block; margin-right:8px;}
.social li i {font-size:27px;}



.arrow-card > div {min-height:215px; position: relative;}
.arrow-card > div img {position: absolute; bottom:30px; right:30px; transition:right .3s ease;}
.arrow-card:hover > div img {right:25px;}
.arrow-card:hover .light-text h3 {color:#fff; text-decoration: underline;}

#secondary ul.nav > li ul { margin-left:18px;}
#secondary h3 {    color: #96c441;}

body.exhibits-template-default .instant-gallery .gallery-title {font-size: 1.5em;}
body.exhibits-template-default .instant-gallery .prev-exhibits a {
	color:#22558a;
    font-size: 1.2em;
    text-decoration: none;
}


body.page-id-644 #primary-logo,
body.page-id-644 #secondary-logo,
body.page-id-644 #secondary-horizontal {padding-top:80px; margin-top:-80px;}

/* apply grants BG */
body.page-id-2049 .hero, 
body.grants-template-default .hero,
body.single-grant .hero 
{background:url(/wp-content/themes/tnartscommission/img/grants-bg.gif) !important; background-position:center !important; background-size:cover !important;}




.calend {width:150px; height: 120px; background-color: #0b558a; display: block; color: #fff; text-align: center; border-radius: 4px;}
.dino {background-color: #fff; width: 120px; margin:5px auto 0; height: 80px; color:#000;}
.dino span.day {font-size: 1.6em; line-height:.7;}
.bborder {border-bottom: 1px solid #666; margin-bottom: 30px; padding-bottom: 30px;}


.e2ma_signup_image_container {
    display: none;
    visibility: hidden;
}
.e2ma_signup_form_container input[type="text"],
.e2ma_signup_form_container input[type="email"] {width:100%;}

.e2ma_signup_form_button_row {margin-top:20px; display: block}

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/

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

  .home-hero > div {height:480px;}

}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-dark .dropdown-item {
    color: #fff;
  }
  .navbar-nav .dropdown-menu {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .home-hero > div {height:420px;}
}
@media only screen and (max-width: 1030px) {
.home-hero > div {height:370px;}
}

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

.home-hero > div {height:320px;}

.mainnavv li[class*="navicon-"] {width:35px;}
.mainnavv li[class*="navicon-"] a {padding:0;}
.mainnavv li.navicon-tw {margin-left:0;}
.mainnavv .navnewsletter a {padding:10px 0;}

}



/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  html {
    font-size: 85%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 80%;
  }
}

.mobile-only {display:none;}
@media only screen and (max-width: 767px) {
.mobile-only {display:block;}
.navbar-brand img {max-width: 380px;}
#masthead .search-toggler {top:25px;}
.navbar-toggler{top:16px;}
body {margin-top:97px;}


#footer-widget .col-md-6:nth-of-type(2) {padding-left: 15px; padding-top:30px;}


/* main mobile nav */
#masthead .navbar-nav {display: block;}
#masthead .navbar-nav > li {width:100%;}
#masthead .dropdown-menu {display: none; min-width:320px;}
#masthead .dropdown-menu.expand {display:block;}




.searchyfilter > div { 
  flex: 0 0 100%;
  max-width: 100%;
}
/*  body.post-type-archive-grants .sectionpad > .container > .row,
  body.post-type-archive-artistroster .sectionpad > .container > .row,*/
  body.archive:not(.post-type-archive-media-news) .sectionpad > .container > .row:not(.cards-holder){
    flex-direction: column-reverse;
  }


}



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

/*div[class^="col-sm-"] .card {height:auto; margin-bottom:30px;}*/
.navbar-brand img {
    max-width: 250px;
    padding:5px 0;
}

#masthead .search-form input[type=search] {width: 70%;}
#masthead .search-form input[type=submit] {width: 30%;}

#masthead .search-toggler {top:22px;}
.navbar-toggler{top:13px;}
body {margin-top:94px;}
.blogimg {max-width:100%; width:100%;}

.home-intro .row > div {margin-bottom:40px;}
}


@media only screen and (max-width: 400px) {
.navbar-brand img {
    max-width: 200px;
    padding:8px 0;

}
#masthead .search-toggler {top:20px;}
.navbar-toggler{top:11px;}
body {margin-top:92px;}
}


@media only screen and (max-width: 360px) {
  .navbar-brand img {
    max-width: 170px;
    width:170px;
    padding: 9px 0 3px;
}

#masthead .search-toggler {
    top: 19px;
}


.navbar-toggler {
    top: 10px;
}




}


/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
  html {
    font-size: 75%;
  }
  .dart-list li a:after,
  .dart-list li a:before {display: none;}
  .dart-list li a {text-indent: 0; font-size: 1em;}
  .hero {padding: 20px 0 5px;}

  body.single-commissioners .media,
  body.single-commissioners .media-left,
  body.single-commissioners .media-body,
  body.single-staff .media,
  body.single-staff .media-left,
  body.single-staff .media-body,
  body.single-artistroster .media,
  body.single-artistroster .media-left,
  body.single-artistroster .media-body {display:block; width:100%; margin-bottom:10px;}

  body.single-artistroster .media-left {max-width:100%; margin-bottom:20px;}
  body.single-commissioners .media-left,
  body.single-staff .media-left {max-width:170px; margin-bottom:20px;}

}


@media screen and (min-width:1300px){
  .container {max-width:1240px !important;}
}



body.postid-1263 .inner-intro .col-md-8{flex:100%;}
body.postid-1263 .inner-intro .col-md-8 .fullwidth{background: #00548c; padding:80px 65px; margin:36px 0;}
body.postid-1263 .inner-intro .col-md-8 .fullwidth h2{color: #9bc748;}
body.postid-1263 .inner-intro .col-md-8 .fullwidth p{color: #fff; margin-bottom: 0;}
.grants-links a:hover { color: #fff !important;}
.postid-1263  .blue-bkd .link-list { display: none !important;}
.postid-1263 .blue-bkd .col-lg-12  { margin-bottom:36px; }


.page-id-7343 figure {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-id-7343  .wp-caption .wp-caption-text {
  min-height:88px;
}



.imapsContainer img {
  max-width: 200px !important;
  height: auto !important;
}

.map_wrapper .map_aspect_ratio {
  padding-top: 36% !important;
}

.maps-link {
  font-size: 14px;
}

