@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: 100%;
  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;
}

h5 {
  font-size: 1.536rem;
  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%;
}

.text-purple {
  color: #6640D6;
}

/* 
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%;
}
@media only screen and (max-width: 768px) {
  .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;
  }
}
.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%;
}

@media only screen and (max-width: 768px) {
  .image {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

.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) {
  body {
    padding-top: 0px;
  }
  .nav-toggle {
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 999999;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: rgba(var(--spark-color-two), 1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 600ms cubic-bezier(0.83, 0, 0.17, 1);
  }
  .nav-toggle p {
    color: rgba(var(--spark-color-two-inverse), 1);
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .nav-toggle p .left {
    display: flex;
    position: absolute;
    left: 15px;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    font-size: 2rem;
  }
  .nav-toggle p .right {
    float: right;
    display: flex;
    position: absolute;
    right: 15px;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    font-size: 2rem;
  }
  .open .nav-toggle {
    width: 50%;
    background: rgba(var(--spark-color-two-inverse), 1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .open .nav-toggle p {
    color: rgba(var(--spark-color-two), 1);
  }
  .open .nav-toggle .left {
    transform: rotate(180deg);
  }
  .open .nav-toggle .right {
    transform: rotate(180deg);
  }
  .navigation {
    position: fixed;
    top: calc(-100% - 10px);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    padding: 60px 60px 30px 30px;
    width: 100%;
    max-height: 90vh;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
    overflow-y: scroll;
    overflow-x: hidden;
    background: rgba(var(--spark-color-two), 1);
    color: rgba(var(--spark-color-two-inverse), 1);
  }
  .navigation nav ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 10px;
  }
  .navigation nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation nav ul li a {
    display: revert;
    font-size: 1.6rem;
    letter-spacing: 0px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    align-items: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
  }
  .navigation .primary {
    margin-bottom: 15px;
  }
  .navigation .primary ul li:first-child {
    grid-column: 1/span 2;
  }
  .navigation .secondary {
    margin-bottom: 15px;
  }
  .navigation .secondary li {
    display: none;
  }
  .navigation .secondary li.search-form {
    display: block;
    width: 100%;
    grid-column: 1/span 2;
  }
  .navigation .secondary li.search-form .form-control.keywords {
    padding: 5px !important;
    font-size: 1.4rem !important;
  }
  .navigation .secondary li.search-form button {
    padding: 5px !important;
    font-size: 1.4rem !important;
    height: 32px;
    width: 44px;
  }
  .navigation .footer {
    margin-bottom: 15px;
  }
  .navigation .footer ul li a {
    font-size: 1.12rem;
    height: 22px;
  }
  .open .navigation {
    top: 0px;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.6);
  }
}/*# sourceMappingURL=nav-mobile-c.css.map */