/* normalize things first */
@import "normalize.css";

/* Base */

/* Account for CSS slate forms pull in */
body button:focus {
  color: revert;
  background: revert;
}

/* vars */
/* :root {
  --ua-crimson: #900f0f;
} */
/* end vars */

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  background: transparent;
  color: #333;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

main {
  flex: 0 0 100%;
  width: 100%;
}

main > section {
  padding: 4rem 0;
}

main section > * {
  max-width: 87.5em;
  margin: 0 auto;
}

h1 {
  margin: 0;

  font-size: 2em;
}

h2 {
  width: fit-content;
  margin: 0 auto;

  color: #333;
  font-family: soleil, sans-serif;
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
}

h3 {
  margin: 0;
  display: block;

  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  text-align: left;
}

p {
  font-size: 1rem;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  color: #900f0f;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #333;
  text-decoration: underline;
}

button > span {
  pointer-events: none;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 10px;
}

ul {
  padding-left: 0;

  list-style: none;
}

ul li {
  list-style: disc;
}

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  list-style: none;
}

nav ul li {
  list-style: none;
}

/* Example

layout/positioning/structure styles first,
line break,
then themeing/visual styles

.hero {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;

    color: white;
    border: 1px solid white;
}

be specific in your use of the cascade,
making sure your styles are contained
within your largest containing structural class.
In this case that's .hero.

.hero header {
    display: inline-block;

    font-size: 2.4em;
}
*/

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

caption {
  padding: 8px 0;
  text-align: left;

  color: #777;
}

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

tr:hover {
  background-color: #f5f5f5;
}

th {
  font-weight: bold;
}

thead th {
  background: #3d3d3d;
  color: white;
}

td,
th {
  padding: 8px;

  text-align: left;
}

.table-wrapper {
  overflow-x: auto;
}

/* stripe the rows */

/* tr:nth-of-type(odd) {
    background: #eee;
} */

img {
  height: auto;
  width: auto;
}

.background-img {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;

  object-fit: cover;
  transform: translate(-50%, -50%);
}

.background-img:empty {
  background-color: #333;
}

/* fix .fa so you can use it on links and spans wrapping content */
.fa {
  font: inherit;
}

.fa:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
}
/* end .fa */

blockquote {
  margin: 0 0 20px;
  padding: 10px 20px;

  border-left: 5px solid #990f0f;
  font-size: 17.5px;
}

/* BASE: media queries */

@media screen and (min-width: 26.25em) {
  h2 {
    font-size: 2.75rem;
  }
}

@media screen and (min-width: 39.375em) {
  h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 48em) {
  h2:not(.third h2) {
    font-size: 5rem;
  }
}

@media screen and (min-width: 87.5em) {
  .background-img {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
    max-width: 100%;

    transform: none;
  }

  .background-img:empty {
    background-color: #333;
  }
}

@supports (object-fit: cover) {
  .background-img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;

    object-fit: cover;
    transform: none;
  }

  .background-img:empty {
    background-color: #333;
  }
}

/* LAYOUT & THEME */
/* styles that are relevant generally to the theme overall, so header, footer mostly and related. */

/* header */
header {
  z-index: 10;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

header:not(.section-header) {
  z-index: 100;
  display: flex;
  flex-wrap: wrap;

  background: #fff;
  font-size: 10px;
}

/* skip to main content tab */

.skip-to-content-link {
  z-index: 1000;
  position: absolute;
  left: 33vw;
  height: 30px;
  padding: 10px;
  display: flex;
  align-items: center;

  background: #ccc;
  color: #990f0f !important;
  font-size: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.skip-to-content-link:focus {
  height: 30px;

  transform: translateY(30%);
}

/**/

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

  list-style: none;
}

.brandbar {
  position: relative;
  min-height: 5em;
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;

  background: #900f0f;
  color: #fff;
  transition: background 0.2s ease-in-out;
}

.brandbar.universal-nav-active,
.brandbar.top-search-active {
  background: #353535;
}

.brandbar a {
  height: 50px;

  color: #fff;
  text-decoration: none;
}

.brandbar .ua-logo {
  position: relative;
  width: 50vw;
  margin-left: 5px;
  padding-left: 5px;
  display: flex;
  align-items: center;
}

.brandbar .ua-logo a {
  height: 100%;
  width: 100%;

  background: url("../imgs/logos/ua-logo.svg") left center no-repeat;
  background-size: 100%;
  text-indent: -9999px;
}

.brandbar .legends-campaign {
  position: relative;
  width: 33vw;
  display: none;
  align-items: center;
  justify-content: center;

  background: #353535;
}

.brandbar .legends-campaign:before,
.brandbar .legends-campaign:after {
  z-index: 0;
  position: absolute;
  height: 100%;
  width: 12px;

  content: "";
  background: #353535;
  border-right: 5px solid #353535;
  transform: skew(-20deg);
}

.brandbar .legends-campaign:before {
  left: -8px;
}

.brandbar .legends-campaign:after {
  right: -8px;
}

.brandbar .legends-campaign a {
  z-index: 2;
  position: relative;
  height: 100%;
  width: 92%;

  text-indent: -9999px;
  background: #353535
    url("https://stratcomweb01-dev.ua.edu/brandbar/img/legends-sm.png") center
    center no-repeat;
  background-size: 100%;
  color: white;
  text-align: center;
}

.brandbar .brandbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  font-size: 1.3em;
}

.brandbar .brandbar-nav li.mybama-link {
  display: none;
}

.brandbar .brandbar-nav li a,
.brandbar .brandbar-nav li button {
  min-height: 50px;
  padding: 0 15px;
  display: inline-block;

  line-height: 50px;
}

.brandbar.expanded .brandbar-nav li.expand-universal-nav button {
  background: transparent;
  color: #fff;
}

.brandbar-nav .fa-bars.mobile-expand {
  color: #992020;
}

.brandbar .brandbar-nav li a:hover,
.brandbar .brandbar-nav li a:focus,
.brandbar .brandbar-nav li button:hover,
.brandbar .brandbar-nav li button:focus {
  color: #fff;
  background: #6d0019;
}

.brandbar .brandbar-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3em;
  cursor: pointer;
}

/* brandbar search icon */
.brandbar .brandbar-nav li.expand-search button {
  background: #900f0f;
  color: #fff;
}

.brandbar .brandbar-nav li.expand-search button.top-search-active {
  background: #fff;
  color: #990f0f;
}

.brandbar .brandbar-nav li.expand-search button.universal-nav-active {
  background: #353535;
}

/* brandbar menu icon */
.brandbar .brandbar-nav li.expand-universal-nav button {
  background: #990f0f;
  color: #fff;
}

.brandbar .brandbar-nav li.expand-universal-nav button.universal-nav-active {
  background: #fff;
  color: #990f0f;
}

.brandbar
  .brandbar-nav
  li.expand-universal-nav
  button.universal-nav-active
  .fa-bars:before {
  content: "\f00d";
}

.brandbar .brandbar-nav li.expand-universal-nav button.top-search-active {
  background: #353535;
}

.brandbar
  .brandbar-nav
  li.expand-universal-nav
  button
  .fa-bars.top-search-active {
  color: #fff;
}

.brandbar .brandbar-nav li.expand-universal-nav button.universal-nav-active {
  background: #fff;
  color: #990f0f;
}

/* top search */
.top-search-container {
  z-index: 1100;
  min-height: 66px;
  width: 100%;
  padding: 8px;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  background: #fff;
  border-bottom: #c6c6c6 solid 1px;
}

.top-search-active {
  display: flex;
}

.top-search-container form {
  padding: 5px;
  flex: 1 0 100%;
}

.top-search-container input {
  height: 40px;
  text-transform: uppercase;
}

.top-search-container .input-group button {
  height: 40px;
  background-color: #e1e1e1;
  border-color: #d3d3d3;
  color: #333;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.top-search-container .input-group button:hover,
.top-search-container .input-group button:focus {
  background-color: #e1e1e1;
  color: #333;
  border-color: #d3d3d3;
}

/* top search end */

.universal-resources {
  order: 6;
  z-index: 2;
  position: relative;
  display: none;
}

.universal-resources.universal-nav-active {
  display: flex;
}

.universal-resources .universal-nav {
  width: 100%;

  background: #353535;
  font-size: 1.6em;
}

.universal-resources .universal-nav ul {
  padding: 0;
  flex-wrap: wrap;
  justify-content: space-around;

  background: #353535;
}

.universal-resources .universal-nav li {
  padding: 10px 0;
  justify-content: space-around;

  background: #900f0f;
}

.universal-resources .universal-nav ul li:nth-of-type(-n + 4) {
  width: 25%;
}

.universal-resources .universal-nav li:nth-child(n + 5),
.universal-resources .universal-nav li:nth-child(n + 7) {
  width: 33%;
  padding: 10px 20px;

  background: #353535;
}

.universal-resources .universal-nav li:nth-child(n + 5) a {
  color: #fff;
}

.universal-resources .universal-nav li:hover,
.universal-resources .universal-nav li:focus {
  background: #6d0019;
}

.universal-resources .universal-nav li:nth-child(n + 5):hover,
.universal-resources .universal-nav li:nth-child(n + 5):focus {
  background: #900f0f;
  outline: 1px solid #fff;
}

.universal-resources .universal-nav li:nth-child(n + 5):hover a,
.universal-resources .universal-nav li:nth-child(n + 5):focus a {
  color: white;
}

.universal-resources .universal-nav li a {
  min-height: 50px;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-weight: 400;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  line-height: 100%;
}

/* primary nav */

.alone-primary-nav {
  order: 1;
  z-index: 900;
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 0;
  display: none;

  background: rgba(255, 255, 255, 0.9);
}

.alone-primary-nav .primary-nav {
  width: 100%;

  background: white;
  border-bottom: 1px solid #900f0f;
}

.alone-primary-nav ul {
  justify-content: space-around;

  background: #fff;
}

.alone-primary-nav li {
  text-align: center;
  display: flex;
}

.alone-primary-nav a {
  position: relative;
  min-height: 60px;
  margin: 0.5em 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  font-size: 1.6em;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}

.alone-primary-nav a::before,
.alone-primary-nav a::after {
  position: absolute;
  height: 14px;
  width: 14px;

  content: "";
  opacity: 0;
  transition: all 0.35s ease;
}

.alone-primary-nav a::before {
  top: 0;
  left: 0;

  border-top: 3px solid #992020;
  border-left: 3px solid #992020;
  transform: translate(-50%, -50%);
}

.alone-primary-nav a:after {
  right: 0;
  bottom: 0;

  border-right: 3px solid #992020;
  border-bottom: 3px solid #992020;
  transform: translate(50%, 50%);
}

.alone-primary-nav a:hover:before,
.alone-primary-nav a:focus:before,
.alone-primary-nav a:hover:after,
.alone-primary-nav a:focus:after {
  color: #333;
  transform: translate(0, 0);
  opacity: 1;
}

.alone-primary-nav a:hover,
.alone-primary-nav a:focus {
  color: #333;
}

.alone-primary-nav.mobile-expand {
  display: flex;
  width: 100%;
}

.alone-primary-nav.mobile-expand li {
  place-content: center;
}

.alone-primary-nav li ul {
  display: none;

  background: #f8f8f8;

  position: absolute;
  top: 100%;
  z-index: 1000;
  min-width: 160px;
  padding: 20px 30px 10px;
}

.alone-primary-nav li ul::before {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
}

.alone-primary-nav li ul a {
  margin: 0 0 10px;
  padding: 0;
  min-height: 1em;
  font-weight: normal;
  text-align: left;
}

.alone-primary-nav li ul a:hover,
.alone-primary-nav li ul a:focus {
  text-decoration: underline;
}

.alone-primary-nav li ul a::before,
.alone-primary-nav li ul a::after {
  display: none;
}

/* The first line should be enough, but the other two lines
are fallbacks in case JS is disabled, doesn't load, or fails */
/* .alone-primary-nav [aria-expanded="true"] ~ ul,
.alone-primary-nav li:focus-within ul,
.alone-primary-nav li:hover ul {
  display: block;
} */

/* Using this instead because the block above doesn't seem to
work with the button toggle */
.alone-primary-nav [aria-expanded="true"] ~ ul {
  display: block;
}

.alone-primary-nav button.dropdown-toggle {
  display: none;
}

/* end alone-primary-nav */

/* experimental masthead */

.experimental-masthead {
  position: relative;
  min-height: 65px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  background: #fff;
  border-bottom: 1px solid #c6c6c6;
}

.experimental-masthead a {
  width: 100%;
  padding: 10px 0;

  color: #353535;
  font-size: 3em;
  font-weight: lighter;
  text-align: center;
  text-decoration: none;
}

.experimental-masthead .buttons {
  width: 100%;
  padding: 10px 8px;
  flex: 1 0 auto;
  align-self: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  text-align: right;
  background: #f5f5f5;
}

.experimental-masthead .buttons .button {
  position: relative;
  width: 100%;
  margin: 5px;
  padding: 6px 12px;
  display: inline-block;

  background-color: #e1e1e1;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  border-color: #d3d3d3;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* end experimental masthead*/

/* end header */

/* headings with brackets */

/* .heading.with-brackets {
  position: relative;
  margin: 0 10px;
  padding: 0.5rem 1.5rem;
}

.heading.with-brackets::before,
.heading.with-brackets::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;

  content: "";
  background-image: url("https://www.ua.edu/new-assets/imgs/brackets.png");
  background-size: cover;
}

.heading.with-brackets::after {
  top: initial;
  right: 0;
  bottom: 0;
  left: initial;

  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
} */

/* end brackets heading **/

/* footer */

footer {
  width: 100%;
}

footer .org-footer {
  max-width: 1400px;
  width: 100%;
  padding: 4rem 0;
  margin: auto;

  border-top: 1px solid #990000;
  color: #5c5f68;
}

footer .org-footer section {
  padding: 2rem;
}

footer .org-footer section > :last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

footer .org-footer h2 {
  display: block;
  width: 100%;
  margin-bottom: 1rem;

  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  text-align: left;
}

footer .org-footer .org-links ul {
  display: block;
}

footer .org-footer .social-links {
  justify-content: left;
}
footer .org-footer .social-links li {
  margin: 0;
}

footer .org-footer a.social-icon {
  text-decoration: none;
}

footer .org-footer a.social-icon {
  display: inline-block;
  margin-right: 0.5rem;
  min-width: 44px;
  min-height: 44px;

  position: relative;

  font-size: 1.25em;
  line-height: 1em;
  color: white;
  text-align: center;
  padding: 0.5em;

  background: #5c5f68;
}

footer .org-footer a.social-icon:hover,
footer .org-footer a.social-icon:focus {
  color: white;
  background: #333;
}

footer .org-footer dl.contact-info dl {
  display: table;
}

footer .org-footer dl.contact-info div {
  display: table-row;

  border-bottom: 1px solid #ddd;
}

footer .org-footer dl.contact-info div:hover {
  background: #f5f5f5;
}

footer .org-footer dl.contact-info dt,
footer .org-footer dl.contact-info dd {
  display: table-cell;
  width: 50%;
  padding: 8px;

  font-size: 0.9rem;

  border-bottom: 1px solid #ddd;
}

footer .org-footer dl.contact-info dt {
  width: 25%;
  padding-left: 0;

  font-weight: bold;
}

/* MAIN FOOTER */

footer .main-footer {
  flex: 0 0 100%;

  background: url("../imgs/brick-bg.jpg");
  background-size: cover;
  border-top: solid 5px #900;
  font-size: 0.9rem;
}

footer .main-footer section {
  flex: 0 0 100%;
}

footer .main-footer .max-width-wrapper {
  max-width: 1400px;
}

footer .footer-nav ul {
  justify-content: flex-end;
}

footer nav li {
  margin: 7px 0;

  line-height: 1.2;
}

footer nav li + li {
  margin-top: 0;
}

footer .campus-links {
  position: relative;
  padding: 2rem 0;
}

footer .campus-links a {
  color: #333;
  text-decoration: none;
}

footer .campus-links nav,
footer .campus-links div {
  flex: 0 0 20%;
  margin-right: 20px;
  padding: 0 20px;
}

footer .campus-links div {
  margin-bottom: 15px;
}

footer .campus-links div nav {
  margin: 0;
  padding: 0;
}

footer .campus-links nav h1 {
  color: #992020;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

footer .campus-links a:focus,
footer .campus-links a:hover {
  text-decoration: underline;
}

footer .campus-links nav ul {
  margin-top: 0;
  flex-direction: column;
}

footer .campus-links .uasystems-logo {
  position: absolute;
  bottom: 0;
  right: 15%;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;

  background: url("../imgs/logos/uasystems-logo.png") center no-repeat;
  background-size: contain;
}

footer .campus-links .uasystems-logo a {
  z-index: 1;
  height: 100%;
  width: 100%;

  text-indent: -9999px;
}

footer .campus-links .denny-chimes {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 250px;
}

/* legal - crimson strip */

footer .legal {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;

  background: #900f0f;
}

footer .legal span {
  display: block;
}

footer .legal a {
  color: #fff;
  text-decoration: none;
}

footer .legal a:focus,
footer .legal a:hover {
  text-decoration: underline;
}

footer .legal img {
  height: 50px;
  height: fit-content;
  width: auto;
  max-width: fit-content;
  margin: 0;
}

footer .legal .copyright-text {
  margin: 10px 0 10px 10px;

  font-size: 0.75em;
  line-height: 1.25;
}

footer .legal .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

  font-size: 0.9rem;
  line-height: 2;
}

footer .legal .legal-links li {
  width: 100%;
  margin-right: 0;
}

@media screen and (min-width: 33.4375em) {
  /* footer .campus-links .uasystems-logo {
    right: 15%;
    left: initial;
  } */

  footer .legal .copyright-text {
    margin: 0 0 0 10px;

    font-size: 0.9em;
  }

  footer .legal .legal-links li {
    width: auto;
    margin-right: 20px;
  }
}

@media screen and (min-width: 48em) {
  footer .org-footer {
    display: flex;
  }
  footer .org-footer section {
    flex: 0 0 33%;
  }
  footer .main-footer .max-width-wrapper {
    margin: 0 auto;
  }

  footer .campus-links {
    display: flex;
  }

  footer .campus-links .uasystems-logo {
    right: 7%;
  }

  footer .campus-links .denny-chimes {
    right: 1%;
  }

  footer .legal {
    padding: 20px;
    display: grid;
    grid-template-columns: auto minmax(auto, 85em) auto;
    align-items: center;
  }

  footer .legal img {
    width: auto;
    grid-column-start: 2;
    grid-row: 1 / -1;
  }

  footer .legal .copyright-text {
    width: 20%;
    margin: 0 0 0 80px;
    grid-column-start: 2;
    grid-row: 1 / -1;
  }

  footer .legal nav {
    width: 70%;
    grid-column-start: 2;
    grid-row: 1 / -1;
    justify-self: end;
  }

  footer .legal .legal-links {
    justify-content: flex-end;
  }

  footer .legal .legal-links li {
    margin: 0 0 0 20px;
  }
}

@media screen and (min-width: 72.5625em) {
  footer .campus-links .uasystems-logo {
    right: 5%;
  }
}

/* LAYOUT & THEME: media queries */

@media screen and (min-width: 20.3125em) {
  .alone-primary-nav li {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 21.8125em) {
  .heading {
    /* These are technically the same, but use both bc of browser support */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    /* Don't use 'break-all' in WebKit, as it breaks things wherever. Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

@media screen and (min-width: 25em) {
  .experimental-masthead .buttons li {
    width: 50%;
  }
}

@media screen and (min-width: 33.4375em) {
  .experimental-masthead .buttons .button {
    width: 48%;
  }

  .alone-primary-nav li {
    flex: 1 1 auto;
  }

  /* footer .campus-links .uasystems-logo {
    right: 15%;
    left: initial;
  } */

  footer .legal .copyright-text {
    margin: 0 0 0 10px;

    font-size: 0.9em;
  }

  footer .legal .legal-links li {
    width: auto;
    margin-right: 20px;
  }
}

@media screen and (min-width: 48em) {
  .brandbar {
    padding: 0 3vw;
  }

  .universal-resources .universal-nav li:nth-child(n + 5),
  .universal-resources .universal-nav li:nth-child(n + 7) {
    width: 25%;
  }

  .experimental-masthead {
    padding: 0 3vw;
  }

  .experimental-masthead a {
    width: auto;
  }

  .experimental-masthead .buttons {
    width: initial;
    justify-content: flex-end;

    background: initial;
  }

  .experimental-masthead .buttons .button {
    width: 25%;
    max-width: 10.5em;
  }

  main > section {
    padding: 4rem 0;
  }

  .top-search-container form {
    flex: 1 0 33%;
  }

  .heading.with-brackets:not(h1)::before {
    margin-left: 10px;
  }

  .heading.with-brackets:not(h1)::after {
    margin-right: 10px;
  }

  .heading.with-brackets {
    padding: 0 3rem;
  }

  .feature-box-lg {
    justify-content: space-between;
  }

  footer.main-footer .max-width-wrapper {
    margin: 0 auto;
  }

  footer .campus-links {
    display: flex;
  }

  footer .campus-links .uasystems-logo {
    right: 7%;
  }

  footer .campus-links .denny-chimes {
    right: 1%;
  }

  footer .legal {
    padding: 20px;
    display: grid;
    grid-template-columns: auto minmax(auto, 85em) auto;
    align-items: center;
  }

  footer .legal img {
    width: auto;
    grid-column-start: 2;
    grid-row: 1 / -1;
  }

  footer .legal .copyright-text {
    width: 20%;
    margin: 0 0 0 80px;
    grid-column-start: 2;
    grid-row: 1 / -1;
  }

  footer .legal nav {
    width: 70%;
    grid-column-start: 2;
    grid-row: 1 / -1;
    justify-self: end;
  }

  footer .legal .legal-links {
    justify-content: flex-end;
  }

  footer .legal .legal-links li {
    margin: 0 0 0 20px;
  }
}

@media (pointer: coarse) and (min-width: 62.5em) {
  .alone-primary-nav button.dropdown-toggle {
    background: transparent;
    /* color: #900; */
    border: 0;
    line-height: 20px;
    padding: 15px;
    display: inline-block;
    font-size: 1.5em;
  }
}

@media screen and (min-width: 67.5625em) {
  .brandbar .ua-logo {
    width: 29vw;

    background-position: 12px center;
  }

  .brandbar .legends-campaign {
    display: flex;
  }

  .brandbar .brandbar-nav li.mybama-link {
    display: initial;
  }

  .alone-primary-nav li {
    flex: 0 0 auto;
  }

  .universal-resources {
    order: 0;
    width: 100%;
    display: none;

    background: #353535;
    color: white;
  }

  .universal-resources .universal-nav li {
    padding: 0;
  }

  .universal-resources .universal-nav li:nth-child(n + 5),
  .universal-resources .universal-nav li:nth-child(n + 7) {
    width: auto;
    padding: 0;
  }
}

@media screen and (max-width: 72.5em) {
  .universal-resources.universal-nav-active {
    order: 2;
    width: 100%;
  }
}

@media screen and (min-width: 72.5625em) {
  .universal-resources .universal-nav {
    background: #900f0f;
    background-image: linear-gradient(
      to right,
      hsl(0, 81%, 31%) 40%,
      hsl(100, 100%, 100%) 10%
    );
    border-bottom: 1px solid #990000;
  }

  .universal-resources .universal-nav ul {
    padding: 0 3vw;
    flex-wrap: nowrap;
    justify-content: space-between;

    background: none;
  }

  .universal-resources .universal-nav li {
    background: initial;
    transform: skew(-20deg);
  }

  .universal-resources .universal-nav ul li:nth-of-type(-n + 4) {
    width: auto;
  }

  .universal-resources .universal-nav li:nth-child(n + 5),
  .universal-resources .universal-nav li:nth-child(n + 7) {
    background: #fff;
  }

  .universal-resources .universal-nav li a {
    min-height: 66px;
    padding: 0 20px;

    transform: skew(20deg);
  }

  .universal-resources .universal-nav li:nth-child(n + 5) a {
    color: #900f0f;
  }

  .alone-primary-nav {
    display: flex;
    order: 10;
  }

  footer .campus-links .uasystems-logo {
    right: 5%;
  }
}

/* MODULE */
/* all the component styles here. */

/* alert box */

.alert {
  z-index: 5;
  position: relative;
  width: 100%;
  padding: 15px;

  background-color: #fcf8e3;
  border: 1px solid transparent;
  border-color: #faebcc;
  color: #000;
}

.alert .title {
  margin: 0;

  color: #000;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-align: left;
  text-transform: none;
  line-height: 1.46666667;
}

.alert p {
  margin: 0;
}

/* end alert */

/* button */

.button {
  padding: 6px 12px;
  margin: 20px 0;
  display: inline-block;

  background-color: #992020;
  border: 1px solid #c6c6c6;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.button:hover {
  background-color: #681313;
  border-color: #681313;
}

/* end button */

/* hero */

/* Default rules */

/* Max width prevents infinite stretch on ultrawides.
Value chosen is larger than 1920p displays */
/* Min and Max height are both arbitrary values that prevent
infinite stretch on short and tall displays respectivly. */

.hero {
  display: grid;
  width: 100%;
  max-width: 1400px;
  max-height: 900px;
  min-height: 500px;
  margin: auto;
  padding: 1.5rem; /* Should equal content padding */

  font-size: 1rem;

  height: 80vh;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "hero-upper-space hero-image"
    "hero-title hero-image"
    "hero-content hero-image"
    "hero-lower-space hero-image";
  align-content: center;
}

.hero .hero-image {
  object-fit: cover;
  grid-area: hero-image;
  height: calc(80vh - 3rem); /* height of the hero, minus padding */
  max-height: calc(700px - 3rem); /* max height of hero minus padding */
  min-height: calc(500px - 3rem); /* min height of hero minus padding */
  margin-left: 1.5rem;
  width: calc(100% - 1.5rem); /* remove left margin from width */
}

.hero .hero-title {
  grid-area: hero-title;

  font-size: 5rem;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: -0.05ch;

  text-transform: none;
  text-align: left;
}

.hero .hero-content {
  grid-area: hero-content;
  padding-top: 1.5rem;
}

/* Handle vertical alignment of text content */
.hero .hero-content,
.hero .hero-title {
  margin: auto;
  width: 100%;
  max-width: 600px;
}

.hero .hero-links {
  padding: 0;

  list-style: none;
}

.hero .hero-links li {
  margin-bottom: 0.5em;
  list-style: none;
}

.hero .hero-links a {
  text-decoration: none;
  font-weight: bold;
}

.hero .hero-links a::after {
  content: " →";
  text-decoration: none;
  font-weight: bold;
}

/* Copied from link button */

.hero .button {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;

  display: inline-block;
  margin: auto;
  margin-top: 1.5rem;
  padding: 15px;

  background-color: #992020;
  border: 1px solid #c6c6c6;
  color: #fff;

  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1.15;
  list-style: none;
}

.hero .button:hover,
.hero .button:focus {
  background-color: #681313;
  border-color: #681313;
}

/* Overrides from wilson.css */

.hero {
  position: static;
  height: auto;
}

.hero .hero-image {
  position: static;
}

/* end hero */

/* internal page nav */

.internal-page-nav {
  position: relative;
  width: 100%;

  background: #333;
  text-transform: uppercase;
}

.internal-page-nav ul {
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;

  color: #fff;
  text-align: center;
  list-style: none;
  overflow-x: scroll;
  overflow-y: hidden;
}

.internal-page-nav ul::before {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20px;

  content: "";
  background: linear-gradient(to left, transparent 20%, #333333);
}

.internal-page-nav ul::after {
  z-index: 5;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;

  content: "";
  background: linear-gradient(to right, transparent 20%, #333333);
}

.internal-page-nav li {
  position: relative;
  margin: 0 15px;
  display: flex;
  flex: 1 0 70%;
  justify-content: center;
  align-items: center;
}

.internal-page-nav a {
  padding: 5px 10px;

  color: #fff;
  text-decoration: none;
}

/* end internal page nav */

/* section feature nav */

.feature-nav {
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 0;
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  color: #fff;
  text-align: center;
  text-transform: uppercase;
  list-style: none;
}

.feature-nav li {
  position: relative;
  flex: 1 0 100%;
  padding: 1rem 0;

  list-style: none;
}

.feature-nav li:not(:last-of-type):before {
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 50px;
  height: 1px;
  display: block;

  content: "";
  background: #eee;
  text-align: center;
}

.feature-nav a {
  position: relative;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 1.25em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.feature-nav a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  display: block;

  content: "";
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.feature-nav a:hover:after,
.feature-nav a:focus:after {
  left: 3%;
  width: 90%;
}

/* end section feature nav */

/* side panel nav */

.side-nav {
  width: 100%;
  padding-right: 1rem;
}

.side-nav > ul {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.side-nav > ul > li {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;

  background: #f8f8f8;
}

.side-nav > ul > li:hover {
  height: initial;

  background: #f3f3f3;
}

.side-nav > ul > li > a {
  z-index: 1;
  width: 100%;
  padding: 12px 15px;

  border-radius: 0;
  border-left: 3px solid #ae0000;
  color: #3d3d3d;
  text-decoration: none;
  text-align: left;
}

.side-nav a:hover {
  background: #f3f3f3;
  border-color: #000;
  outline: 1px dotted #000;
  outline-offset: -1px;
  text-decoration: none;
}

.side-nav > ul > li > a:focus {
  background: #f3f3f3;
  text-decoration: none;
}

.side-nav > ul {
  position: relative;
}

.side-nav ul ul {
  width: 100%;
  background-color: #f8f8f8;
}

.side-nav ul ul li {
  width: 100%;
  display: flex;
  align-items: center;

  background-color: transparent;
}

.side-nav button {
  width: 100%;
  padding: 12px 20px 12px 15px;
  display: flex;
  align-items: center;

  background-color: transparent;
  border: none; /* reset built-in border style */
  border-radius: 0;
  border-left: 3px solid #ae0000;
  color: #3d3d3d;
  text-align: left;
}

.side-nav button::before {
  position: absolute;
  right: 0;
  padding: 10px;

  transform: rotate(90deg);
}

.side-nav button:hover {
  outline: 1px dotted #000;
  outline-offset: -1px;
  cursor: pointer;
  background: #f3f3f3;
  border-color: #000;
}

.side-nav ul ul li a {
  height: 100%;
  width: 100%;
  padding: 12px 15px 12px 35px;
  display: flex;
  align-items: center;

  border-left: 3px solid #ddd;
  color: #3d3d3d;
  text-decoration: none;
  text-align: left;
}

/* collapse */

.side-nav .collapse ul {
  display: none;
}

.side-nav .collapse button::before {
  transform: none;
}

/* end collapse */

/* end side panel nav */

.section-header {
  flex: 0 0 100%;
  justify-content: center;
}

/* feature box */

.feature-box-wrapper {
  width: 100%;
  padding: 0;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;

  list-style: none;
}

.feature-box-wrapper li {
  flex: 0 0 100%;

  list-style: none;
}

.feature-box {
  position: relative;
  margin: 20px 0;
  padding: 0 10px;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.feature-box:hover,
.feature-box:focus {
  cursor: pointer;
}

.feature-box a {
  margin: 24px 0 16px;
  display: block;

  color: #900f09;
  text-decoration: none;
}

.feature-box a:focus,
.feature-box a:hover {
  text-decoration: underline;
}

.feature-box img {
  order: -1;
  width: 100%;
}

.feature-box p {
  margin: 0;
}

.feature-box .icon-box {
  position: absolute;
  top: 5px;
  right: 20px;
}

.feature-box .icon-box::before {
  position: absolute;
  top: 0;
  right: -5px;
  height: 30px;
  width: 30px;

  content: "";
  background: #fff;
}

.feature-box .icon-box .fa-arrow-up {
  height: 100%;
  width: 100%;
}

.feature-box .icon-box .fa-arrow-up::before {
  display: inline-block;

  color: #990f0f;
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 20px;
  font-style: normal;
  text-decoration: inherit;
  transform: rotate(45deg);
}

/* end feature box */

/* forms */
/* Example

layout/positioning/structure styles first,
line break,
then themeing/visual styles

.hero {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;

    color: white;
    border: 1px solid white;
}

be specific in your use of the cascade,
making sure your styles are contained
within your largest containing structural class.
In this case that's .hero.

.hero header {
    display: inline-block;

    font-size: 2.4em;
}
*/

.slate-form-section {
  padding: 5rem 2rem 8rem;
  background: #f5f5f5;
}
.slate-form-section .description {
  max-width: 1000px;
  width: 90%;
  margin: 1rem auto;

  font-size: 1.5em;
  text-align: center;
}
.slate-form-section .slate-form {
  margin-top: 3rem;
}

form .beekeeper {
  display: none !important;
}

form label {
  display: inline-block;
  margin-bottom: 5px;
}

form label[for] {
  cursor: pointer;
}

form legend {
  display: block;
  margin-bottom: 5px;
}

form label,
form legend {
  font-weight: bold;
  background-color: transparent;
}

form fieldset {
  padding: 0;
  border: 0;
  margin-bottom: 15px;
}

form .form-item {
  margin-bottom: 15px;
}

/* Normalize fonts, sizes, and borders */
form button,
form input,
form select,
form textarea,
form datalist {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;

  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0;
}

/* Normalize input width */
form input,
form select,
form textarea,
form datalist {
  width: 100%;
}

form textarea {
  resize: vertical;
  min-height: 10em;
}

form .form-item.required label {
  position: relative;
}
form .form-item.required label::after {
  content: " *";
  color: #992020;
}

form input[disabled],
form select[disabled],
form textarea[disabled] {
  color: #999;
  background: #eee;
}

form ::-moz-placeholder {
  color: #999;
  opacity: 1;
}
form :-ms-input-placeholder {
  color: #999;
}
form ::-webkit-input-placeholder {
  color: #999;
}

/* form :invalid,
form .error {
	border-color: #992020;
} */

form .error,
form .error-message {
  color: #992020;
}

form .error-message {
  margin-top: 5px;
}

@supports (appearance: none) or (-moz-appearance: none) or
  (-webkit-appearance: none) {
  form input[type="checkbox"],
  form input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    top: -0.1em;

    width: 1em;
    height: 1em;
    padding: 0;
    margin: 0;
    margin-right: 1em;
    vertical-align: middle;

    border-radius: 0;
    transition: box-shadow 0.1s ease;

    background: white;
  }

  form input[type="checkbox"]:checked,
  form input[type="radio"]:checked {
    box-shadow: inset 0 0 0 0.25em #992020;
    border-color: #992020;
  }

  form input[type="radio"] {
    border-radius: 50%;
  }
}

/* Remove increment/decrement buttons from number fields */
form input[type="number"]::-webkit-inner-spin-button,
form input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}
form input[type="number"] {
  -moz-appearance: textfield;
}

/* Hide the default arrow icon and implement a custom one */
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* hides the native UI */

  padding-right: 1em; /* prevents input text from running into background image */

  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8" fill="none" stroke="black"><path d="M7.5 3L4 6 .5 3"/></svg>');
  background-size: 0.7em;
  background-repeat: no-repeat;
  background-position: right 0.8em center;
}

/* Remove the chrome cancel button */
form input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

/* Normalize progress bar */
form progress[value] {
  -webkit-appearance: none;

  display: block;
  width: 100%;
  margin-bottom: 10px;

  border: 0;
  background-color: #ccc;
}

form progress[value]::-webkit-progress-bar {
  background-color: #ccc;
}

form progress[value]::-webkit-progress-value {
  background: #992020;
}
form progress[value]::-moz-progress-bar {
  background: #992020;
}

form input[type="range"],
form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  padding: 0;

  font-size: 1rem;
  border: none;
}

/* Track Styles */
form input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;

  border: none;
  border-radius: 0;
  background-color: #ccc;
}
form input[type="range"]::-moz-range-track {
  height: 5px;

  border: none;
  border-radius: 0;
  background-color: #ccc;
}

/* Thumb Styles */
form input[type="range"]::-webkit-slider-thumb {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.5rem;

  border: 2px solid white;
  border-radius: 1000rem;
  background: #333333;
}
form input[type="range"]::-moz-range-thumb {
  font-size: 1.2rem;

  border: 2px solid white;
  border-radius: 1000rem;
  background: #333333;
}

form input[type="range"]:focus,
form input[type="range"]:active {
  outline: none;
}

form input[type="range"]:focus::-moz-range-thumb,
form input[type="range"]:active::-moz-range-thumb {
  background: #992020;
}

form input[type="range"]:focus::-webkit-slider-thumb,
form input[type="range"]:active::-webkit-slider-thumb {
  background: #992020;
}

form input[type="range"][disabled]::-webkit-slider-thumb {
  background: #ccc;
}
form input[type="range"][disabled]::-moz-range-thumb {
  background: #ccc;
}
form input[type="range"][disabled]::-moz-range-track {
  background: #eee;
}
form input[type="range"][disabled]::-webkit-slider-runnable-track {
  background: #eee;
}

form input[type="range"] + output {
  margin-left: 5px;
}

form button,
form .button {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;

  display: inline-block;
  margin: auto;
  padding: 15px;

  background-color: #992020;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  color: #fff;

  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

form button:hover,
form button:focus,
form .button:hover,
form .button:focus {
  color: white;
  background-color: #681313;
  border-color: #681313;
}

form button[disabled],
form .button[disabled] {
  background-color: #eee;
  color: #999;
  border-color: #ccc;
}

form .input-group {
  display: flex;
}

form .input-group span.input-addon {
  display: block;
  border: 1px solid #ccc;
  background-color: #e1e1e1;
  color: black;
}

form .input-group .input-addon,
form .input-group input,
form .input-group select,
form .input-group textarea,
form .input-group datalist {
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}

form .input-group > :first-child,
form .input-group > button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

form .input-group > :last-child,
form .input-group > button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

form .input-group > .input-addon:first-child {
  border-right: 0;
}
form .input-group > .input-addon:last-child {
  border-left: 0;
}

/* end forms */

/* brag */

.stats {
  min-height: 700px;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: url("../assets/imgs/elephant_ol-again-1.jpg");
  background-position: center;
  background-size: cover;
  border-top: 1px solid #666;
  border-bottom: 1px solid #f5f5f5;
}

.stats .brag {
  z-index: 5;
  width: 100%;
  padding: 0;

  color: #333;
  font-family: soleil, sans-serif;
  font-size: 2.75rem;
  text-align: center;
  text-transform: uppercase;
}

.stats .brag b {
  color: #990f0f;
  font-style: initial;
  font-weight: 100;
}

.stats .stats-wrapper {
  width: 100%;
  margin-top: 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  text-align: center;
  list-style: none;

  /* For Flip Cards */
  position: relative;
  perspective: 800px;
  -webkit-perspective: 800px;
  -o-perspective: 800px;
  -moz-perspective: 800px;
}

.stats .stats-wrapper .card-container {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 500px;
  margin: 10px;

  list-style: none;
  perspective: 800px;
  -webkit-perspective: 800px;
  -o-perspective: 800px;
  -moz-perspective: 800px;
}

.stats .stats-wrapper .card {
  position: relative;
  height: 350px;
  min-height: 350px;

  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transition: transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
}

.stats .stats-wrapper .card .front,
.stats .stats-wrapper .card .back {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-position: center;
  background-size: cover;
  opacity: 1;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -o-backface-visibility: hidden;
}

.stats .stats-wrapper .card .front {
  padding: 2rem;
  justify-content: center;

  overflow: hidden;
  background-size: cover;
}

.stats .stats-wrapper .card:hover .front,
.stats .stats-wrapper .card:focus .front,
.stats .stats-wrapper .card:active .front {
  margin-top: -1px;

  border: 1px solid #333;
  cursor: pointer;
}

.stats .stats-wrapper .card .back {
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #fff;
  border: 1px solid #992020;
  /*Following add to fix text clipping flash animation bug on firefox and flashing text on chrome*/
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  /*End bug fix*/
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.stats .stats-wrapper .card .stat-number {
  margin: 0;

  color: #900f09;
  font-family: canada-type-gibson, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

.stats .stats-wrapper .card p:not(.stat-number) {
  max-width: 90%;
  margin: 0;

  font-size: 1.5rem;
  text-align: center;
}

.stats .stats-wrapper .card .back p {
  font-size: 1.25rem;
  text-align: left;
  /*Following add to fix text clipping flash animation bug on firefox and flashing text on chrome*/
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  /*End bug fix*/
}

.stats .stats-wrapper .card .back .info-link-simple {
  position: relative;
  width: fit-content;
  padding: 0.5em;
  align-self: flex-end;

  background: none;
  border: none;
  color: #992020;
  font: inherit;
  font-size: 0.9em;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
}

.stats .stats-wrapper .card .back .card-close {
  width: 30px;
  padding: 2px;

  background: none;
  border: none;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -o-backface-visibility: hidden;
}

.stats .stats-wrapper .card .back .card-close img {
  width: 100%;
}

.stats .stats-wrapper .card:hover .back .card-close,
.stats .stats-wrapper .card:focus .back .card-close,
.stats .stats-wrapper .card:hover .back .info-link-simple,
.stats .stats-wrapper .card:focus .back .info-link-simple {
  cursor: pointer;
}

.stats .stats-wrapper .card.flip {
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.stats .stats-wrapper .card .back .card-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
}

@-webkit-keyframes flashflip {
  0% {
    opacity: 0;
    -webkit-transform: rotatey(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotatey(+180deg);
  }
}

/* end brag */

/* Stat Block */

.stat .num {
  display: block;

  font-family: canada-type-gibson, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  font-style: normal;
  font-size: 3em;
  line-height: 1;
  text-transform: uppercase;

  margin-bottom: 1rem;

  color: #992020;
}

/* Stat List */

.stat-list {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;

  margin: 0;
  padding: 0;

  list-style: none;
  text-align: center;
}

.stat-list li {
  list-style: none;

  flex-grow: 1;
  max-width: 350px;
  flex-basis: 33%;
}

.stat-list .stat .num {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.stat-list .stat p {
  display: block;
  font-size: inherit;
  text-align: center;
}

.stat-list .stat::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;

  margin: auto;
  margin-top: 1em;

  background-color: #992020;
}

/* Stat Section */

.stat-section {
  width: 100%;
  max-width: 1400px;
  margin: 6.5rem auto;
}

.stat-section h2 {
  margin-bottom: 4rem;
}

/* End Stats */

/* bold */

.bold {
  position: relative;
  min-height: 600px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: canada-type-gibson, sans-serif;
}

.bold h2 {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  margin: 1rem 0;
  justify-self: center;
  align-self: center;

  color: #fff;
  font-family: canada-type-gibson, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.bold h2 span {
  color: #992200;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.43);
}

.bold .cta {
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  min-height: 59px;
  /*max-height: 59px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  background-color: #992020;
  border: 3px solid #840909;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bold .cta:focus {
  text-decoration: underline;
}

.bold .cta:hover,
.bold .cta:focus {
  background-color: #840909;
  text-decoration: none;
}

/* end bold */

/* info-guide */

.info-guide {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #fff;
}

.info-guide .section-header h2 {
  display: block;
  width: 100%;
}

.info-guide .section-header .description {
  margin: 0 auto;
  padding: 20px 10px;

  font-size: 1.25em;
  text-align: center;
}

.info-guide .section-header .description:empty {
  display: none;
}

.info-guide .content {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1em;
}

.info-guide .content .media {
  width: 100%;
  margin: 40px 0;
  padding: 0 10px;
}

.info-guide .content .copy-main {
  padding: 0 10px;
}

.info-guide .content .copy-main p {
  margin: 20px 0;

  font-size: 1.25rem;
}

.info-guide .content .copy-main p:first-of-type {
  margin-top: 0;
}

/* end info-guide */

/* sections with links */

.with-links .link-wrapper,
.highlight .link-wrapper {
  width: 100%;
  padding: 4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.with-links .link-wrapper .info-link,
.highlight .link-wrapper .info-link {
  min-width: 200px;
  max-width: 450px;
  margin: 0 10px;

  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  list-style: none;
}

.with-links .link-wrapper .info-link.stack,
.highlight .link-wrapper .info-link.stack {
  margin-top: 20px;
}

.with-links .link-wrapper .info-link:hover,
.with-links .link-wrapper .info-link:focus,
.highlight .link-wrapper .info-link:hover,
.highlight .link-wrapper .info-link:focus {
  background: #990f0f;
}

.with-links .link-wrapper .info-link a,
.highlight .link-wrapper .info-link a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 15px;

  border: 3px solid #900f09;
  color: #900f09;
  text-decoration: none;
  line-height: 1.15;
}

.with-links .link-wrapper .info-link a:hover,
.with-links .link-wrapper .info-link a:focus,
.highlight .link-wrapper .info-link a:hover,
.highlight .link-wrapper .info-link a:focus {
  background: #990f0f;
  color: #fff;
}

/* end section links */

/* highlight sections */
.highlight {
  position: relative;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; */

  color: #fff;
  padding: 1em;
}

.highlight h2 {
  width: 100%;

  color: #fff;
}

.highlight .description {
  font-size: 1.5em;
  max-width: 1000px;
  width: 90%;
  text-align: center;
}

.highlight .content {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.highlight .content .media {
  width: 100%;
  margin: 40px 0;
  padding: 0 10px;
}

.highlight .content .copy-main {
  flex: 0 0 100%;
  padding: 20px 10px;
}

.highlight .content .copy-main p {
  margin: 20px 0;

  font-size: 1.25rem;
}

.highlight .content .copy-main p:first-of-type {
  margin-top: 0;
}

.highlight .content .copy-main p a {
  color: #fff;
}

.highlight .content .copy-main p a:hover,
.highlight .content .copy-main p a:focus {
  color: #969696;
}

.highlight .link-wrapper .info-link a {
  color: #fff;
  border: 3px solid #fff;
}

.highlight .link-wrapper .info-link a:hover,
.highlight .link-wrapper .info-link a:focus {
  background: #fff;
  color: #990f0f;
}

/* end feature */

/* Event Feed */

.event-feed {
  padding: 6.5rem 1.5rem;
  background: #f5f5f5;
}

.event-feed h2,
.event-feed h2.heading {
  margin: auto;
  margin-bottom: 6.5rem;
  margin-top: 0;

  text-align: center;
}

.event-feed .event-list {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
}

.event-feed .event-list li {
  padding: 1.5rem;
  margin: 0.75rem;
  min-width: 15.625em;

  background: #eeeeee;
  border: 1px solid #d7d7d7;
  flex: 1;
  list-style: none;
}

.event-feed .event {
  display: grid;
  grid-template-areas: "date" "title" "time" "location";
  font-size: 1rem;
}

.event-feed .event-name,
.event-feed .event-month-date,
.event-feed .event-time,
.event-feed .event-location {
  margin: 0;
}

.event-feed .event-name {
  grid-area: title;
}
.event-feed .event-month-date {
  grid-area: date;
}
.event-feed .event-time {
  grid-area: time;
}
.event-feed .event-location {
  grid-area: location;
}

.event-feed .event-date {
  display: block;
  margin-bottom: 1.5rem;

  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  color: #992020;
}

.event-feed .event-name {
  margin-bottom: 0.75rem;
}

.event-feed .event-name a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.event-feed .event-name a:hover {
  text-decoration: underline;
}

.event-feed .event-location,
.event-feed .event-time {
  position: relative;
  padding-left: 1.5em;
}

.event-feed .event-location::before,
.event-feed .event-time::before {
  content: "";
  height: 1.5em;
  width: 1em;
  position: absolute;
  left: 0;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.event-feed .event-location::before {
  background-image: url("../imgs/loc-icon.png");
}

.event-feed .event-time::before {
  background-image: url("../imgs/clock-icon.png");
}

.event-feed .button {
  display: block;
  height: 100%;
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  margin: auto;
  margin-top: 4rem;
  padding: 15px;

  background: transparent;
  border: 3px solid #990f0f;
  color: #900f09;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1.15;
  list-style: none;
}

.event-feed .button:hover,
.event-feed .button:focus {
  background: #990f0f;
  color: #fff;
}

/* End event feed */

/* Start List Block */

.list-box {
  columns: auto 1;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.list-box li {
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  break-inside: avoid; /* IE 10+ */

  padding: 0;
  margin: 0;

  list-style: none;
}

.list-box li a {
  display: block;
  padding: 0.75em;
  margin-top: -1px; /* Correct for double border */

  border: 1px solid #ccc;
  text-decoration: none;
}

.list-box li a:hover {
  background-color: #f5f5f5;
}

.list-box li a .fa {
  margin-right: 0.5em;
}

/* CONTEXTS */

.list-box-section {
  padding: 6.5rem 1.5rem;
}

.list-box-section .description {
  margin: 1em auto 2em;
  max-width: 1000px;

  font-size: 1.5em;
  text-align: center;
}

.list-box-section .list-box {
  columns: auto 3;
}

.third .content .list-box {
  columns: auto 2;
  padding: 0;
}

/* End List Block */

/* Start People Directory */

section.people-directory {
  padding: 4rem 1rem;
}

.people-directory .heading {
  margin-bottom: 4rem;
}

.people-list,
.people-list li {
  list-style: none;
}

.people-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75em, 1fr));
  grid-gap: 1.5rem;
}

.people-list li {
  background: #f5f5f5;
}

.people-list .person {
  display: grid;
  grid-template-rows: min-content min-content 1fr min-content;

  height: 100%;
  padding: 1rem;
}

.people-list .person img {
  display: block;
  grid-row: 1;

  width: calc(100% + 2rem);
  margin: -1rem 0 1rem -1rem;
}

.people-list .person .name {
  grid-row: 2;

  font-weight: bold;
  margin: 0;
}

.people-list .person .title {
  grid-row: 3;

  margin: 0;

  font-size: 85%;
  font-weight: normal;
}

.people-list .person p,
.people-list .person .contact {
  grid-row: 4;

  margin: 0;
  margin-top: 1rem;
}

.people-list .person .contact ~ p {
  grid-row: 5;
}

.people-list .person .contact dt,
.people-list .person .contact dd {
  display: inline;
  margin: 0;
}
.people-list .person .contact dt {
  font-weight: bold;
}
.people-list .person .contact dt::after {
  content: ":";
}

.third .content ul.people-list {
  padding: 0;
  margin: 0;

  grid-template-columns: repeat(auto-fit, minmax(12.5em, 1fr));
}

.third .people-list .person img {
  margin: -1rem 0 1rem -1rem;
}

.third .people-list .person .contact dt,
.third .people-list .person .contact dd {
  display: block;
}

.third .people-list .person .contact dt {
  font-size: 85%;
}

.third .people-list .person p {
  margin: 0;
  margin-top: 1rem;
}

/* End People Directory */

/* Start Video Section */

.video-section {
  padding: 5rem 2rem 8rem;

  background: #333333;
  color: white;
}

.video-section .heading {
  color: white;
}

.video-section .description {
  max-width: 1000px;
  width: 90%;
  margin: 1rem auto;

  font-size: 1.5em;
  text-align: center;
  color: white;
}

.video-section figure div {
  display: block;
  position: relative;
  padding-top: 56.25%; /*16:9*/
  height: 0;
  max-width: 100%;
  width: 100%;
  margin-top: 40px;
}

.video-section figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section figure figcaption {
  margin-top: 1rem;
  text-align: center;
  color: #e1e1e1;
}

/* End Video Section */

/* Start Tabs Area */
.third .tab-area {
  margin-bottom: 1.5rem;
}

.third .tab-area [role="tablist"] {
  display: flex;
  margin: 0;

  list-style: none;
}

.third .tab-area [role="tab"] {
  margin-bottom: -1px;
  padding: 10px 15px;

  border: 1px solid transparent;
  border-top: 3px solid transparent;
  background: white;
  border-bottom-color: #ddd;
  color: #900;
  cursor: pointer;
}

.third .tab-area [role="tab"]:hover,
.third .tab-area [role="tab"]:focus {
  background: #f8f8f8;
  color: #900;
  border-color: #3d3d3d #eee #ddd #eee;
}

.third .tab-area [role="tab"][aria-selected="true"] {
  background: #fff;
  border-color: #ae0000 #ddd transparent #ddd;
  color: #555;
}

.third .tab-area [role="tabpanel"] {
  display: none;
  padding: 15px;

  border: 1px solid #ddd;
}

.third .tab-area [role="tabpanel"][aria-expanded="true"] {
  display: block;
}

.third .tab-area [role="tabpanel"] ol,
.third .tab-area [role="tabpanel"] ul {
  margin-bottom: 1.5rem;
}

.third .tab-area [role="tabpanel"] h2,
.third .tab-area [role="tabpanel"] h3 {
  margin-top: 0;
}

.third .tab-area [role="tabpanel"] img {
  max-width: 100%;
}

.third .tab-area [role="tabpanel"] :last-child {
  margin-bottom: 0;
}

/* End Tabs Area */

/* media */

#media {
  background: #f5f5f5;
}

/* tabs */
#media .tabs {
  width: fit-content;
  margin: 20px auto 40px;
  padding: 0;
  display: flex;
  justify-content: center;
}

#media .tabs li {
  list-style: none;
}

#media .tabs li a {
  padding: 0.5rem 1rem;
  display: block;
}

#media .tabs li a,
#media .tabs li.active a {
  position: relative;
  display: inline-block;

  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
}

#media .tabs li a:hover:after,
#media .tabs li a:focus:after {
  background: #333;
}

#media .tabs li.active a::after,
#media .tabs li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  display: block;

  content: "";
  background: #992f0f;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

#media .tabs li a:hover:after,
#media .tabs li a:focus:after,
#media .tabs li.active a::after {
  left: 5%;
  width: 90%;
}

/* end tabs */

#media .views > :not(.active) {
  display: none;
}

#media .views {
  min-height: 620px;
  display: flex;
  align-items: center;
}

#media .views .view {
  width: 100%;
}

#media .view img {
  width: 100%;
}

#media a {
  height: 100%;
  width: 100%;
  display: block;

  color: #333;
  font-family: "open sans", sans-serif;
  text-decoration: none;
}

#media a:focus,
#media a:hover {
  text-decoration: underline;
}

/* news */

#news-view {
  display: flex;
  flex-wrap: wrap;
}

.news-article {
  list-style: none;
}

#news-view .news-article:not(.featured) {
  position: relative;
  padding: 1.5rem 0;
}

#news-view .news-article::before {
  position: absolute;
  top: 0;
  left: 15%;
  height: 1px;
  width: 70%;
  display: block;

  content: "";
  background: #ddd;
}

#news-view .featured {
  display: flex;
  flex-wrap: wrap;
}

#news-view .news-article.featured::before,
#news-view .news-article:nth-child(2)::before {
  display: none;
}

#news-view .featured .feature-box {
  position: relative;
  margin: 0;
  padding: 0 10px;
}

#news-view .featured h3 {
  width: 100%;
  padding: 10px;

  background: rgba(151, 32, 32, 0.9);
  color: #fff;
  font-size: 1.75rem;
  text-transform: none;
  line-height: 1.2;
}

#news-view h3 {
  color: #333;
}

#news-view h3 span {
  position: initial;
  display: block;

  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
}

#news-view .feature-box span::before {
  display: none;
}

#news-view .featured h3 span {
  color: #fff;
}

#news-view a {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

  color: rgb(153, 15, 15);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: none;
}

#news-view .featured a {
  display: initial;

  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}

#news-view .feature-box {
  margin: 0;
}

/* end new view */

/* events view */

#events-view {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
}

#events-view .event {
  flex: 0 0 100%;
  padding: 0 10px;
}

#events-view .event-box {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #eee;
  border: 1px solid #d7d7d7;
  text-align: center;
}

#events-view .event-image {
  height: 100%;
  display: none;
}

#events-view .event-box .event-date {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid #d7d7d7;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

#events-view .event-box .event-date span {
  display: block;

  color: rgb(153, 15, 15);
  font-family: canada-type-gibson, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
}

#events-view .event-box .event-details {
  flex: 0 0 72%;
  padding-left: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;

  font-size: 0.75rem;
  text-align: left;
}

#events-view .event-box .event-details h3 {
  margin-top: 10px;

  font-size: 1.25em;
  font-weight: bold;
  text-transform: none;
}

#events-view .event-box .event-details span {
  font-size: 1rem;
}

#events-view .event-box .event-details img {
  width: 14px;
  margin: 2px 5px 0 0;
}

/* end events view */

/* social view */

#social-view {
  min-height: 620px;
  margin: 0;
  padding: 0;
}

#social-view .featured {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;

  background: url("../assets/imgs/social-aerial-1.jpg") no-repeat;
  background-size: cover;
  line-height: 1;
}

#social-view .featured .title {
  z-index: 5;
  margin-bottom: 0;

  color: #fff;
  font-family: canada-type-gibson, sans-serif;
  font-weight: bold;
  font-size: 3.35rem;
  text-align: center;
}

#social-view .featured .social-icon {
  z-index: 5;

  list-style: none;
}

#social-view .ig-teasers {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#social-view .ig-teasers li {
  flex: 0 0 50%;
}

#social-view .ig-teasers figure {
  position: relative;
  height: 100%;
  margin: 0;
}

#social-view .ig-teasers .social-image {
  position: relative;
  height: 100%;
}

#social-view .ig-teasers .social-image::after {
  position: absolute;
  height: 90%;
  width: 90%;
  margin: 0 auto;
  display: block;

  content: "";
  border: 1px solid #fff;
}

#social-view .ig-teasers .ig-icon {
  z-index: 10;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
}

#social-view .ig-teasers figure figcaption {
  display: none;
}

/* end social view */

/* cta */

#media .cta-wrapper {
  width: 100%;
  padding: 3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#media button:not(.simple) {
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  margin: 1rem 0rem 0.5rem;

  background: transparent;
  border: 3px solid #990f0f;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#media .info-link:hover,
#media .info-link:focus {
  background: #990f0f;
}

#media .info-link a {
  padding: 15px;
  height: 100%;
  width: 100%;
  display: block;

  color: #900f09;
  text-decoration: none;
}

#media .info-link a:hover,
#media .info-link a:focus {
  color: #fff;
}

#media .sr-only {
  display: none;
}

#media .social-wrapper {
  width: 100%;
  padding-bottom: 0;
}

#media .social-icons {
  padding: 1rem 0;
  display: flex;
  justify-content: center;

  list-style: none;
}

#media .social-icons img {
  width: 38px;
  margin: 0.25rem;
  padding: 0;
}
/* end cta */

/* end media*/

/** -----------------------------------------------------------------
  * SECTION NEWS
------------------------------------------------------------------ */

/* Fix body flex direction */
/* REVIEW - this should probably be added to the body in general?
 * I know this bug is also present in some of the CC stuff, and
 * potentially the third level page in some situations */

body.news-post,
body.post-type-archive-news {
  flex-direction: column;
}

/* Establish page sizes and minimum layout */

.news-post main,
.news-post aside,
.post-type-archive-news main {
  width: 100%;
  max-width: 55rem;
  margin: 5rem auto;
  display: block;
  padding: 0 2rem;
}

/* Reset default heading styles */

.news-post h1,
.news-post h2,
.news-post h3,
.post-type-archive-news h1,
.post-type-archive-news h2,
.post-type-archive-news h3 {
  display: block;
  width: 100%;
  text-align: left;
  text-transform: none;
}

/* Establish typography */
/* Specificity added to override guidepost default font sizes */

.news-post main h1,
.news-post aside h1,
.post-type-archive-news main h1 {
  font-size: 4rem;
  margin: 2rem 0 2rem;
  line-height: 1;
}

.post-type-archive-news main h1 {
  margin-bottom: 5rem;
}

.news-post main h2,
.news-post aside h2,
.post-type-archive-news main h2 {
  font-size: 3rem;
  margin: 2rem 0 1rem;
}

.news-post main h3,
.news-post aside h3,
.post-type-archive-news main h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

/** -----------------------------------------------------------------
  * SECTION NEWS LIST
------------------------------------------------------------------ */

.news-list,
.news-list li {
  list-style: none;
}

.post-type-archive-news .news-list h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  line-height: 1.2;
  font-weight: normal;
  color: #900f09;
}

.post-type-archive-news .news-list h3,
.related-news .news-list h3,
.news-section h3 {
  font-size: 1.5rem;
  /* font-weight: bold; */
  margin-top: 2rem;
  line-height: 1.2;
  color: #900f09;
}

.news-list article h3 a,
.news-list article h2 a {
  color: inherit;
  text-decoration: none;
}

.news-list article h3 a:hover,
.news-list article h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
}

/* END !SECTION NEWS LIST */
/** -----------------------------------------------------------------
  * SECTION NEWS POST
------------------------------------------------------------------ */

/* Create flex container to reorder content */

.news-post main {
  display: flex;
  flex-direction: column;
}

.news-post aside {
  margin-top: 0;
}

/* Position cover image at top
 * negative margin should match the side padding on main */
.news-post main .news-post-cover-image {
  order: -1;
  max-width: 100vw;
  margin: 0 -2rem;
}

/* Fix image overflow */

.news-post main img {
  max-width: 100%;
}

.news-post .related-news .button {
  padding: 15px;
  background: transparent;
  outline: 3px solid #990f0f;
  color: #900f09;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1.15;
  list-style: none;
}

.news-post .related-news .button:hover,
.news-post .related-news .button:focus {
  background: #990f0f;
  color: #fff;
}

/* min-width should be max-width of main + image negative margin */

@media screen and (min-width: 60em) {
  .news-post main .news-post-cover-image {
    margin: 0 -5rem;
  }
}

/* media query should match content max-width */

@media screen and (min-width: 55em) {
  .related-news .news-list {
    display: flex;
    flex-wrap: wrap;
  }
  .related-news .news-list li {
    width: 40%;
    flex-grow: 1;
  }
  .related-news .news-list article:first-child {
    margin-right: 2rem;
  }
}

/* END !SECTION NEWS POST
/** -----------------------------------------------------------------
  * SECTION NEWS-SECTION
------------------------------------------------------------------ */
/** -----------------------------------------------------------------
    * SECTION Base Styles
  ------------------------------------------------------------------ */
.news-section {
  padding: 5rem 2rem;
}

.news-section h2 {
  margin-bottom: 5rem;
}

/* Reset margins for type elements */
.news-section .news-list h3,
.news-section .news-list p {
  margin: 0;
  margin-bottom: 1rem;
}

/* hide images by default */
.news-section img {
  display: none;
}

/* Establish margin between items (actually creates a 1rem gap) */
.news-section .news-list li {
  margin: 0.5rem;
}

.news-section .button {
  display: block;
  height: 100%;
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  margin: auto;
  margin-top: 4rem;
  padding: 15px;

  background: transparent;
  outline: 3px solid #990f0f;
  color: #900f09;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1.15;
  list-style: none;
}

.news-section .button:hover,
.news-section .button:focus {
  background: #990f0f;
  color: #fff;
}

/* END !SECTION Base Styles */
/** -----------------------------------------------------------------
    * SECTION Feature Itmes
  ------------------------------------------------------------------ */

/* Setup layout to reorder content */
.news-section .news-list li:first-child article,
.news-section .news-list li:nth-child(5) article,
.news-section .news-list li:last-child:nth-child(2) article {
  display: flex;
  flex-direction: column;
}

/* Set image styles for featured stories
 * show image if only two stories
 * fix image width issue
 * put image before heading */
.news-section .news-list li:first-child img,
.news-section .news-list li:last-child:nth-child(2) img,
.news-section .news-list li:nth-child(5) img {
  display: block;
  max-width: 100%;
  order: -1;
}

/* Add space between heading and image */
.news-section .news-list li:first-child h3,
.news-section .news-list li:nth-child(5) h3 {
  margin-top: 1rem;
}

/* END !SECTION Feature Items */
/** -----------------------------------------------------------------
    * SECTION Two Column Layout
  ------------------------------------------------------------------ */

/* Expand to two columns for story 2 and 3*/
@media (min-width: 30em) {
  /* Establish grid*/
  .news-section .news-list {
    display: grid;
  }

  /* Set borders & positions for each news item */
  .news-section .news-list li:first-child {
    border-bottom: 1px solid #ced0d2;
    padding-bottom: 1rem;
  }

  .news-section .news-list li:nth-child(3) {
    padding-left: 1rem;
    border-left: 1px solid #ced0d2;
  }

  .news-section .news-list li:only-child {
    border-bottom: none;
  }

  /* Make first child span all columns */
  /* QUESTION: What is :last-child:nth-child(2)? */
  .news-section .news-list li:first-child,
  .news-section .news-list li:last-child:nth-child(2) {
    grid-column: 1 / 3;
  }

  /* Make child 2 and 3 share the same row */
  .news-section .news-list li:nth-child(2),
  .news-section .news-list li:nth-child(3) {
    grid-row: 2;
  }

  .news-section .news-list li:nth-child(4) {
    grid-row: 3;
    grid-column: 1 / 3;
    border-top: 1px solid #ced0d2;
    padding-top: 1rem;
  }

  /* Use nth-child(5) instead of last-child() in cases where less than 5 items */
  .news-section .news-list li:nth-child(5) {
    padding-top: 1rem;
    grid-column: 1 / 4;
    border-top: 1px solid #ced0d2;
  }
}

/* END !SECTION Two Column Layout */
/** -----------------------------------------------------------------
    * SECTION Three Column Layout
  ------------------------------------------------------------------ */

/* Expand to three columns for stories 1,2,3 50/50 layout for features */
@media (min-width: 40em) {
  /* Switch feature items to grid for layout */
  .news-section .news-list li:first-child article,
  .news-section .news-list li:last-child:nth-child(2) article,
  .news-section .news-list li:nth-child(5) article {
    display: grid;
    grid-template-areas: "img heading" "img content" "img space";
  }

  .news-section .news-list li:first-child h3,
  .news-section .news-list li:last-child:nth-child(2) h3,
  .news-section .news-list li:nth-child(5) h3 {
    grid-area: heading;
    margin-top: 0;
  }

  .news-section .news-list li:first-child p,
  .news-section .news-list li:last-child:nth-child(2) p,
  .news-section .news-list li:nth-child(5) p {
    grid-area: content;
  }

  .news-section .news-list li:first-child img,
  .news-section .news-list li:last-child:nth-child(2) img,
  .news-section .news-list li:nth-child(5) img {
    grid-area: img;
    margin-right: 1rem;
    max-width: 400px;
  }

  /* Make Feature 1 span 3 columns if 4 or more items */
  .news-section .news-list li:first-child:nth-last-child(n + 4) {
    grid-column: 1 / 4;
  }

  /* Move 4th item to row 2, move border */
  .news-section .news-list li:nth-child(4) {
    grid-row: 2;
    grid-column: initial;
    border-top: none;
    border-left: 1px solid #ced0d2;
    padding-left: 1rem;
    padding-top: 0;
  }
}

/* END !SECTION Three Column Layout */
/** -----------------------------------------------------------------
    * SECTION Four Column Layout
  ------------------------------------------------------------------ */

/* Expand to four column layout */
@media (min-width: 70em) {
  /* Move 5th item to side of block and move border */
  .news-section .news-list li:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    border-top: 0;
    border-left: 1px solid #ced0d2;
    padding-left: 1rem;
    padding-top: 0;
    max-width: 350px;
  }

  /* Reset 5th item display to go back to vertical layout */
  .news-section .news-list li:nth-child(5) article {
    display: flex;
  }

  /* When there are two feature items, limit images to 300px */
  .news-section .news-list li:first-child:nth-last-child(5) img,
  .news-section .news-list li:nth-child(5) img {
    max-width: 350px;
  }

  .news-section .news-list li:nth-child(5) article h3 {
    margin-top: 1rem;
  }

  .news-section .news-list li:last-child p {
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}

/* END !SECTION Four Column Layout */
/* END !SECTION NEWS-SECTION */
/* END !SECTION NEWS */

/* MODULE: media queries */

@media screen and (max-width: 26.5625em) {
  .stats .brag {
    font-size: 2.25rem;
  }

  .stats .stats-wrapper .card .back {
    padding: 20px 10px 0;
  }

  .stats .stats-wrapper .card .stat-number {
    font-size: 6rem;
  }

  .stats .stats-wrapper .card p:not(.stat-number),
  .stats .stats-wrapper .card .back p:not(.stat-number) {
    font-size: 1.1rem;
  }

  .bold .cta {
    width: 90%;
  }

  #media .tabs li a {
    padding: 0.5rem 0.5rem;
  }

  #news-view .news-article:not(.featured) {
    padding: 20px 0;
  }
}

@media screen and (min-width: 26.625em) {
  .stats .brag {
    font-size: 3.75em;
  }

  .bold h2 {
    font-size: 5em;
  }

  .internal-page-nav li {
    flex: 1 0 50%;
  }

  #events-view .event-box .event-date span {
    font-size: 4em;
  }

  #social-view .ig-teasers li {
    flex: 0 0 25%;
  }

  #social-view .featured .title {
    font-size: 4.5rem;
  }

  #social-view .featured .social-icon {
    padding: 0 0.25rem;
  }
}

@media screen and (min-width: 39.375em) {
  .bold h2 {
    font-size: 7rem;
  }

  .stats .brag {
    width: 100%;

    font-size: 4.25rem;
  }

  #media .social-icons img {
    width: 45px;
  }

  #news-view .news-article:not(.featured) {
    flex: 0 0 50%;
  }

  #news-view .news-article:nth-child(3)::before {
    display: none;
  }

  #social-view figure {
    flex: 0 0 25%;
  }
}

@media (max-width: 62.5em) {
  .list-box-section .list-box {
    columns: auto 2;
  }
  .hero {
    display: block;
    max-height: none;
    height: auto;
  }
  .hero .hero-image {
    height: auto;
    margin-left: 0;
    width: 100%;
    min-height: 0;
  }
  .hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero .hero-content,
  .hero .hero-title {
    max-width: 100%;
  }
  .hero .button {
    display: block;
    max-width: 450px;
    margin: auto;
    margin-top: 1.5rem;
  }
  .stat-list {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 37.5em) {
  .list-box-section .list-box,
  .third .content .list-box {
    columns: auto 1;
  }
}

@media screen and (min-width: 48em) {
  .internal-page-nav ul {
    flex-wrap: nowrap;
    justify-content: center;

    overflow: hidden;
    white-space: initial;
  }

  .internal-page-nav::before,
  .internal-page-nav::after,
  .internal-page-nav ul::before,
  .internal-page-nav ul::after {
    display: none;
  }

  .internal-page-nav li {
    flex: 1 1 25%;
  }

  .feature-nav li:not(:last-of-type):before {
    left: 47%;
  }

  .feature-box-wrapper li {
    flex: 1 0 25%;
  }

  .feature-box-wrapper li:first-child:nth-last-child(n + 5),
  .feature-box-wrapper li:first-child:nth-last-child(n + 5) ~ li {
    flex: 1 0 33%;
  }

  .stats {
    justify-content: flex-start;
  }

  .stats .brag {
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
  }

  .stats .stats-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .stats .stats-wrapper .stat-number {
    padding-bottom: 0.5rem;
  }

  .stats .stats-wrapper .card-container {
    flex: 0 0 30%;
  }

  .stats .stats-wrapper .card {
    height: 500px;
  }

  .stats .stats-wrapper .card .front {
    justify-content: flex-start;
  }

  .stat .num {
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 3px solid #992020;
    margin-bottom: 0;
  }

  .stat p {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5em;
    text-align: left;
  }

  .stat-list .stat .num {
    margin-bottom: 1rem;
  }

  .bold h2 {
    line-height: 1;
  }

  .bold button {
    width: 50%;
  }

  .info-guide .section-header .description {
    width: 90%;
    max-width: 1000px;

    font-size: 1.5em;
  }

  .link-wrapper .info-link {
    width: 450px;
    margin: 0 30px;
  }

  .highlight .content .media,
  .info-guide .content .media {
    width: 50%;
  }

  .highlight .content .copy-main,
  .info-guide .content .copy-main {
    flex: 0 0 45%;
    width: 50%;
    margin: 40px 0;
  }

  #media button.cta {
    flex: 1 0 40%;
    margin: 1rem 2rem 0.5rem;
  }

  #media .tabs li a {
    padding: 0.5rem 2rem;

    font-size: 1.5rem;
  }

  #news-view {
    justify-content: center;
  }

  #news-view .feature-box span {
    position: initial;
  }

  #news-view .feature-box span::before {
    display: none;
  }

  #news-view .featured h3 {
    padding: 20px;
  }

  #news-view .news-article:nth-child(3)::before {
    display: initial;
  }

  #events-view .event {
    min-height: 620px;
    flex: 1 0 20%;
    margin: 0 0.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  #events-view .event-box {
    height: 100%;
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  #events-view .event-box a {
    height: auto;

    font-size: 1rem;
  }

  #events-view .event-box .event-image {
    display: initial;
  }

  #events-view .event-box .event-date {
    max-height: 121px;
    width: fit-content;
    margin: 1rem;
    padding: 1rem 0;

    border-right: none;
    border-bottom: 1px solid #999;
    text-align: left;
  }

  #events-view .event-box .event-details {
    flex: initial;
  }
}

@media screen and (min-width: 63.625em) {
  #events-view .event-box .event-date span {
    font-size: 5em;
  }

  .link-wrapper .info-link.stack:not(.stack-desktop) {
    margin-top: 0;
  }
}

@media screen and (min-width: 64em) {
  .stats .stats-wrapper .card {
    height: initial;
  }

  .internal-page-nav {
    margin-bottom: 2rem;
  }

  .internal-page-nav li {
    padding: 0;
  }

  .internal-page-nav li:not(:last-of-type):before {
    display: none;
  }

  .internal-page-nav a {
    position: relative;
  }

  .internal-page-nav a::before,
  .internal-page-nav a::after {
    position: absolute;
    height: 14px;
    width: 14px;

    content: "";
    opacity: 0;
    transition: all 0.35s ease;
  }

  .internal-page-nav a::before {
    top: 0;
    left: 0;

    content: "";
    border-top: 3px solid #992020;
    border-left: 3px solid #992020;
    transform: translate(-50%, -50%);
  }

  .internal-page-nav a:after {
    right: 0;
    bottom: 0;

    content: "";
    border-right: 3px solid #992020;
    border-bottom: 3px solid #992020;
    transform: translate(50%, 50%);
  }

  .internal-page-nav a:hover:before,
  .internal-page-nav a:focus:before,
  .internal-page-nav a:hover:after,
  .internal-page-nav a:focus:after {
    color: #333;
    opacity: 1;
    transform: translate(0, 0);
  }

  .feature-nav {
    flex-wrap: wrap;
  }

  .feature-nav li {
    flex: 1 0 12.5%;
    padding: 0;
  }

  .feature-nav li:not(:last-of-type):before {
    top: 50%;
    left: initial;
    right: 0;
    height: 50px;
    width: 1px;

    transform: translateY(-50%);
  }

  .feature-nav li:first-child:nth-last-child(n + 8),
  .feature-nav li:first-child:nth-last-child(n + 8) ~ li {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;

    text-align: left;
  }

  .feature-nav li:first-child:nth-last-child(n + 8):before,
  .feature-nav li:first-child:nth-last-child(n + 8) ~ li:before {
    display: none;
  }

  .feature-nav li:first-child:nth-last-child(n + 8):nth-of-type(odd),
  .feature-nav li:first-child:nth-last-child(n + 8) ~ li:nth-of-type(odd) {
    padding-left: 125px;
  }

  .feature-nav li:first-child:nth-last-child(n + 8):nth-of-type(even),
  .feature-nav li:first-child:nth-last-child(n + 8) ~ li:nth-of-type(even) {
    padding-right: 125px;
  }

  #media .views .view {
    min-height: 620px;
    margin: 0 2rem;
  }

  #media .cta-wrapper {
    flex: 0 0 100%;
  }

  #news-view {
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: repeat(4, auto);
    align-items: center;
    align-content: center;
  }

  #news-view .news-article:not(.featured) {
    margin: 0 20px;
    padding: 20px 0 0;
  }

  #news-view .news-article:nth-child(4)::before {
    display: initial;
  }

  #news-view .featured {
    grid-column: 1 / 2;
    grid-row: 1 / -1;
    align-items: center;
  }

  #news-view .featured .feature-box {
    height: 100%;
    padding: 0;
  }

  #news-view .featured img {
    height: 100%;
  }

  #news-view .featured h3 {
    position: absolute;
    bottom: 0;
  }

  #social-view .featured .title {
    font-size: 5.5rem;
  }
}

@media screen and (min-width: 75em) {
  #news-view .news-article:not(.featured) {
    padding: 2rem 0 1rem;
  }

  #social-view {
    min-height: 620px;
    display: flex;
    flex-wrap: wrap;
  }

  #social-view .featured {
    flex: 0 0 50%;
  }

  #social-view .ig-teasers {
    flex: 0 0 50%;
  }

  #social-view .ig-teasers li {
    flex: 0 0 50%;
  }

  #social-view .featured .title {
    font-size: 6.5rem;
  }
}

@media screen and (min-width: 87.5em) {
  .bold {
    min-height: 700px;
  }

  .bold h2 {
    font-size: 9rem;
  }
}

/* CONTEXT */
/* any contextual styles for changing the above component styles here. */

.third .header-img {
  display: block;
  margin: auto;
  object-fit: cover;
  position: relative;
  z-index: -5;

  height: 600px;
  max-width: 2000px;
  width: 100vw;
  border: 1.5rem solid white;
}

.third .page-wrapper {
  display: grid;
  margin: 0 auto;
}

.third .content-wrapper {
  max-width: 90%;
  margin: 0 auto;
  margin-top: -6.5rem;

  display: flex;
  flex-wrap: wrap;
}

.third .heading-wrapper {
  position: relative;
  width: 100%;
}

.third .heading-wrapper h1 {
  background: white;
  display: inline-block;
  padding: 2rem;
  max-width: 700px;
  margin: 0;
  margin-bottom: 3rem;

  position: absolute;
  bottom: 0;
  left: 0;

  line-height: 1.2;
  letter-spacing: -0.05ch;
  font-size: 3rem;
  text-align: left;
}

.third .content,
.third .sidebar {
  width: 100vw;
  background: white;
  margin: 0;
  display: block;
}

.third .sidebar {
  flex: 1;
  max-width: calc(18.75em + 7.5rem);
  padding: 5rem 2.5rem 5rem 5rem;
}

.third .sidebar .side-nav {
  padding-right: 0;
}

.third .content {
  flex: 3;
  max-width: calc(800px + 7.5rem);
  padding: 5rem;
}

.third .sidebar + .content {
  flex: 3;
  max-width: calc(50em + 7.5rem);
  padding-left: 2.5rem;
}

.third .content > :first-child {
  margin-top: 0;
}

.third .content > h2:first-of-type {
  margin-top: -0.3em;
}

.third .content > img {
  display: block;
  margin: auto;
  max-width: 100%;
}

.third .content h2,
.third .content h3,
.third .content p,
.third .content img,
.third .content table,
.third .content blockquote,
.third .content > ul,
.third .content > ol,
.third .content dl,
.third .content pre {
  margin-bottom: 1.5rem;
}

.third .content p {
  margin-top: 0;
}

.third .content h2,
.third .content h3 {
  margin-top: 3rem;

  font-family: soleil, sans-serif;
  color: #333;
  font-weight: normal;
  text-transform: none;
}

.third .content h2 {
  font-size: 2.5rem;
  width: 100%;
  text-align: left;
}

.third .content h3 {
  font-size: 1.75rem;
}

.third .content ul,
.third .content ol {
  padding-left: 1.5em;
}

.third .content .feature-box-wrapper {
  padding: 0;
  margin-bottom: -1.5rem;
}

.third .content .feature-box-wrapper li {
  margin-bottom: 1.5rem;
}

.third .content .feature-box-wrapper .feature-box h3 {
  margin-top: 0;
}

.third .content .feature-box-wrapper .feature-box h3,
.third .content .feature-box-wrapper .feature-box img {
  margin-bottom: 0.5rem;
}

.third .content .feature-box-wrapper .feature-box,
.third .content .feature-box-wrapper .feature-box p:last-of-type {
  margin: 0;
}

.third .stat-list .stat p {
  text-align: left;
}

.third .stat-list {
  justify-content: left;
}

.third .stat-list .stat::after {
  margin: 0;
}

.third .content .stat-list {
  padding: 0;
}

/* context: media queries */

@media screen and (max-width: 87.5em) {
  .third .content,
  .third .sidebar {
    padding: 3rem;
  }
  .third .sidebar + .content {
    padding-left: 1.5rem;
  }
  .third .sidebar {
    max-width: calc(300px + 3rem);
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 65.625em) {
  .third .content,
  .third .sidebar {
    padding: 1.5rem;
  }
  .third .sidebar + .content {
    padding-left: 1rem;
  }
  .third .sidebar {
    max-width: calc(12.5em + 2rem);
    padding-right: 1rem;
  }

  .third .heading-wrapper h1 {
    max-width: 75%;
  }
}

@media screen and (max-width: 51.25em) {
  .third .content-wrapper {
    display: block;
    margin-top: 0;
    max-width: none;
  }
  .third .heading-wrapper h1 {
    display: block;
    max-width: 100%;
    margin-bottom: 0;

    position: static;
  }
  .third .header-img {
    display: none;
  }
  .third .content,
  .third .sidebar {
    padding: 1.5rem;
    max-width: 100%;
  }
}

/* STATE */
/* component state, not element state (e.g. :hover :active :focus) */

.screen-reader-visible {
  position: absolute;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;

  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;

  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
  overflow: hidden;
}

.landscape,
.desktop {
  display: none;
}

.stack {
  margin-top: 20px;
}

@media (orientation: landscape) {
  .landscape {
    display: initial;
  }
}

@media screen and (max-width: 72.5em) {
  .mobile-expand {
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 67.5em) {
  .expand-universal-nav button .fa.mobile-expand {
    color: #900f0f;
  }

  .brandbar.mobile-expand {
    background: #353535 !important;
  }

  .brandbar .brandbar-nav ul:nth-of-type(1).mobile-expand {
    display: inherit;
  }
}

/* Theme */
/* we probably should rename this WP Theme, styles specific only to WP */
