@import url("https://fonts.googleapis.com/css2?family=Lora:wght@100;300;400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;500;700;900&family=Roboto+Mono:wght@300;400;600;700&display=swap");
html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.25px;
}

h1, .heading {
  font-size: 4.48rem;
  font-weight: 800;
  line-height: 120%;
  margin: 30px 0 15px 0;
}

h2 {
  font-size: 3.84rem;
  font-weight: 800;
  line-height: 120%;
  margin: 30px 0 15px 0;
}

h3 {
  font-size: 3.04rem;
  font-weight: 800;
  line-height: 120%;
  margin: 7.5px 0;
}

h4 {
  font-size: 2.24rem;
  font-weight: 800;
  line-height: 120%;
  margin: 7.5px 0;
}

.lead {
  font-size: 1.92rem;
}

.serif {
  font-family: "Lora", serif;
}

.highlight {
  color: rgba(var(--spark-color-two), 1);
  font-size: 200%;
}

blockquote {
  font-size: 2.24rem;
  font-style: italic;
  width: 80%;
}
blockquote strong {
  position: relative;
}
blockquote strong:after {
  content: "";
  background-color: rgba(var(--spark-color-two), 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  padding: 10px 30px;
  width: 120%;
  height: 100%;
}

.card blockquote {
  width: 100%;
}

/* 
Prevent CSS Transitions from firing on window resize. See related JS in _base.twig 
When the window is resized this can cause the offscreen nav to show. This fixes the issue.
*/
.stop-transitions * {
  animation: none !important;
  transition: none !important;
}
.stop-transitions.open header .navigation {
  display: block;
}

.row {
  position: relative;
}

.shadow {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2) !important;
}
.shadow:after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: 60px;
  right: 0;
  bottom: -30px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(30px);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  grid-gap: 1rem;
}
.tiles.columns-1 {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.tiles.columns-2 {
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.tiles.columns-3 {
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
}
.tiles.columns-4 {
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}
.tiles .item {
  transition: all 120ms cubic-bezier(0.83, 0, 0.17, 1);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  position: relative;
  background: #f3f3f3;
}
.tiles .item:hover {
  transform: translate(0px, 5px) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.tiles .item:hover:after {
  width: 98%;
  bottom: -5px;
  filter: blur(5px) opacity(0.2);
}
.tiles .thumb {
  width: 100%;
  height: auto;
}
.tiles .caption {
  position: relative;
  text-align: left;
  padding: 20px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  width: 100%;
}
.card {
  padding: 30px;
  border: none;
  border-radius: 3px;
}
.card-line {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-right: none;
  border-radius: 0;
}
.card-line:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.card-highlight {
  background: rgba(var(--spark-color-two), 1);
  padding: 15px;
  border-radius: 3px;
  color: #fff;
}
.card-highlight a {
  color: #fff;
  text-decoration: none;
}

.edit-link {
  display: block;
  opacity: 1;
  border-bottom-left-radius: 5px;
  width: 20px;
  height: 20px;
  font-size: 1.28rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0;
  padding: 5px;
  color: black;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
}
.edit-link:hover {
  opacity: 1;
  color: rgba(var(--spark-color-two), 1);
  background-color: white;
}

.columns-2 {
  columns: 2;
  column-gap: 30px;
}
.columns-3 {
  columns: 3;
  column-gap: 30px;
}
.columns-4 {
  columns: 4;
  column-gap: 30px;
}

.divider {
  width: 100%;
  height: 1px;
  display: block;
  border-top: 1px solid rgba(var(--spark-color-two), 1);
  margin: 45px 0;
}

video {
  display: block;
  width: 100%;
  height: auto;
}
video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, transparent) !important;
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  display: block;
}

/* Row Background Image */
section .primary > .row > div[class*=col] {
  z-index: 1;
}

.rowBackgroundImage {
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.btn-special {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  padding: 15px 18px !important;
  display: flex;
  opacity: 0;
  transform: translateY(4rem);
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  border-radius: 3px;
}
.btn-special.active {
  opacity: 1;
  transform: translateY(0);
}
.btn-special.bookmark {
  right: auto;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .btn-special.bookmark {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .row-reverse {
    flex-direction: column-reverse;
  }
}
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.dismiss {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2.24rem;
  cursor: pointer;
  z-index: 999;
}

.hide-desktop {
  display: none;
}

@media only screen and (min-width: 769px) {
  .min-width-300 {
    min-width: 300px;
  }
}
html,
body {
  height: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
}

a {
  color: rgba(var(--spark-color-one), 1);
}
a:hover, a a:focus, a a.active {
  color: rgba(var(--spark-color-two), 1);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  margin: 0 auto;
  position: relative;
}

.site-wrapper {
  margin: 0 auto;
}

hr {
  opacity: 1;
  border: 0;
  height: 1px;
  border-top: 1px solid rgba(var(--spark-color-two), 1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer-text {
  text-align: center;
  margin-top: 60px !important;
}

.container-fluid.expanded {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid.expanded > .row {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid.expanded > .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

/* Row Background Image */
section .primary > .row > div[class*=col] {
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .card-line {
    border: 1px solid rgba(0, 0, 0, 0.5);
  }
  .tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    grid-gap: 1rem;
  }
  .tiles.columns-1, .tiles.columns-2, .tiles.columns-3, .tiles.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .columns-2, .columns-3, .columns-4 {
    columns: 1;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
    padding-top: 18px;
    position: fixed;
    z-index: 999999;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    top: 5px;
    right: 15px;
  }
  .nav-toggle div {
    width: 40px;
    height: 5px;
    position: absolute;
    transform-origin: center center;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  }
  .nav-toggle div.top {
    transform: translateY(-12px);
  }
  .nav-toggle div.bottom {
    transform: translateY(12px);
  }
  .open .nav-toggle {
    transform: rotate(-90deg);
  }
  .open .nav-toggle div {
    width: 40px;
  }
  .open .nav-toggle div.one {
    transform: rotate(45deg);
  }
  .open .nav-toggle div.two {
    transform: rotate(-45deg);
  }
  .open .nav-toggle div.top {
    transform: translateY(-3px);
    opacity: 0;
  }
  .open .nav-toggle div.bottom {
    transform: translateY(3px);
    opacity: 0;
  }
  .navigation {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99999;
    padding: 45px 60px 45px 30px;
    width: calc(100vw - 10%);
    height: 100vh;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .navigation nav ul {
    padding: 0;
    margin: 0;
    display: block;
  }
  .navigation nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation nav ul li a {
    font-size: 1.76rem;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 120%;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0 0 10px;
    height: auto;
  }
  .navigation nav.footer {
    margin-top: 15px;
  }
  .navigation nav.footer ul li a {
    font-size: 1.28rem;
    font-weight: normal;
    height: 26px;
  }
  .open .navigation {
    left: 10%;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.6);
  }
  header {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background: transparent !important;
    background-position: 100% 100%;
    padding: 15px 0 0 0;
    margin-bottom: 15px;
  }
  header .branding {
    max-width: 90%;
  }
  header .branding .brand {
    display: block;
    margin-right: auto;
    margin-bottom: 15px;
    width: 150px;
  }
  header .masthead-title {
    display: none;
  }
  header .ad-unit-wrapper {
    display: none;
  }
  header .themeSelector {
    display: none;
  }
  .tile4,
  .tile3,
  .tile2,
  .tile1 {
    display: block;
  }
  .tile1 {
    margin-bottom: 15px;
  }
  .article {
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .article .article-inside {
    position: relative;
    display: flex;
    padding: 5px;
    height: 100%;
  }
  .article .article-inside a {
    text-decoration: none;
  }
  .article .article-inside a:hover {
    color: rgba(var(--spark-color-two), 1);
    text-decoration: none;
  }
  .article .article-inside .thumb {
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 3px;
    height: 100%;
    width: 80px;
  }
  .article .article-inside .thumb:hover, .article .article-inside .thumb:focus {
    background-color: rgba(var(--spark-color-two), 1);
  }
  .article .article-inside .thumb:hover picture, .article .article-inside .thumb:focus picture {
    opacity: 0.7;
  }
  .article .article-inside .thumb picture {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .article .article-inside .thumb picture img {
    opacity: 0.9;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: revert;
    max-height: revert;
  }
  .article .article-inside .caption {
    padding: 0 0 0 10px;
    width: calc(100% - 80px);
  }
  .article .article-inside .caption a:hover, .article .article-inside .caption a:focus {
    opacity: 0.8;
  }
  .article .article-inside .caption .title {
    font-weight: 600;
    font-size: 1.6rem;
    color: rgba(var(--spark-color-two), 1);
    margin: 0px 0px 5px 0px;
  }
  .article .article-inside .caption .lead {
    font-size: 1.28rem;
    letter-spacing: 0.25px;
    margin: 0;
  }
  .article .article-inside .caption .caption-footer {
    margin-top: 5px;
  }
  .article .article-inside .caption .caption-header,
  .article .article-inside .caption .caption-footer {
    width: 100%;
    font-size: 1.152rem;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.5;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 5px 0px;
    padding: 0;
    list-style: none;
  }
  .article .article-inside .caption .caption-header li,
  .article .article-inside .caption .caption-footer li {
    margin-right: 5px;
  }
  .article .article-inside .caption .caption-header li i,
  .article .article-inside .caption .caption-footer li i {
    margin-right: 2px;
  }
  .article .article-inside .thumb {
    width: 100px;
    height: revert;
  }
  .article .article-inside .caption {
    width: calc(100% - 100px);
  }
  .article .article-inside .caption .lead {
    display: none;
  }
  footer {
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  footer .footer-inner {
    margin: 30px 0 0 0;
    padding: 15px 15px;
  }
  footer .footer-inner .brand {
    padding: 30px 0;
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
  footer .footer-inner .brand img {
    height: auto;
  }
  footer .nav {
    justify-content: center;
  }
  footer .nav li {
    margin: 0 7.5px;
  }
  footer .nav.social {
    font-size: 3.84rem;
  }
  footer .copyright {
    font-size: 1.28rem;
  }
  h1 {
    font-size: 3.5rem !important;
  }
  blockquote {
    margin-top: 30px;
    font-size: 2rem;
  }
  blockquote:before {
    position: static;
    display: block;
  }
  .fui-row {
    display: block;
  }
  .jobPostings tr {
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 2rem;
    padding: 2rem;
    display: block;
  }
  .jobPostings tr td {
    display: block;
    border: none;
  }
  .jobPostings thead {
    display: none;
  }
  .newsletter-section {
    padding: 45px 30px;
  }
  .section-heading {
    border-top: 2px solid rgba(var(--spark-color-two), 1);
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    font-weight: 800;
    min-height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .section-heading h3 {
    margin-right: 10px;
    font-size: 2.24rem;
  }
  .section-heading p {
    font-weight: 400;
  }
  .section-heading .btn {
    padding: 5px 7.5px !important;
    margin: 0 0 0 5px;
  }
  .section-heading.noborder {
    border-top: none;
    margin-top: 0;
  }
  #add-to-homscreen-prompt {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    width: 90%;
    margin: 0 auto;
    z-index: 9999;
    color: white;
    background: black;
    padding: 20px 20px 10px 25px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  #add-to-homscreen-prompt .caption {
    margin-left: 20px;
  }
  #add-to-homscreen-prompt .caption p {
    line-height: 130%;
    margin: 0 0 5px 0;
  }
  #add-to-homscreen-prompt .icon {
    font-size: 2.5rem;
    position: absolute;
    left: 15px;
    top: 25px;
    color: rgba(var(--spark-color-two), 0.8);
  }
  #add-to-homscreen-prompt .btn {
    width: 100%;
    font-size: 2rem !important;
    height: fit-content;
    margin-left: auto;
    color: white;
    background: transparent;
    padding: 0 !important;
  }
  #add-to-homscreen-prompt.show {
    bottom: 0px;
  }
  .ad-unit-wrapper.desktop {
    display: none !important;
  }
  .site-wrapper .container.primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .branding {
    max-width: 250px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style-mobile.css.map */