@charset "UTF-8";
/*--------------------------------------------------------------
## Variables and Mixin Master
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Montserrat");
/* for the top menu container height */
/* global padding */
/* accent boarder height */
/*--------------------------------------------------------------
## Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 1.5;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 700px) {
  body,
button,
input,
select,
optgroup,
textarea {
    font-size: 16px;
    font-size: 1rem;
  }
}

p,
li {
  line-height: 1.5;
}

p {
  font-size: 1em;
}
@media screen and (min-width: 700px) {
  p {
    font-size: 1.125em;
  }
}

li {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  li {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 0.6em;
}

ul {
  margin-bottom: 1em;
}

li {
  line-height: 1.63;
}

.inverse {
  color: #fff;
  background-color: #333d47;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Montserrat";
}

h1 {
  font-size: 27px;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 0.67em;
  margin-top: 0.63em;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0.63em;
}

h3 {
  font-size: 23px;
  font-weight: bold;
 /* text-transform: capitalize; */
  margin-bottom: 0;
  margin-top: 0.63em;
}

h4 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0.63em;
}

h5 {
  font-size: 19px;
  font-weight: bold;
}

h6 {
  font-size: 18px;
  font-weight: bold;
  /* text-transform: capitalize; */
}

@media screen and (min-width: 900px) {
  h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: "Montserrat";
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
}
p {
  margin: 0 0 1rem;
}

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

blockquote {
  position: relative;
  margin: 0 0 1em;
  background: #eee;
  padding: 1em 2em 0.5em 5em;
  font-style: italic;
}
blockquote:before {
  position: absolute;
  top: -0.11em;
  left: -0.13em;
  content: "“";
  font-size: 12em;
  line-height: 100%;
  color: white;
}

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%;
}

code {
  color: #A41357;
}

/*--------------------------------------------------------------
## 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 {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote,
q {
  quotes: "" "";
}

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

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

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

.featured-image img {
  width: auto;
  max-height: 440px;
}

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

thead th {
  border-bottom: 2px solid #bbb;
  padding-bottom: 0.5em;
}

td,
th {
  vertical-align: top;
}

th {
  padding: 0.4em;
  text-align: left;
}

tr {
  border-bottom: 1px solid #eee;
}

td {
  padding: 0.4em;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/
button,
.btn,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #333d47;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}
button:hover,
.btn:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: #e4e8e9;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #5c666f;
  border-bottom: 1px solid;
  position: relative;
}
a:visited {
  color: #5c666f;
}
a:hover, a:focus, a:active {
  color: #5c666f;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

a:hover,
a:focus {
  border-bottom: 3px solid;
  text-decoration: none;
}

.inverse a {
  color: #fff;
}

.menu a {
  border-bottom: 0 none;
}

.entry-content a[href*="://"]:not([href*="utk.edu"], [href*="tennessee.edu"], [href*="nationalchampiontree.org"],
[href*="grasslandspartnership.org"],[href*=utia-staging]):not(figure a, .person-pic a, .utia-button a, .link a, .read-more-callout-link a, .wp-block-kadence-infobox a, .widget-social-media, .wp-block-navigation-item__content),
.site-footer.border-accent a[href*="://"]:not([href*="utk.edu"], [href*="tennessee.edu"], [href*="bwwp.azurewebsites.net"],
[href*=utia-staging]):not(figure a, .person-pic a, .utia-button a, .link a, .read-more-callout-link a, .wp-block-kadence-infobox a, .widget-social-media, .wp-block-navigation-item__content) {
  margin-right: 20px;
}
.entry-content a[href*="://"]:not([href*="utk.edu"], [href*="tennessee.edu"], [href*="nationalchampiontree.org"],
[href*="grasslandspartnership.org"],
[href*=utia-staging]):not(figure a, .person-pic a, .utia-button a, .link a, .read-more-callout-link a, .wp-block-kadence-infobox a, .widget-social-media, .wp-block-navigation-item__content)::after,
.site-footer.border-accent a[href*="://"]:not([href*="utk.edu"], [href*="tennessee.edu"], [href*="bwwp.azurewebsites.net"],
[href*=utia-staging]):not(figure a, .person-pic a, .utia-button a, .link a, .read-more-callout-link a, .wp-block-kadence-infobox a, .widget-social-media, .wp-block-navigation-item__content)::after {
  font-family: "dashicons";
  content: "\f504";
  position: absolute;
}

a[href*="://"]:not([href*="utk.edu"], [href*="tennessee.edu"], [href*="nationalchampiontree.org"],
[href*="grasslandspartnership.org"],
[href*=utia-staging]).wp-block-navigation-item__content::after {
  font-family: "dashicons";
  content: "\f504";
  position: relative;
}

a:-webkit-any-link {
  text-decoration: none;
}

a:-moz-any-link {
  text-decoration: none;
}

a:any-link {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Content Navigation
--------------------------------------------------------------*/
.comment-navigation,
.posts-navigation,
.post-navigation,
.paging-navigation {
  padding: 2em 0;
  text-align: left;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.comment-navigation a,
.posts-navigation a,
.post-navigation a,
.paging-navigation a {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 1em;
  border: 1px solid hsl(0deg, 0%, 80%);
  color: black;
}
.comment-navigation a:hover, .comment-navigation a:focus,
.posts-navigation a:hover,
.posts-navigation a:focus,
.post-navigation a:hover,
.post-navigation a:focus,
.paging-navigation a:hover,
.paging-navigation a:focus {
  color: white;
  border-color: #333d47;
  background: #333d47;
}

.nav-links {
  margin: 0 auto;
  padding: 0 0.4em;
}

.nav-previous {
  padding-bottom: 1em;
}

@media screen and (min-width: 900px) {
  .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
  }
  .comment-navigation .nav-previous,
.comment-navigation .nav-next,
.posts-navigation .nav-previous,
.posts-navigation .nav-next,
.post-navigation .nav-previous,
.post-navigation .nav-next {
    float: left;
    display: flex;
    align-items: stretch;
    width: 48%;
  }
  .comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
  }
  .nav-previous {
    padding-bottom: 0;
  }
}
.post-navigation .meta-nav {
  display: block;
}
@media screen and (min-width: 30em) {
  .post-navigation {
    padding-bottom: 1em;
  }
}
.post-navigation .post-title {
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: 3px solid #333d47;
}
.post-navigation a:hover .post-title,
.post-navigation a:focus .post-title {
  border-bottom-color: white;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  padding: 0.5em 1em;
  background: white;
}
.pagination a {
  text-decoration: none;
}
.pagination a:focus, .pagination a:hover {
  color: white;
  background: #333d47;
}
.pagination .current {
  font-weight: 600;
  color: #333d47;
}
.pagination .prev .icon {
  margin-right: 1em;
}
.pagination .next .icon {
  margin-left: 1em;
}

/*--------------------------------------------------------------
## 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;
  color: #000;
  background-color: #fff;
  /* 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;
}

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

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

.aligncenter {
  clear: both;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignwide,
.alignfull {
  /* Set these margins to work with your own theme. */
  margin-left: -1em;
  margin-right: -1em;
  max-width: 100vw;
  width: auto;
}
@media screen and (min-width: 601px) {
  .alignwide,
.alignfull {
    margin-left: -2em;
    margin-right: -2em;
  }
}

.alignfull {
  height: 92vh;
}

.alignfull {
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

/*--------------------------------------------------------------
## Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content: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-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Global layouts
--------------------------------------------------------------*/
/* DONT REMOVE THIS */
/***  sizing styles ****/
.sectionContainer {
  max-width: 1400px;
  margin: 0 auto;
}

/* end of Do Not Remove section */
/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/
.archive-view .post,
.archive-view .page {
  position: relative;
}
@media screen and (min-width: 900px) {
  .archive-view.has-sidebar {
    /*
    .content-area {
    	width: $size__ratio-large;
    }

    .widget-area {
    	width: $size__ratio-small;
    }
    */
  }
  .archive-view.has-sidebar .site-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .archive-view.has-sidebar .page-header {
    width: 100%;
    flex: 1 0 100%;
  }
}

.page-title {
  margin: 0 0 0.5em;
}

.archive-description {
  margin: -1em 0 2em;
}

/* For content-none.php */
.search .page-content,
.error-404 .page-content {
  margin-bottom: 2em;
  padding: 1em 2em;
}
.search input[type=search],
.error-404 input[type=search] {
  padding: 0.2em;
}
.search input[type=submit],
.error-404 input[type=submit] {
  border-color: white;
}
.search input[type=submit]:focus, .search input[type=submit]:hover,
.error-404 input[type=submit]:focus,
.error-404 input[type=submit]:hover {
  color: black;
}

/*
.sticky::before {
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	border-width: 0 2em 2em 0;
	border-color: #eee #eee white;
	border-style: solid;
	box-shadow: -1px 2px 2px hsla(0, 0%, 10%, .1);
}
*/
.index-image img {
  display: block;
  margin: 0 auto;
}
.index-image a:focus > img, .index-image a:hover > img {
  opacity: 0.8;
}

.continue-reading {
  position: absolute;
  right: 0;
  bottom: 0;
}
.continue-reading a {
  display: block;
  padding: 0.5em 1em;
  font-size: 90%;
  text-decoration: none;
  background: hsl(0deg, 0%, 85%);
}
.continue-reading a:focus, .continue-reading a:hover {
  color: white;
  background: #333d47;
}

/* NEW STYLES  */
.archive-title {
  border-bottom: 4px solid #ff8300;
}
.archive-title h1 {
  margin: 0;
  padding: 0;
  font-size: 40px;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/* ==========  centering logo on home page ======   */
.customizer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  max-width: 512px;
}
.customizer-logo a {
  border-bottom: none;
}
.customizer-logo img {
  max-width: 300px;
}

.utia-warning.widget {
  position: relative;
  margin: 0;
  margin-top: 45px;
  background-color: #8D2048;
  color: #fff;
}
.utia-warning.widget .textwidget {
  font-size: 0.8rem;
}
.utia-warning.widget a {
  color: #fff;
}
.utia-warning.widget p {
  margin-bottom: 0px;
}

@media screen and (min-width: 1024px) {
  .utia-warning.widget .textwidget {
    font-size: 1rem;
  }
  .customizer-logo img {
    max-width: 512px;
  }
}
/*--------------------------------------------------------------
## Header Menus
--------------------------------------------------------------*/
/* Mega Menu area */
.global-menu .menu {
  display: block;
  table-layout: inherit;
  height: auto;
  max-height: 500px;
  overflow-y: scroll;
}
.global-menu .menu a {
  color: #fff;
  width: 80%;
}
.global-menu .menu a:hover {
  color: #333d47;
  background-color: white;
}
.global-menu .menu > li > a {
  font-weight: 500;
}
.global-menu .menu li {
  padding: 5px 0;
  padding-left: 1em;
  border-bottom: 1px solid #555;
  font-size: 1em;
}
.global-menu .menu li ul {
  margin-top: 0.2px;
}
.global-menu .menu li ul a {
  color: #fff;
}
.global-menu .menu a:not([href]):not([tabindex]):hover {
  color: white;
  text-decoration: underline;
}

.global-menu .sub-menu {
  border-radius: 5px;
  height: 100% !important;
  min-width: 300px;
}
.global-menu .sub-menu li {
  padding-left: 1rem;
  font-size: 1em;
}
.global-menu .sub-menu .sub-menu li {
  padding-left: 1rem;
}

header .dropdown-toggle::after {
  display: none !important;
}

.icon-flip {
  transform: rotate(180deg);
}

.main-navigation,
.primary-navigation {
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 400;
  clear: left;
}
.main-navigation ul,
.primary-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-top: 1em;
  padding-left: 0;
}
.main-navigation ul ul,
.primary-navigation ul ul {
  display: none;
  top: 1.5em;
  z-index: 999;
}
.main-navigation ul ul ul,
.primary-navigation ul ul ul {
  top: 0;
}
.main-navigation ul ul li,
.primary-navigation ul ul li {
  padding-left: 1em;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul,
.primary-navigation ul ul li:hover > ul,
.primary-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul,
.primary-navigation ul li:hover > ul,
.primary-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li,
.primary-navigation li {
  position: relative;
}
.main-navigation a,
.primary-navigation a {
  display: inline-block;
  text-decoration: none;
  border-bottom: none;
  color: #fff;
}

/* chevron for mega menu dropdown */
header button.dropdown-toggle {
  position: absolute;
  right: 0;
  border: none;
  background: inherit;
  color: white;
  padding: 0.4em 0;
}

.custom-menu-container button.dropdown-toggle {
  position: relative;
}

.sub-menu button.dropdown-toggle {
  float: right;
}

.main-menu-more button.dropdown-toggle {
  position: absolute;
}

.primary-navigation button.dropdown-toggle {
  line-height: 1.5em;
}

.hidden-links button.dropdown-toggle {
  top: 10px;
}

.custom-menu-container button.dropdown-toggle {
  color: #333d47;
}

.custom-menu-container svg,
.global-menu svg {
  width: 25px;
  height: 20px;
}

.menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  margin: 1.2em 1.2em 0 0;
  padding: 0.6em 0.8em;
  font-size: 80%;
  text-transform: uppercase;
  color: white;
  border: 1px solid hsla(0deg, 0%, 100%, 0.3);
}

/* Custom UTIA Header Styles */
.menu-active {
  background-color: #5c666f;
  /*menuActive */
}

.menu-open {
  background-color: #3f4d57;
}

/* new top menu styles */
.top-menu-container {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #333d47;
  height: 45px;
  border-bottom: 5px solid #ff8300;
}

.top-menu {
  background-color: #333d47;
  width: 100%;
}

.top-menu-inner {
  background-color: #333d47;
  height: 40px;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  display: table;
}
.top-menu-inner a {
  text-decoration: underline;
  border-bottom: none;
}
.top-menu-inner a:hover, .top-menu-inner a:focus {
  text-decoration: none;
}

.top-menu-inner div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top-menu-inner .menu-drop,
.top-menu-inner .search-and-more,
.top-menu-inner .top-menu-brand {
  display: table-cell;
  height: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.top-menu-inner .menu-drop {
  color: #fff;
  cursor: pointer;
  padding-left: 5px;
  border: none;
  font-size: 1rem;
  background-color: #333d47;
}
.top-menu-inner .menu-drop .menu-text {
  text-decoration: underline;
}

.top-menu-inner .search-and-more {
  width: auto;
  text-align: right;
  color: #fff;
  padding-right: 5px;
  display: none;
}

.search-and-more a {
  color: #fff;
}

.top-menu-inner .top-menu-brand {
  color: #fff;
}

.top-menu-brand a {
  color: #fff;
  font-size: 0.8em;
}

.top-menu-inner .menu-drop a {
  height: 100%;
  /* selected color */
  background-color: #3f4d57;
  /* unselected color */
  background-color: #333d47;
  padding-top: 6px;
  box-sizing: border-box;
  color: #fff;
}

.menu-drop .btn {
  padding: 0;
}

.menu-drop:hover,
.menu-drop:focus {
  text-decoration: none;
}

.menu-drop .menu-text:hover,
.menu-drop:focus > .menu-text {
  text-decoration: none;
}

.top-menu-inner .menu-drop a.menu-open {
  background-color: #3f4d57;
}

.top-menu-inner .search-and-more label {
  border-radius: 4px;
  color: #fff;
  background-color: #5c666f;
  padding-left: 0.6em;
  height: 2em;
}

.top-menu-inner .search-and-more input {
  width: 300px;
  color: #fff;
  background-color: #5c666f;
  height: 2em;
  border: none;
}

.search-and-more input::placeholder {
  color: #fff;
}

.header-search {
  display: inline-block;
  height: 35px;
}
.header-search .btn {
  background-color: transparent;
  color: #fff;
  border: none;
}

.search-mobile {
  padding-left: 2em;
  border-bottom: 1px solid #444;
  width: 100%;
  display: block;
  height: 50px;
}
.mobile-menu-item {
	display: block;
}

.search-mobile input {
  width: 100%;
}
.search-mobile label {
  width: 80%;
  float: left;
}
.search-mobile button {
  float: right;
}

@media screen and (min-width: 680px) {
  .search-mobile {
    display: none;
  }
  	.mobile-menu-item {
		display: none;
	}
  .top-menu-inner .search-and-more {
    display: table-cell;
  }
}
@media screen and (min-width: 900px) {
  .top-menu-brand a {
    font-size: 1em;
  }
}
.nav-menu-container {
  background-color: #3f4d57;
  position: relative;
  z-index: 20;
  /*topGray */
  opacity: 0.98;
  border-bottom: 0.4em solid #ff8300;
  /* utOrange */
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  transition: transform 0.3s linear 0s, visibility 0.3s linear 0s;
  transform: translateY(-100%);
}

/* menu toggle class with animation */
.nav-menu-container.show-menu {
  transform: translateY(0%);
  visibility: visible;
}

/* Department/Unit Menu Section */
.custom-menu-container {
  text-align: center;
  background-color: #fff;
  border-bottom: 5px solid #555;
  position: fixed;
  width: 100%;
  top: 45px;
  z-index: 21;
  display: block;
  padding: 15px;
}
.custom-menu-container .custom-childmenu-class .sub-menu {
  position: absolute;
  top: 35px;
  right: -60px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 0.5rem 0;
  background-color: #fff;
  min-width: 300px;
  width: auto;
  text-align: left;
}
.custom-menu-container .custom-childmenu-class .sub-menu .sub-menu {
  position: relative;
  top: 0;
  left: 0;
  border: none;
  border-radius: unset;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.custom-menu-container .custom-childmenu-class .sub-menu .sub-menu li {
  padding-left: 10px;
}
.custom-menu-container .custom-childmenu-class .sub-menu li {
  width: 100%;
}

.custom-menu-inner {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  min-height: 30px;
}

.logged-in .custom-menu-inner {
  overflow: hidden;
}

/* Site title area */
.custom-menu-class {
  float: left;
}

.site-title {
  text-align: left;
  padding-top: 3px;
}
.site-title a {
  border-bottom: none;
}
.site-title:hover, .site-title:focus {
  border-bottom: none;
  text-decoration: underline;
}

/* primary navigation area */
.custom-menu-area {
  text-align: right;
  flex-grow: 100;
}

/* Toggle small menu and sub-menus on */
.toggled-on ul,
.sub-menu.toggled-on {
  display: block;
}

/* Hidden Menu for sliding in from Right */
.main-menu-more {
  float: right;
}

.main-menu-more .hidden-links {
  background: #222;
  height: auto;
  position: fixed;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  display: block !important;
  transition: 0.5s all ease-in-out;
  z-index: 99;
  max-height: 75vh;
  overflow-y: auto;
  color: #fff;
}
.main-menu-more .hidden-links a {
  color: #fff;
  padding: 10px 15px;
}
.main-menu-more .hidden-links a:hover {
  background-color: #555;
}
.main-menu-more .hidden-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-more .hidden-links li {
  border-bottom: 1px #444 solid;
  width: 90%;
  text-align: left;
  float: left;
}
.main-menu-more .hidden-links li ul {
  padding-left: 10px;
}
.main-menu-more .hidden-links button {
  color: #fff;
}

.site-header .active {
  transition: 0.5s all ease-in-out;
  display: block !important;
  right: 0 !important;
}

.logged-in .top-menu-container,
.logged-in .custom-menu-container {
  position: relative;
}

.logged-in .custom-menu-container {
  top: 0;
}

.logged-in .page .entry-content,
.page .entry-content {
  margin: 0;
  padding: 0 0.5em;
}

.primary-navigation {
  display: block;
}

.primary-navigation .main-menu {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.primary-navigation .main-menu li {
  position: relative;
  display: inline-block;
}

.custom-childmenu-class {
  display: inline;
}

.custom-childmenu-class ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-childmenu-class li {
  border-right: 0 none;
  background-color: #fff;
  font-size: 10px;
  padding: 0;
  margin: 0;
}

.custom-childmenu-class li a {
  font-size: 13px;
  border-bottom: 0 none;
  color: #5a666f;
  text-align: left;
  margin: 0;
  padding: 6px 9px;
  font-weight: 700;
}

/* Elipsis Icon */
.submenu-expand {
  display: inline-block;
  position: absolute;
  width: calc(24px + 1rem);
  right: 0;
  bottom: 0;
  color: white;
  line-height: 1;
  padding: calc(.5 * 1rem);
  /* Priority+ Menu */
}
.submenu-expand.main-menu-more-toggle {
  border: none;
  position: relative;
  height: 24px;
  width: 24px;
  padding: 0.2em 0 0;
  margin-left: 0.5rem;
}
.submenu-expand svg {
  top: 0;
  height: 24px;
  width: 24px;
  vertical-align: text-bottom;
}

/* Elipsis button style */
.primary-navigation button {
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  color: #333d47;
  cursor: pointer;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.is-empty {
  display: none;
}

/* MEDIA QUERIES */
/* CHECK THIS */
@media (max-width: 575.98px) {
  #full {
    height: 91vh;
  }
  .innerBottom {
    padding: 0 2em;
    width: 60%;
  }
  .innerBottom h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 601px) {
  .logged-in .top-menu-container,
.logged-in .custom-menu-container {
    position: fixed;
  }
  .logged-in .custom-menu-container {
    top: 91px;
  }
  .custom-menu-container {
    top: 45px;
  }
}
@media screen and (max-width: 680px) {
  .imgLogo img {
    margin: 0 auto;
    width: 60%;
    padding: 0;
    display: block;
  }
}
@media screen and (min-width: 782px) {
  .logged-in .custom-menu-container {
    top: 77px;
  }
  .customize-partial-edit-shortcuts-shown .custom-menu-container {
    top: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .main-navigation ul,
.primary-navigation ul {
    justify-content: flex-end;
    padding-top: 0;
  }
  .main-navigation ul ul {
    display: block;
  }
  .main-navigation .menu .dropdown-toggle {
    display: none;
  }
  .global-menu .menu li:hover ul {
    background: hsla(0deg, 0%, 100%, 0.1);
  }
  .menu-toggle {
    display: none;
  }
  .main-navigation ul,
.primary-navigation ul {
    display: block;
    display: flex;
    flex-wrap: wrap;
  }
  .main-navigation ul ul,
.primary-navigation ul ul {
    flex-direction: column;
    margin-left: 0;
  }
  .main-navigation ul ul li,
.primary-navigation ul ul li {
    padding-left: 0;
  }
  .main-navigation ul ul li a,
.primary-navigation ul ul li a {
    background: none;
  }
  .main-navigation ul li a,
.primary-navigation ul li a {
    padding: 0.4em 1em;
  }
  .primary-navigation a:hover,
.primary-navigation a:focus {
    text-decoration: underline;
  }
  .primary-navigation .main-menu > li {
    padding: 0 1em;
  }
  .primary-navigation .main-menu > li > a {
    padding: 0 0.4em;
  }
  .global-menu .menu {
    display: flex;
    justify-content: space-between;
    background-color: #3f4d57;
    /*menuActive */
    max-height: 100%;
    overflow-y: visible;
    max-width: 1400px;
    margin: 0 auto;
  }
  .global-menu .menu li {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
  }
  .global-menu .menu li ul {
    margin-top: 0;
  }
  .global-menu .menu a {
    width: 100%;
    border-bottom: none;
  }
  .logged-in .custom-menu-inner {
    overflow: visible;
  }
  .custom-menu-container .menu {
    display: inline-block;
  }
  .menu-link {
    display: inline-block !important;
  }
}
/*  THeme adjustments   */
/* parent * /



/* child menu */
.custom-menu-inner {
  padding: 0 0.5rem;
}
@media screen and (min-width: 900px) {
  .custom-menu-inner {
    padding: 0 2rem;
  }
}

.main-menu > .current-menu-item,
.main-menu > .current-menu-ancestor {
  border: 1px solid #333d47;
  border-radius: 0.25rem;
}

.sub-menu > .current-menu-item,
.sub-menu > .current-menu-item {
  background-color: #333d47;
}

.sub-menu > .current-menu-item > a,
.sub-menu > .current-menu-item > a,
.sub-menu > .current-menu-item > .custom-menu-container button.dropdown-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.site-content a {
  text-decoration: none !important;
}

.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.page .hentry {
  margin: 0;
}

.breadcrumb {
  background-color: #fff;
  padding: 0.75rem 2rem;
  margin: 0;
}

.site-content {
  padding: 55px 1em;
  margin: 0 auto;
  max-width: 1400px;
  min-height: 30vh;
}
@media screen and (min-width: 601px) {
  .site-content {
    padding: 0 2em;
  }
}

.site-content {
  max-width: 1400px !important;
  margin: 0 auto;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

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

.logged-in .site-content {
  padding-top: 10px;
}

.logged-in.page .site-content {
  padding-top: 0;
}

.page .entry-content {
  width: 100%;
}

.cat-links {
  /*	font-size: 90%; */
  font-weight: 700;
}
.cat-links a {
  text-transform: uppercase;
}

entry-meta {
  font-size: 90%;
}
entry-meta a {
  font-weight: 700;
  text-decoration: none;
  color: black;
}
entry-meta a:focus, entry-meta a:hover {
  color: black;
  border-bottom: 3px solid #333d47;
}

.byline::after {
  content: "|";
  margin: 0 0.5em;
}

.comments-link::before,
.edit-link::before {
  content: "|";
  margin: 0 0.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

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

.extra {
  display: none;
}

/* Custom Post Meta rules for single post / no sidebar. */
.no-sidebar .entry-meta {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .no-sidebar .post-content__wrap .entry-meta {
    margin-top: 2.25em;
    font-size: 80%;
  }
  .no-sidebar .post-content__wrap .entry-meta a {
    font-size: 110%;
    display: block;
    border-bottom: 3px solid white;
  }
  .no-sidebar .post-content__wrap .entry-meta a:hover, .no-sidebar .post-content__wrap .entry-meta a:focus {
    border-bottom-color: #333d47;
  }
  .no-sidebar .post-content__wrap .byline,
.no-sidebar .post-content__wrap .posted-on,
.no-sidebar .post-content__wrap .comments-link,
.no-sidebar .post-content__wrap .edit-link {
    display: block;
    margin-bottom: 1em;
  }
  .no-sidebar .post-content__wrap .byline:before, .no-sidebar .post-content__wrap .byline:after,
.no-sidebar .post-content__wrap .posted-on:before,
.no-sidebar .post-content__wrap .posted-on:after,
.no-sidebar .post-content__wrap .comments-link:before,
.no-sidebar .post-content__wrap .comments-link:after,
.no-sidebar .post-content__wrap .edit-link:before,
.no-sidebar .post-content__wrap .edit-link:after {
    margin: 0;
    content: "";
  }
  .no-sidebar .post-content__wrap .extra {
    display: inline;
  }
}

/* Single Post Featured Images */
.full-bleed {
  width: 100vw;
  max-height: 1200px;
  margin-top: 1em;
  margin-left: -1em;
  overflow: hidden;
}
@media screen and (min-width: 601px) {
  .full-bleed {
    margin-left: -2em;
  }
}
@media screen and (min-width: 900px) {
  .full-bleed {
    margin-top: 1.5em;
    margin-right: -2em;
  }
}
@media screen and (min-width: 1400px) {
  .full-bleed {
    margin-right: calc((-100vw + 1400px) / 2 - 2em);
    margin-left: calc((-100vw + 1400px) / 2 - 2em);
  }
}
.full-bleed img {
  display: block;
  margin: 0 auto;
}

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

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

@media screen and (min-width: 600px) {
  .site-content {
    padding-top: 55px;
  }
  .logged-in.page .site-content {
    padding-top: 45px;
  }
}
@media screen and (min-width: 682px) {
  .page .site-content {
    padding-top: 40px;
  }
}
/* =====================  PAGE TITLE AND PAGE TOP INFORMAITON  ================= */
.utia-page-title {
  padding: 1rem 0.5rem;
  margin: 1rem 0 0.5rem 0;
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  .utia-page-title {
    padding: 2rem 2rem;
  }
}

.no-banner ~ .title-area > .sectionContainer > .utia-page-title {
  padding: 2rem 0.5rem;
}
@media screen and (min-width: 900px) {
  .no-banner ~ .title-area > .sectionContainer > .utia-page-title {
    padding: 2rem 2rem;
  }
}

@media screen and (min-width: 900px) {
  .has-header-banner-alert .no-banner ~ .title-area > .sectionContainer > .utia-page-title {
    padding: 2rem 2rem;
  }
}

.title-area.utia-full-width {
  background-color: #333d47;
}

.inverse {
  color: #ffffff;
  background-color: #333d47;
  /*	border-top: 10px solid $color__utia-orange; */
}
.inverse .utia-page-title {
  margin: 0;
  /*
  &:after{
  	display: none;
  }
  */
}

/*  move to base styles, removed for issue with draw attention  */
/*html,
body {
	height: 100%;

}*/
body {
  overflow-x: hidden;
}

/* ---------------------  SITE PAGE MAX WIDTH & FULL WIDTH ------------------  */
.site-content {
  max-width: 1400px !important;
  margin: 0 auto 60px;
}

.utia-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/*  ---- under page    */
.utia-underpage-poster {
  /* set max height */
  max-height: 260px;
}

/* --------------------   HOME PAGE ONLY  ------------------------------  */
.chevron-down {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  z-index: 20;
  color: #ffffff;
  text-align: center;
}
.chevron-down a {
  color: #ffffff;
  outline: none;
}
.chevron-down a:hover {
  background-color: transparent;
  color: #ff8300;
}
.chevron-down .dashicons {
  height: 40px;
  width: 40px;
  font-size: 40px;
}

.more-info-container {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  color: #ffffff;
  cursor: pointer;
  background-color: transparent;
  z-index: 21;
  border: none;
}
.more-info-container:hover {
  background-color: transparent;
  color: #ff8300;
}
.more-info-container .dashicons {
  height: 30px;
  width: 30px;
  font-size: 30px;
}

.utia-billboard {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  /* default to underpage height */
  max-height: 360px;
  height: 35vw;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.utia-home-billboard {
  height: 92vh;
  max-height: 92vh;
  /* adjust for menu height - this keeps the image from being 100% tall*/
  top: 40px;
  margin-bottom: 40px;
}
.utia-billboard-accent {
  border-bottom: 10px solid #ff8300;
}

.utia-modal {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #333d47;
  opacity: 0.9;
  z-index: 30;
}

#utia-modal-content {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#utia-modal-content .pop-content {
  max-height: 100%;
  max-width: 100%;
  min-width: 40%;
  padding: 1em 2em;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}
@media screen and (min-width: 900px) {
  #utia-modal-content .pop-content {
    max-width: 75%;
  }
}
@media screen and (min-width: 601px) {
  #utia-modal-content .pop-content {
    max-width: 50%;
  }
}

.pop-close {
  background-color: transparent;
  border: none;
  font-size: 2em;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.modal-toggle {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 30;
}

/* ===================/// end of home page /////  ===================  */
/* completely hidden */
.hidden {
  display: none;
}

/* no banner but need padding from top menu - 45px; */
/*  this is also in each child theme to make adjustments for the child menu height */
.utia-billboard.no-banner {
  height: 45px;
  margin: 0;
  background-color: transparent;
  border: 0 none;
}

/* more adjustments */
/*  stored different sizes in each child themes css file  */
.utia-underpage-billboard {
  margin-top: 45px;
}

.blog .title-area {
  margin-top: 45px;
}

.blog.has-header-banner-alert .title-area {
  margin-top: 0px;
}

.has-header-banner-alert .utia-home-billboard {
  top: 0 !important;
}

.has-header-banner-alert .utia-billboard.no-banner {
  height: 0 !important;
}

.has-header-banner-alert .utia-billboard {
  margin-top: 0 !important;
}

/* fix other css */
#content {
  padding: 0 0.5rem;
  padding-top: 1rem;
}
@media screen and (min-width: 900px) {
  #content {
    padding: 0 2rem;
    padding-top: 1rem;
  }
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 22;
}

.logged-in #header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .logged-in #header {
    top: 46px;
  }
}
#top-menu-container {
  position: relative;
}

#custom-menu-container {
  margin: 0;
  padding: 0;
  top: 0;
  position: relative;
  padding: 10px 0;
}

/* ---------------  Fix for mobile admin bar sliding up ------------------ */
@media screen and (max-width: 601px) {
  html #wpadminbar {
    position: fixed;
  }
}
/* ----------------  page default border accent color ------------- */
.border-accent {
  border-color: #ff8300;
}

/* GLOBAL news - post styles */
.post .post__content {
  padding: 1em 0;
}

.entry-title {
  margin: 0;
  padding: 0;
  padding-bottom: 1rem;
  text-transform: none;
}

figure.featured-image.index-image {
  float: left;
  padding: 6px 1rem 1rem 0;
}

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

.single.has-sidebar .hentry .post-content {
  width: 100%;
}

.news-widget-area {
  padding-right: 1rem;
}

.featured-image {
  margin: 0 0 0.5rem 0;
}

/* mobile for news  */
.news-widget-area {
  padding-right: 0;
}
@media screen and (min-width: 601px) {
  .news-widget-area {
    padding-right: 1em;
  }
}

.news-widget-area .widget {
  margin: 0;
  padding: 0 0 0.4rem 0;
}
@media screen and (min-width: 601px) {
  .news-widget-area .widget {
    margin: 0 0 2em;
    margin: 0 0 2em;
  }
}

.pagination .nav-links {
  margin: 0;
}

.article-category {
  border-bottom: 3px solid #ff8300;
  list-style-type: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
.article-category li {
  display: inline-block;
  padding-right: 0.5rem;
}

/* sidebar styles */
.sidebar-aside .widget ul {
  margin: 0;
  padding: 0;
}
.sidebar-aside .widget ul li {
  line-height: 1rem;
  padding: 0 0 0 1rem;
}
.sidebar-aside .widget ul li a {
  padding-bottom: 0.5rem;
  border-bottom: none;
}
.sidebar-aside .widget ul li a:hover {
  border-bottom: 2px solid #333d47;
}

/* slightly reduce titles when listing all under categories */
@media screen and (min-width: 900px) {
  .news-articles .entry-title {
    font-size: 30px;
  }
}
.news-articles .entry-title a {
  text-decoration: none;
}

.archive-title h1 {
  text-transform: none;
}

/* 404 page styles   */
.error-not-found {
  width: 100%;
  max-width: 300px;
}

.error-404 input.search-submit {
  border-color: #333;
  color: #333;
}

/* ---------- end of 404 */
/* consistent padding for top of page */
/* bootstrap row padding fix and flex width issue */
.content-area.row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.content-area.row > div:first-child {
  padding-left: 0;
  margin-left: 0;
}
.content-area.row > div:last-child {
  padding-right: 0;
  margin-right: 0;
}

/* ----------end of fix ----------------*/
/* ======================   SOCIAL MEDIA WIDGET STYLES  =========================== */
/* social media widget styles */
.widget-social-media {
  max-height: 50px;
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 1em;
  text-decoration: none;
  border-bottom: 0 none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 900px) {
  .widget-social-media {
    height: 50px;
    width: 50px;
  }
}
.widget .widget-social-media:hover {
  border-bottom-color: transparent;
}

.parent-footer {
  border-bottom: 10px solid #ff8300;
}

.parent-footer .site-footer-container {
  padding: 0;
  padding: 4em 0;
}

#footer-widget-full .widget {
  margin: 0;
  padding: 0;
}

/* ===================  SOCIAL MEDIA ICONS  =========================== */
.widget-social-media.facebook {
  background-image: url(images/socialmedia/svg/facebook_icon.svg);
}

.widget-social-media.twitter {
  background-image: url(images/socialmedia/svg/twitter_icon.svg);
}

.widget-social-media.linkedIn {
  background-image: url(images/socialmedia/svg/linkedIn_icon.svg);
}

.widget-social-media.youtube {
  background-image: url(images/socialmedia/svg/youtube_icon.svg);
}

.widget-social-media.instagram {
  background-image: url(images/socialmedia/svg/instagram_icon.svg);
}

.widget-social-media.podcast {
  background-image: url(images/socialmedia/svg/podcast_icon.svg);
}

/* inverted icons  */
.site-footer .widget-social-media.facebook {
  /*  background-image: url(images/socialmedia/white/facebook-icon.png); */
  background-image: url(images/socialmedia/svg/white/facebook_icon_white.svg);
}

.site-footer .widget-social-media.twitter {
  background-image: url(images/socialmedia/svg/white/twitter_icon_white.svg);
}

.site-footer .widget-social-media.linkedIn {
  background-image: url(images/socialmedia/svg/white/linkedIn_icon_white.svg);
}

.site-footer .widget-social-media.youtube {
  background-image: url(images/socialmedia/svg/white/youtube_icon_white.svg);
}

.site-footer .widget-social-media.instagram {
  background-image: url(images/socialmedia/svg/white/instagram_icon_white.svg);
}

.site-footer .widget-social-media.podcast {
  background-image: url(images/socialmedia/svg/white/podcast_icon_white.svg);
}

/* ===================  GLOBAL NEWS ICON STYLING  =======================  */
p.featured.article-tag {
  padding: 0;
}

.featured.article-tag a,
.featured-image-container .article-tag a {
  padding: 4px;
  display: inline-block;
  width: 100%;
}

/* news widget styling   */
/* events calendar styling   */
.utia-event-cal {
  font-size: 1rem;
  font-weight: 700;
}

.utia-event-info {
  font-size: 1rem;
}

/* local blog styling */
.tag-container {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  margin-top: 1em;
  padding: 6px;
  background-color: #eee;
}

/* Addition for anchor tags */
.anchor:target {
  scroll-margin-top: 3em;
}

/* move left sidebar to bottom on smaller screens */
@media (max-width: 799px) {
  .site-content {
    display: flex;
    flex-flow: column;
  }
  .site-content .unit-news {
    display: block !important;
    order: 2;
  }
}
.featured-caption {
  font-weight: 700;
  font-size: 80%;
  margin-bottom: 2em;
}

/* social media icons */
.article-social-media {
  float: right;
  height: 32px;
}

.news-widget-area .widget {
  padding: 0.5rem;
}

.news-widget-area .widget-social-media {
  width: 34px;
  height: 34px;
  margin-right: 0.5rem;
}

.social-icon {
  text-decoration: none;
  width: 2rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  height: 32px;
}

.social-icon:hover {
  border: 1px solid transparent;
}

.social-icon img {
  width: 1rem;
}

/*--------------------------------------------------------------
## Gutenberg
--------------------------------------------------------------*/
.wp-block {
  max-width: 1200px;
}

.has-slate-background-color {
  background-color: #333d47;
  color: #ffffff;
}
.has-slate-background-color a {
  color: #ffffff;
}

.has-slate-color {
  color: #333d47;
  background-color: #ffffff;
}
.has-slate-color a {
  color: #333d47;
}

.wp-block-media-text.alignwide figure,
.wp-block-media-text.alignwide .wp-block-media-text__content {
  max-width: 600px;
  margin: 0 auto;
}

/* UTIA Custom Blocks */
/* Read More Callout */
.read-more-callout {
  padding: 2em;
  border: 2px solid;
  width: 100%;
  margin: 4em auto;
  overflow: visible;
}
.read-more-callout h2 {
  text-align: center;
}

.read-more-callout-bottom {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.read-more-callout-bottom h2,
.read-more-callout-bottom .read-more-callout-link,
.read-more-callout-bottom .read-more-callout-link.has-white-background-color {
  padding: 2px;
  max-width: 325px;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  z-index: 100;
  border: 2px solid;
  text-transform: capitalize;
}
.read-more-callout-bottom h2 a,
.read-more-callout-bottom .read-more-callout-link a,
.read-more-callout-bottom .read-more-callout-link.has-white-background-color a {
  text-decoration: none;
  border-bottom: none;
}
.read-more-callout-bottom h2:hover, .read-more-callout-bottom h2:focus,
.read-more-callout-bottom .read-more-callout-link:hover,
.read-more-callout-bottom .read-more-callout-link:focus,
.read-more-callout-bottom .read-more-callout-link.has-white-background-color:hover,
.read-more-callout-bottom .read-more-callout-link.has-white-background-color:focus {
  background-color: #e4e8e9 !important;
}

.has-slate-background-color .read-more-callout-link:hover {
  background-color: #e4e8e9 !important;
}
.has-slate-background-color .read-more-callout-link:hover a {
  color: #333d47 !important;
}

/* Cards */
.utia-card {
  max-width: 400px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1em;
}
.utia-card img {
  width: 100%;
}
.utia-card:hover .utia-card-title, .utia-card:focus .utia-card-title, .utia-card:active .utia-card-title {
  display: none;
}
.utia-card:hover .utia-card-content, .utia-card:focus .utia-card-content, .utia-card:active .utia-card-content {
  max-height: 75%;
  height: 75%;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.utia-card-content {
  overflow-y: hidden;
  position: absolute;
  padding: 10px;
  bottom: 0;
  font-size: 16px;
  line-height: 1.2;
}
.utia-card-content .utia-card-bottom-title {
  padding: 0 0 10px;
}

.utia-card-title {
  width: 100%;
  padding: 10px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  line-height: 1.2;
}

.utia-card .utia-card-bottom-title {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.utia-card-title {
  background-color: #333d47;
}

.utia-card-content {
  overflow-y: hidden;
  max-height: 0;
  width: 100%;
}

/* Card 1 Styles */
.utia-card .utia-card-bottom-title {
  font-size: 150%;
}
.utia-card .utia-card-content-inner {
  padding: 10px 0;
}
.utia-card:hover .utia-card-bottom-title, .utia-card:focus .utia-card-bottom-title, .utia-card:active .utia-card-bottom-title {
  background: none;
}
.utia-card:hover .utia-card-content, .utia-card:focus .utia-card-content, .utia-card:active .utia-card-content {
  background: rgba(255, 255, 255, 0.88);
}

.card1 .utia-card-img {
  display: inline-block;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #333d47 80%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #333d47), color-stop(80%, rgba(0, 0, 0, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #333d47 80%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #333d47 80%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #333d47 80%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #333d47 80%);
  width: 100%;
  /* W3C */
}
.card1 .utia-card-img img {
  position: relative;
}

/* CARD 2 Styles */
.utia-card.card2 .utia-card-title {
  background-color: #333d47;
  border-top: 5px solid #2197a9;
  text-transform: capitalize;
}
.utia-card.card2 .utia-card-bottom-title {
  text-align: left;
  text-transform: capitalize;
}
.utia-card.card2 .utia-card-content {
  border-top: 5px solid #2197a9;
  background-color: #333d47;
  color: #fff;
  text-align: left;
}
.utia-card.card2 .utia-card-content .utia-card-bottom-title {
  text-align: left;
}
.utia-card.card2 .utia-card-content .utia-card-bottom-title a {
  color: #fff;
}

/* Card 2 Static Styles */
.utia-card.card2static .utia-card-title {
  display: none;
}
.utia-card.card2static .utia-card-content-inner {
  padding: 0;
}
.utia-card.card2static .utia-card-content {
  border-top: 5px solid #2197a9;
  height: auto;
  max-height: 100%;
  position: absolute;
  display: block;
  background-color: #333d47;
  color: #fff;
}
.utia-card.card2static .utia-card-content .utia-card-bottom-title {
  text-align: left;
  text-transform: capitalize;
  padding: 0 0 10px;
}
.utia-card.card2static .utia-card-content .utia-card-bottom-title a {
  color: #fff;
}

/* Card 3 Styles */
.utia-card.card3 {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
.utia-card.card3 .utia-card-title {
  display: none;
}
.utia-card.card3 .utia-card-content {
  border-top: 5px solid #2197a9;
  height: auto;
  max-height: 40%;
  display: block;
  background-color: #333d47;
  color: #fff;
  position: absolute;
}
.utia-card.card3 .utia-card-content .utia-card-bottom-title {
  padding: 0;
  font-size: 80%;
}
.utia-card.card3 .utia-card-content .utia-card-bottom-title a {
  color: #fff;
}

@media screen and (min-width: 601px) {
  .utia-card .utia-card-bottom-title {
    font-size: 110%;
  }
  .utia-card.card3 .utia-card-content {
    max-height: 45%;
  }
  .utia-card.card3 .utia-card-content .utia-card-bottom-title {
    font-size: 90%;
  }
}
@media screen and (min-width: 900px) {
  .read-more-callout {
    padding: 3em;
    width: 90%;
  }
  .utia-card .utia-card-bottom-title {
    font-size: 125%;
  }
  .utia-card.card3 .utia-card-content {
    max-height: 40%;
  }
  .utia-card.card3 .utia-card-content .utia-card-bottom-title {
    font-size: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .utia-card .utia-card-bottom-title {
    font-size: 150%;
  }
  .utia-card.card3 .utia-card-content {
    max-height: 25%;
  }
  .utia-card.card3 .utia-card-content .utia-card-bottom-title {
    font-size: 110%;
  }
}
/* UTIA Button */
.utia-button {
  display: inline-block;
   margin: .5em .25em;
  white-space: nowrap;
}
.utia-button .utia-button-link {
  padding: 5px 10px;
  border: 2px solid;
  text-decoration: none;
  text-transform: capitalize;
}
.utia-button .utia-button-link:focus, .utia-button .utia-button-link:hover {
  background-color: #e4e8e9;
}

.has-slatetint-background-color {
  background-color: #5c666f;
}

.has-slatetint-background-color.utia-button-link:hover {
  color: #333d47 !important;
}

.has-slate-background-color.utia-button-link:hover {
  background-color: #e4e8e9 !important;
  color: #333d47 !important;
}

.site-footer .utia-button-link:hover,
.site-footer .utia-button-link:hover {
  color: black;
}

/*
*   UTIA Full Width Image with Text
*/
.utia-full-image-text {
  background-color: #333d47;
  color: #fff;
}
.utia-full-image-text .inner-content {
  max-width: 1400px;
  margin: 0 auto;
}
.utia-full-image-text .inner-content .content {
  padding: 1em;
  font-size: 125%;
}
.utia-full-image-text .inner-content .content .link {
  margin-top: 40px;
}
.utia-full-image-text .inner-content .content a {
  border: 2px solid #ff8300;
  padding: 1% 2%;
  color: #fff;
  text-transform: capitalize;
}
.utia-full-image-text .inner-content .content a:hover, .utia-full-image-text .inner-content .content a:focus {
  background-color: #fff;
  color: #333d47;
}
.utia-full-image-text .inner-content .image img {
  width: 100%;
}

.utia-full-image-text-bg {
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  overflow: auto;
}
.utia-full-image-text-bg .image img {
  width: 100%;
}
.utia-full-image-text-bg .inner-content {
  position: relative;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.utia-full-image-text-bg .inner-content .content {
  padding: 1em;
}
.utia-full-image-text-bg .inner-content .content .link {
  margin-top: 40px;
}
.utia-full-image-text-bg .inner-content .content a {
  border: 2px solid #ff8300;
  padding: 1% 2%;
  text-transform: capitalize;
}
.utia-full-image-text-bg .inner-content .content a:hover, .utia-full-image-text-bg .inner-content .content a:focus {
  background-color: #333d47;
  color: #fff;
}

.utia-full-image-text-centered {
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
}
.utia-full-image-text-centered .image img {
  width: 100%;
}
.utia-full-image-text-centered .inner-content-centered {
  position: relative;
  height: 100%;
  padding: 60px 40px;
  background-color: rgba(51, 61, 71, 0.8);
  color: #fff;
}
.utia-full-image-text-centered .inner-content-centered .content {
  padding: 1em;
}
.utia-full-image-text-centered .inner-content-centered .content .link {
  margin-top: 40px;
}
.utia-full-image-text-centered .inner-content-centered .content a {
  border: 2px solid #ff8300;
  padding: 1% 2%;
  text-transform: capitalize;
  color: #fff;
}
.utia-full-image-text-centered .inner-content-centered .content a:hover, .utia-full-image-text-centered .inner-content-centered .content a:focus {
  background-color: rgba(51, 61, 71, 0.9);
  color: #fff;
}
.utia-full-image-text-centered .inner-content-centered .text-center {
  text-align: center;
}
.utia-full-image-text-centered .inner-content-centered .m-auto {
  margin: auto;
}

@media screen and (min-width: 768px) {
  .utia-full-image-text .inner-content .content,
.utia-full-image-text .inner-content .content .link,
.utia-full-image-text-bg .inner-content .content,
.utia-full-image-text-bg .inner-content .content .link,
.utia-full-image-text-centered .inner-content .content,
.utia-full-image-text-centered .inner-content .content .link {
    font-size: 100%;
  }
  .utia-button .utia-button-link {
    padding: 10px 15px;
  }
}
@media screen and (min-width: 900px) {
  .utia-full-image-text .inner-content .content,
.utia-full-image-text-bg .inner-content .content {
    font-size: 125%;
  }
}
@media screen and (min-width: 1024px) {
  .utia-full-image-text .inner-content .content,
.utia-full-image-text-bg .inner-content .content {
    font-size: 150%;
  }
}
@media screen and (min-width: 1200px) {
  .utia-full-image-text .inner-content .content,
.utia-full-image-text-bg .inner-content .content {
    font-size: 175%;
    padding: 2em;
  }
}
/*
*  UTIA Calendar / News
*/
#lclst_widget_footer {
  display: none;
}

.utia-cal,
.utia-news-block,
.utia-blog-block {
  position: relative;
  overflow-x: hidden;
}

.utia-event {
  display: inline-block;
  height: 175px;
}

.utia-event,
.utia-news-item,
.utia-blog-item {
  display: inline-block;
  padding: 4px;
}

.utia-event-cal-day {
  float: left;
}

.utia-event-info {
  clear: both;
  text-align: left;
  padding: 4px;
}

.utia-event-cal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: bold;
  padding: 2px;
}

.utia-event-cal-month,
.utia-event-cal-day {
  float: left;
  padding-right: 5px;
}

.utia-cal.horizontal,
.utia-news-block.horizontal,
.utia-blog-block.horizontal {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.utia-cal .bottom-hr-content,
.widget .utia-cal .bottom-hr-content,
.utia-news-block .bottom-hr-content,
.utia-blog-block .bottom-hr-content {
  font-size: 12pt;
  border: 2px solid #ff8300;
  padding: 5px;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.utia-cal .bottom-hr-content a,
.widget .utia-cal .bottom-hr-content a,
.utia-news-block .bottom-hr-content a,
.utia-blog-block .bottom-hr-content a {
  border-bottom: none;
}
.utia-cal .bottom-hr-content:hover, .utia-cal .bottom-hr-content:focus,
.widget .utia-cal .bottom-hr-content:hover,
.widget .utia-cal .bottom-hr-content:focus,
.utia-news-block .bottom-hr-content:hover,
.utia-news-block .bottom-hr-content:focus,
.utia-blog-block .bottom-hr-content:hover,
.utia-blog-block .bottom-hr-content:focus {
  background-color: #e4e8e9;
}
.utia-cal abbr,
.widget .utia-cal abbr,
.utia-news-block abbr,
.utia-blog-block abbr {
  text-decoration: none;
}

.utia-blog-block .bottom-hr-content {
  border: 2px solid #333d47;
}

/*
*   This is for creating the line throughs on divs.
*/
.hr-sect {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  font-size: 110%;
  margin: 8px 0px;
  font-weight: bold;
}

.hr-sect::before,
.hr-sect::after {
  content: "";
  flex-grow: 1;
  background-color: #ff8300;
  height: 2px;
  font-size: 0px;
  line-height: 0px;
  margin: 0px 8px;
}

.utia-blog-block .hr-sect::before,
.utia-blog-block .hr-sect::after {
  background-color: #333d47;
}

@media screen and (min-width: 601px) {
  .hr-sect {
    font-size: 32px;
  }
}
.utia-cal .slick-prev,
.utia-cal .slick-next,
.utia-news-block .slick-prev,
.utia-news-block .slick-next,
.utia-blog-block .slick-prev,
.utia-blog-block .slick-next {
  color: #ff8300;
  height: 100px;
}
.utia-cal .slick-prev:before,
.utia-cal .slick-next:before,
.utia-news-block .slick-prev:before,
.utia-news-block .slick-next:before,
.utia-blog-block .slick-prev:before,
.utia-blog-block .slick-next:before {
  color: #ff8300;
  height: 80px;
}
.utia-cal .slick-disabled,
.utia-news-block .slick-disabled,
.utia-blog-block .slick-disabled {
  opacity: 0.25;
}

.utia-blog-block .slick-prev,
.utia-blog-block .slick-next {
  color: #333d47;
}
.utia-blog-block .slick-prev:before,
.utia-blog-block .slick-next:before {
  color: #333d47;
}

.inner-cal .next,
.utia-cal .next,
.inner-cal .prev,
.utia-cal .prev,
.utia-news-block .prev,
.utia-news-block .next,
.utia-blog-block .prev,
.utia-blog-block .next {
  color: #ff8300;
  display: block;
  text-align: center;
}
.inner-cal .next svg,
.utia-cal .next svg,
.inner-cal .prev svg,
.utia-cal .prev svg,
.utia-news-block .prev svg,
.utia-news-block .next svg,
.utia-blog-block .prev svg,
.utia-blog-block .next svg {
  width: 100%;
  height: 80%;
}
.inner-cal .next .icon,
.utia-cal .next .icon,
.inner-cal .prev .icon,
.utia-cal .prev .icon,
.utia-news-block .prev .icon,
.utia-news-block .next .icon,
.utia-blog-block .prev .icon,
.utia-blog-block .next .icon {
  top: 0;
}

.horizontal.utia-news-block .prev svg, .horizontal.utia-news-block .next svg,
.horizontal.utia-blog-block .prev svg,
.horizontal.utia-blog-block .next svg {
  max-width: 100px;
}

.utia-blog-block .prev,
.utia-blog-block .next {
  color: #333d47;
}

.inner-cal .next {
  text-align: right;
}

.utia-cal .next .icon,
.utia-news-block .next .icon,
.utia-blog-block .next .icon {
  transform: rotate(270deg);
}
.utia-cal .prev .icon,
.utia-news-block .prev .icon,
.utia-blog-block .prev .icon {
  transform: rotate(90deg);
}

/*
*  Vertical Calendar Styles
*/
.vertical.utia-cal hr,
.vertical.utia-news-block hr,
.vertical.utia-blog-block hr {
  margin: 0;
  height: 5px;
  background-color: #ff8300;
}
.vertical.utia-cal .utia-event,
.vertical.utia-cal .utia-news-item,
.vertical.utia-cal .utia-blog-item,
.vertical.utia-news-block .utia-event,
.vertical.utia-news-block .utia-news-item,
.vertical.utia-news-block .utia-blog-item,
.vertical.utia-blog-block .utia-event,
.vertical.utia-blog-block .utia-news-item,
.vertical.utia-blog-block .utia-blog-item {
  min-height: 100px;
}
.vertical.utia-cal .bottom-hr-content,
.vertical.utia-news-block .bottom-hr-content,
.vertical.utia-blog-block .bottom-hr-content {
  margin-top: 20px;
}

.vertical.utia-blog-block hr {
  background-color: #333d47;
}

.slick-slide {
  min-height: 100px;
}

.utia-cal .slick-slide {
  border: 1px solid #444;
  margin: 0 10px;
}

.slick-vertical .slick-slide {
  margin-bottom: 5px;
}

.utia-event-title {
  padding: 5px;
  font-size: 1em;
}

.utia-events,
.utia-news,
.utia-blog {
  visibility: hidden;
}

/*
*   End of Calendar
*/
/*
*   UTIA NEWS 
*/
.utia-news-img,
.utia-blog-img {
  height: auto;
  max-height: 180px;
  overflow: hidden;
}
.utia-news-img img,
.utia-blog-img img {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 130px;
  }
  .vertical .utia-blog-img,
.vertical .utia-news-img {
    height: auto;
    max-height: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 100px;
  }
}
@media screen and (min-width: 1400px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 130px;
  }
}
@media screen and (min-width: 1600px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 145px;
  }
}
@media screen and (min-width: 2600px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 160px;
  }
}
@media screen and (min-width: 2600px) {
  .horizontal .utia-news-img,
.horizontal .utia-blog-img {
    height: 180px;
  }
}
.utia-news-cat {
  width: 100%;
  background-color: #333d47;
  color: #fff;
  text-align: center;
}
.utia-news-cat a {
  text-decoration: none;
  color: #ffffff;
  border-bottom: none;
}
.utia-news-cat a:hover {
  color: #333d47;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 768px) {
  .vertical.utia-cal .icon,
.vertical.utia-news-block .icon,
.vertical.utia-blog-block .icon {
    height: 50px;
  }
  .vertical.utia-cal .prev .icon,
.vertical.utia-news-block .prev .icon,
.vertical.utia-blog-block .prev .icon {
    transform: rotate(180deg);
  }
  .vertical.utia-cal .next .icon,
.vertical.utia-news-block .next .icon,
.vertical.utia-blog-block .next .icon {
    transform: rotate(0deg);
  }
}
/*
*  UTIA Lead-In Text Styles
*/
.utia-leadin {
  margin-bottom: 0.5em;
  font-size: 22px;
}
.utia-leadin.geo {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
}

.utia-leadin.has-slate-background-color,
.utia-leadin.has-slatetint-background-color {
  padding: 2%;
}

@media screen and (min-width: 900px) {
  .utia-leadin {
    font-size: 33px;
  }
}
.utia-accentbar hr {
  margin-top: 0;
  width: 150px;
  height: 5px;
  margin-bottom: 0.5em;
  opacity: 1;
}

/*
*  UTIA Countdown Styles
*/
.utia-countdown {
  font-family: Georgia;
  max-width: 400px;
  margin: 0 auto;
}
.utia-countdown .header {
  font-size: 125%;
  text-align: center;
}
.utia-countdown .date-area {
  height: 80%;
  text-align: center;
  border-top: 2px solid #ff8300;
}
.utia-countdown .date {
  display: inline-block;
  height: 100%;
}
.utia-countdown .date .value-top {
  line-height: 67px;
  font-size: 140%;
  font-weight: bold;
}
.utia-countdown .date .value-sep {
  line-height: 67px;
  font-size: 125%;
}
.utia-countdown .date .value-bottom {
  line-height: 17px;
  font-size: 90%;
}

@media screen and (min-width: 900px) {
  .utia-countdown .header {
    font-size: 150%;
  }
  .utia-countdown .date .value-top {
    font-size: 200%;
  }
  .utia-countdown .date .value-sep {
    font-size: 150%;
  }
  .utia-countdown .date .value-bottom {
    font-size: 100%;
  }
}
/*   New code to standardize caption on all areas  */
figcaption {
  font-weight: 700;
  font-size: 80%;
}

.wp-block-navigation .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  font-family: Montserrat, sans-serif;
  width: 100%;
  align-items: stretch;
  padding-right: 1%;
}

.wp-block-navigation .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  font-weight: 500;
  flex: 1;
  align-items: stretch;
}

.wp-block-navigation .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
  padding: 10px 10px;
  flex: 1;
}

.has-modal-open .wp-block-navigation__responsive-container {
  top: 100px;
}

.wp-block-navigation__responsive-container-content {
  gap: 12px;
}

.has-modal-open .wp-block-kadence-column {
  z-index: auto;
}

.has-slate-background-color > .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container .has-slate-background-color.wp-block-navigation-link a {
  color: #fff;
  background-color: #333d47;
}

.has-white-background-color > .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container .has-white-background-color.wp-block-navigation-link a {
  border-bottom: 1px solid;
  color: #333d47;
  background-color: #fff;
}

.has-white-background-color > .wp-block-navigation-item__content:hover,
.has-white-background-color.wp-block-navigation .wp-block-navigation-item:hover,
.wp-block-navigation-item:hover {
  color: #fff;
  background-color: #333d47;
}

.has-slate-background-color > .wp-block-navigation-item__content:hover,
.has-slate-background-color.wp-block-navigation-item:hover,
.has-white-background-color.wp-block-navigation-item .has-slate-background-color > .wp-block-navigation-item:hover,
.has-slate-background-color.wp-block-navigation .wp-block-navigation-item:not(.has-white-background-color > .wp-block-navigation-item):hover {
  color: #333d47;
  background-color: #fff;
}
.has-slate-background-color > .wp-block-navigation-item__content a:hover,
.has-slate-background-color.wp-block-navigation-item a:hover,
.has-white-background-color.wp-block-navigation-item .has-slate-background-color > .wp-block-navigation-item a:hover,
.has-slate-background-color.wp-block-navigation .wp-block-navigation-item:not(.has-white-background-color > .wp-block-navigation-item) a:hover {
  border-bottom: none;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  z-index: 100;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
  width: 100%;
  margin: 3em 0;
  padding: 1.5em 0;
  border-top: 1px solid hsl(0deg, 0%, 80%);
}

.comments-title {
  margin-bottom: 2em;
  font-size: 2.5em;
  font-weight: 900;
}

.comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comment-list ol {
  list-style-type: none;
}

.comment-body {
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 3em;
}

.comment-meta {
  position: relative;
  margin-left: 70px;
  font-size: 80%;
}

.comment-meta a,
.comment-form a {
  text-decoration: none;
  border: none;
}
.comment-meta a:hover, .comment-meta a:focus,
.comment-form a:hover,
.comment-form a:focus {
  text-decoration: underline;
}

.comment .avatar {
  position: absolute;
  top: -5px;
  left: -70px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.children {
  margin-left: 1em;
  padding-left: 0;
}
@media screen and (min-width: 900px) {
  .children {
    margin-left: 2em;
  }
}

@media screen and (min-width: 900px) {
  .no-sidebar .children {
    margin-left: 2em;
  }
  .no-sidebar .children .comment-meta {
    margin-left: 80px;
    font-size: 90%;
  }
  .no-sidebar .children .comment .avatar {
    top: -7px;
    left: -80px;
    width: 60px;
    height: 60px;
  }
  .no-sidebar .children .comment-content {
    margin-left: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .no-sidebar .children {
    margin-left: 3em;
  }
  .no-sidebar .comment-meta {
    margin-left: 90px;
  }
  .no-sidebar .comment .avatar {
    top: -8px;
    left: -90px;
    width: 70px;
    height: 70px;
  }
  .no-sidebar .comment-content {
    margin-left: 90px;
  }
}

.comment-metadata {
  margin-top: 0.2em;
  padding-bottom: 0.5em;
  font-size: 0.8em;
  line-height: 1em;
}
.comment-metadata a {
  color: #7D7D7D;
}
.comment-metadata a:hover, .comment-metadata a:focus {
  border-color: #c3c3c3;
}

.comment-author {
  font-size: 1.4em;
  line-height: 1.3em;
}

.says {
  font-size: 80%;
}

.reply {
  margin-bottom: 1.5em;
  text-align: right;
}
.reply a {
  display: inline-block;
  padding: 0.5em 1.4em;
  font-size: 85%;
  color: #000;
  line-height: 1.3em;
  text-decoration: none;
  border: 1px solid #c3c3c3;
}
.reply a:hover, .reply a:focus {
  color: #fff;
  background: #333d47;
  border-color: #333d47;
}

.comment-content ol {
  list-style-type: decimal;
}
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor .avatar {
  box-sizing: content-box;
  border: 5px solid #333d47;
  margin-top: -5px;
  margin-left: -5px;
}

/* Comment Form */
.comment-reply-title {
  margin-bottom: 1em;
}

.comment-list .comment-reply-title {
  text-align: left;
}

.comment-form {
  line-height: 1.3em;
}
.comment-form a {
  font-weight: 500;
}
.comment-form .form-submit {
  text-align: right;
}
.comment-form .form-submit input {
  padding: 0.5em 1.4em;
  font-size: 85%;
  color: #000;
  line-height: 1.3em;
  text-decoration: none;
  border: 1px solid #c3c3c3;
}
.comment-form .form-submit input:hover, .comment-form .form-submit input:focus {
  color: #fff;
  background: #333d47;
  border-color: #333d47;
}
.comment-form label {
  width: 33%;
  display: block;
  font-style: italic;
  padding-bottom: 0.4em;
}
.comment-form .required {
  color: #D54E21;
}

.pingback .comment-body {
  padding: 1em 0;
}
.pingback a {
  font-style: italic;
  text-decoration: none;
}

/*--------------------------------------------------------------
## Search
--------------------------------------------------------------*/
/* updated styles for Search Results Page */
.search h1 {
  text-transform: none;
}

.search input[type=submit] {
  border-color: #5c666f;
  background-color: #ccc;
  padding: 6px 14px 7px;
  vertical-align: top;
}

.search #content {
  display: block;
}

.search-pad {
  margin-bottom: 2em;
}

.search-drop {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.search-drop li {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 4px;
}

/* --- GOOGLE CUSTOM SEARCH STYLES --- */
table.gsc-input {
  margin: 0;
  padding: 0;
}

/* -- remove underline from search x -- */
.gsst_a {
  border-bottom: 0 none;
}

/*  fix for container that was wrapping   */
/* -- set max-width to 100%;  */
.gsc-selected-option-container.gsc-inline-block {
  max-width: 100%;
}

/* -- remove theme border bottom from anchor links */
.gsc-control-cse a {
  border-bottom: 0 none;
}

/* -- hide text for google people search in search box initially --  */
#primary.custom-search .search-field {
  color: #ffffff;
}

.gsc-control-cse .gsc-option-menu-container {
  min-width: 120px;
}

.logged-in-padding {
  margin-top: 2em;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.entry-footer {
  margin: 0;
  /*   border-top: 5px solid $color__utia-orange; */
}

.footer {
  background-color: #333d47;
}

.footer-rls {
  font-size: 30px;
  padding-top: 1em;
  text-align: left;
}
.footer-rls img {
  /* max-width: 70%; */
  width: 100%;
  max-width: 460px;
  vertical-align: top;
}

.footer-logo img {
  /*max-width: 70%;   */
  width: 100%;
  max-width: 400px;
}

.footer-right {
  font-size: 90%;
  text-align: right;
  padding-right: 1em;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .footer-right {
    text-align: left;
  }
}

.deptFooter {
  background-color: #5c666f;
  /* accent */
  border-top: 10px solid #ff8300;
  margin-bottom: 0;
  text-align: left;
}
.deptFooter p {
  padding: 12px 0;
  font-size: 16px;
}

/*** scroll to top - MIGHT BE REMOVED DETERMINING NEED*/
.scrolltop {
  display: none;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
}

.scroll {
  position: absolute;
  right: 1%;
  bottom: 2%;
  background: #ffffff;
  padding: 0.5em 0.75em;
  text-align: center;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  border-radius: 10px;
}
.scroll svg {
  transform: scaleY(-1);
}

.scroll:hover {
  background: #e4e8e9;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.scroll:hover .fa {
  padding-top: -10px;
}

.scroll .fa {
  font-size: 30px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

/*  ================  GLOBAL CHILD FOOTER STYLES  ====================== */
.site-footer {
  background-color: #5c666f;
  border-top: 10px solid #ff8300;
  margin-bottom: 0;
  text-align: left;
  /* fix */
}
.site-footer .widget_recent_entries li:before {
  border-color: transparent #fff;
}
.site-footer .textwidget {
  font-size: 1rem;
  /* end of fix */
}
.site-footer .textwidget a {
  color: #ffffff;
  font-weight: normal;
}
.site-footer .textwidget .widget {
  margin: 0;
  padding: 0;
}
.site-footer .textwidget h1, .site-footer .textwidget h2, .site-footer .textwidget h3, .site-footer .textwidget h4, .site-footer .textwidget h5 {
  color: #ffffff;
}

/* email link styling */
.site-footer a {
  color: #ffffff;
  font-weight: 400;
}
.site-footer a:hover, .site-footer a:focus {
  border-bottom: 3px solid #ffffff;
}

.site-footer-container {
  padding: 1em;
  margin: 0 auto;
  max-width: 1400px;
  /* should be site max width variable */
  color: #ffffff;
  /* default text color for site footer */
}
.site-footer-container .menu li {
  line-height: 1em;
  text-align: left;
}
.site-footer-container .menu li a {
  color: #ffffff;
  padding: 0.2em 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  font-weight: normal;
  margin-bottom: 0.2em;
  border-bottom: 0;
  text-decoration: none;
}
.site-footer-container .menu li a:hover {
  text-decoration: underline;
}

.site-footer-text {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

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

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

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

/* --------   end of custom child footer styling  *********************  */
/*--------------------------------------------------------------
## Person
--------------------------------------------------------------*/
/* Style for person page */
.person-desktop {
  display: none;
}

.person-header {
  margin-bottom: 10%;
}

.person-contact,
.person-name {
  margin: 0;
  font-weight: bold;
  text-transform: none;
}

.person-title {
  margin-bottom: 10px;
}

.person-inner-content {
  padding: 2% 0;
}

.person-title-dept,
.person-heading {
  font-size: 26px;
  font-weight: bold;
}

@media screen and (min-width: 900px) {
  .person-mobile {
    display: none;
  }
  .person-desktop {
    display: block;
  }
  .person-info {
    border-left: 1px solid rgba(92, 102, 111, 0.5);
    padding-left: 2%;
  }
}
/* style for personnel page */
.personnel-content .person-contact,
.personnel-content .person-name,
.personnel-grp .person-contact,
.personnel-grp .person-name {
  font-size: 110%;
}

.personnel-content {
  display: flex;
  flex-wrap: wrap;
}
.personnel-content .person-group {
  width: 100%;
  padding-top: 40px;
}

.personnel-content .person {
  /* NEW */
  margin: 2%;
  display: flex;
  flex-direction: column;
  width: 275px;
}
.personnel-content .person .person-pic {
  margin-bottom: 1em;
      max-height:275px;
    overflow:hidden;
}
.personnel-content .person .person-pic a {
  border-bottom: none;
}
.personnel-content .person .person-pic a:hover, .personnel-content .person .person-pic a:focus {
  border-bottom: none;
}
.personnel-content .person .person-pic img {
  width: 100%;
  max-width: 300px;
}
.personnel-content .person .utia-button-link {
  border-color: #ff8300;
  padding: 3% 4%;
}
.personnel-content .person .utia-button-link:hover, .personnel-content .person .utia-button-link:focus {
  background-color: #5c666f;
  color: #FFF;
}
.personnel-content .person .utia-button {
  margin: auto 0 0;
}
.personnel-content .person .person-email {
  margin-bottom: 20px;
}
.personnel-content .person .person-placeholder {
  font-size: 110%;
  font-weight: bold;
}
.personnel-content .person .person-placeholder-inner {
  margin-bottom: 20px;
}

.spinner {
  background: url("/wpdev/wp-admin/images/wpspin_light.gif") no-repeat;
  background-size: 16px 16px;
  opacity: 0.7;
  filter: alpha(opacity=70);
  width: 16px;
  height: 16px;
  margin: 5px 5px 0;
  float: left;
}

.input-group-append .btn {
  z-index: 0;
}

/* Group Page stylings */
.personnel-grp {
  display: flex;
  flex-wrap: wrap;
}
.personnel-grp .person {
  flex: 1 0 25%;
  /* NEW */
  margin: 2%;
  display: flex;
  flex-direction: column;
  max-width: 350px;
}
.personnel-grp .person-email {
  margin-bottom: 20px;
}
.personnel-grp .person-pic img {
  min-width: 300px;
  max-width: 100%;
}
.personnel-grp .utia-button-link {
  border-color: #ff8300;
  padding: 3% 4%;
}
.personnel-grp .utia-button-link:hover, .personnel-grp .utia-button-link:focus {
  background-color: #5c666f;
  color: #FFF;
}

.personnel-sub {
  margin: 1%;
}

/* SPINNER */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: black;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.spinner-search {
  display: none;
}

/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/
.widget-area {
  margin-top: 1.5em;
}

/* Footer widgets for archive pages */
@media screen and (min-width: 900px) {
  .archive-view.has-sidebar .footer-widgets {
    width: 100%;
  }
}

.widget {
  margin: 0 0 2em;
  padding: 0 0 2em;
  /* Make sure select elements fit in widgets. */
}
.widget ul,
.widget ol {
  padding: 0.7em 0 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget ul li,
.widget ol li {
  display: block;
  line-height: 2em;
}
.widget ul li ul,
.widget ul li ol,
.widget ol li ul,
.widget ol li ol {
  margin-left: 0.5em;
}
@media screen and (min-width: 30em) {
  .widget ul li ul,
.widget ul li ol,
.widget ol li ul,
.widget ol li ol {
    margin-left: 1em;
  }
}
.widget a {
  font-weight: 500;
  text-decoration: none;
}
.widget a:hover, .widget a:focus {
  border-bottom: 3px solid;
}
.widget select {
  width: 100%;
  height: 2.5em;
  padding: 10px;
  border: 1px solid #ccc;
}

.widget-title {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.4em;
}

/* Archive and Categories widgets */
.widget_archive li {
  color: #7D7D7D;
}

.widget_categories .children {
  padding-top: 0;
}

/* Search widget. */
.widget_search .search-submit {
  display: none;
}

/* Pages and Menu widgets */
.widget_pages .children,
.widget_nav_menu .sub-menu {
  padding-top: 0;
  padding-bottom: 0.5em;
}

.widget_pages a,
.widget_nav_menu a {
  display: block;
  padding: 1em 0;
  text-decoration: none;
  border-bottom: 1px dashed hsl(0deg, 0%, 50%);
}
.widget_pages a:hover, .widget_pages a:focus,
.widget_nav_menu a:hover,
.widget_nav_menu a:focus {
  text-decoration: none;
  border-bottom: 1px dashed hsl(0deg, 0%, 50%);
}
.widget_pages li,
.widget_nav_menu li {
  padding: 0;
}

/* Meta widget */
.widget_meta li {
  padding: 0;
}

.widget_recent_entries ul {
  padding: 0 1em;
  list-style: none;
}
.widget_recent_entries li:before {
  content: "";
  border-color: transparent #111;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 1.3em;
  position: relative;
}

/* Recent comments */
.widget_recent_comments li {
  line-height: 1.3em;
  padding-bottom: 0.5em;
}
.widget_recent_comments a:hover,
.widget_recent_comments a:focus {
  padding-left: 0;
}

/* RSS widget */
.widget_rss li {
  margin-bottom: 1em;
}

.widget li a.rsswidget {
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 1.4em;
}

.rss-date,
.widget_rss cite {
  color: #333;
  font-size: 0.8em;
}

.rssSummary {
  padding: 0.5em 0;
  font-family: Georgia, Times, "Times New Roman", Serif;
  font-size: 0.8em;
  line-height: 1.4em;
}

/* Search widget */
.widget_search input[type=search] {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #c3c3c3;
  border-radius: 0;
}

/* Calendar widget */
.widget_calendar {
  font-weight: 400;
}
.widget_calendar caption {
  padding: 0.5em 0;
  font-size: 1em;
  font-weight: 500;
  text-align: left;
}
.widget_calendar thead {
  background: transparent;
  color: black;
}
.widget_calendar thead th {
  border-bottom-width: 2px;
}
.widget_calendar td {
  padding: 0.2em;
  font-size: 0.8em;
  text-align: center;
  background: white;
  border: 1px solid hsl(0deg, 0%, 80%);
}
.widget_calendar th {
  border: none;
  text-align: center;
}
.widget_calendar .pad {
  background: #eaeaea;
}
.widget_calendar a {
  font-weight: 900;
  text-decoration: none;
}

/* Text widget */
.textwidget {
  font-size: 80%;
  line-height: 1.5em;
}

/* Footer widget stylings */
.footer-widgets {
  margin: 2em 0 0;
  padding: 1em 0;
  background-color: hsl(0deg, 0%, 10%);
}
@media screen and (min-width: 601px) {
  .footer-widgets {
    padding: 2em 1em;
  }
}
.footer-widgets .widget {
  flex: 1;
  margin: 0 1em 2em;
  padding-top: 1em;
}
.footer-widgets .widget .original-title {
  color: hsla(0deg, 0%, 100%, 0.5);
}
.footer-widgets .widget,
.footer-widgets .widget-title,
.footer-widgets .widget a,
.footer-widgets .widget_calendar thead,
.footer-widgets .rss-date,
.footer-widgets .widget_rss cite {
  color: white;
}
.footer-widgets .widget_calendar td,
.footer-widgets .widget_calendar a {
  color: black;
}
@media screen and (min-width: 900px) {
  .footer-widgets {
    /* Use flex to create a responsive layout */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* If only one widget is displayed, make it full width. */
    /* If 2 or 3 widgets are displayed, make the second one twice as wide. */
    /* If 4 or more widgets are displayed, show three across when available. */
  }
  .footer-widgets .widget:only-of-type {
    width: 100%;
  }
  .footer-widgets .widget:nth-last-child(n+2):nth-last-child(-n+3):first-child ~ .widget:nth-child(2) {
    flex: 2;
  }
  .footer-widgets .widget:nth-last-child(n+4),
.footer-widgets .widget:nth-last-child(n+4) ~ .widget {
    width: 30%;
    flex: 1 1 30%;
  }
}

.site-footer .textwidget a {
  color: #ffffff;
}
.site-footer .textwidget a:hover, .site-footer .textwidget a:focus {
  border-bottom: 3px solid #ffffff;
}

.site-footer .widget-title-footer {
  font-size: 120%;
}

/*      Custom Widgets-------------------------------------
## address widget
--------------------------------------------------------------*/
/* address widget styles here */
.widget .widget-address {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.widget .widget-address li {
  line-height: 1.5em;
}
.widget .widget-address li.site-address-name {
  font-weight: 700;
  font-size: 120%;
}

/*--------------------------------------------------------------
## Exceptions
--------------------------------------------------------------*/
.gs-result .gs-title,
.gs-result .gs-title * {
  text-decoration: none !important;
}

.gs-webResult.gs-result a.gs-title {
  border-bottom: 1px solid;
  text-decoration: none;
}
.gs-webResult.gs-result a.gs-title:hover, .gs-webResult.gs-result a.gs-title:focus {
  border-bottom: 3px solid;
}

.leaflet-pane {
  z-index: 10 !important;
}

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

/*--------------------------------------------------------------
## Images
--------------------------------------------------------------*/
.wp-caption.aligncenter,
.centered-image {
  max-width: 100vw;
  margin: 0 -1em;
}
@media screen and (min-width: 601px) {
  .wp-caption.aligncenter,
.centered-image {
    margin: 0 -2em;
  }
}

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

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 1em;
}
.gallery-item img {
  display: block;
}
.gallery-item a {
  display: inline-block;
  border-bottom: none;
}
.gallery-item a:hover, .gallery-item a:focus {
  border-bottom: none;
  box-shadow: none;
}
.gallery-item a img {
  padding: 0.5em;
  margin: 0 auto;
  border: 1px solid #fff;
}

.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;
  margin: 0;
  border: none;
}

/*--------------------------------------------------------------
## SVG Icons
--------------------------------------------------------------*/
/* SVG Icons base styles */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  position: relative; /* Align more nicely with capital letters */
  top: -0.0625em;
  vertical-align: middle;
  width: 1em;
}

/*--------------------------------------------------------------
SVG Fallbacks
--------------------------------------------------------------*/
.svg-fallback {
  display: none;
}

.no-svg .svg-fallback {
  display: inline-block;
}

.no-svg .nav-links .svg-fallback {
  padding: 0 0.5em;
  color: inherit;
  background: inherit;
}

.no-svg .svg-fallback.icon-arrow-long-left:before {
  content: "←";
}

.no-svg .svg-fallback.icon-arrow-long-right:before {
  content: "→";
}

/* Social Menu fallbacks */
.no-svg .social-menu a {
  height: auto;
  width: auto;
}

.no-svg .social-menu li a .screen-reader-text {
  clip: auto;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  height: auto;
  position: relative !important; /* overrides previous !important styles */
  width: auto;
}

/* CSS to remove background and pullQuote from kedance Testimonials block */
 blockquote.kt-testimonial-content {
    position: relative;
    margin: 0 !important;
    background: none;
    padding: 0 !important;
    font-style: unset;
}

 blockquote.kt-testimonial-content:before{
  content: "" !important;
}

/*# sourceMappingURL=utia.css.map */