@font-face {
  font-family: 'Clarendon';
  src: url('/assets/fonts/clarendon_serial-regular-webfont.woff2') format('woff2'),
       url('/assets/fonts/clarendon_serial-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  }

@font-face {
  font-family: 'Clarendon';
  src: url('/assets/fonts/clarendon_serial-medium-webfont.woff2') format('woff2'),
       url('/assets/fonts/clarendon_serial-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  }

@font-face {
  font-family: 'Clarendon';
  src: url('/assets/fonts/clarendon_serial-bold-webfont.woff2') format('woff2'),
       url('/assets/fonts/clarendon_serial-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  }

:root {
  --blue-ultralight: #c6e8f9;
  --blue-ultralight_RGB: 205 231 247;
  --blue-light: #008fff;
  --blue-light_RGB: 0 143 255;
  --blue-mid: #0054e8;
  --blue-mid_RGB: 1 84 232;
  --blue-dark: #002091;
  --blue-dark_RGB: 0 32 145;
  --red: #bf0044;
  --orange: #f15a29;
  --green: #00853f;
  --gray-ultralight: #f6f6f6;
  --gray-ultradark: #111315;
  --slab-f: "Clarendon", serif;
  --slab-ls: 0.05rem;
  --transition-normal: all .25s ease;

  /* theming colors */
  --bg-primary: var(--gray-ultralight);
  --bg-secondary: #fff;
  --bg-accent: var(--blue-ultralight);
  --bg-absolute: #fff;
  --text-primary: #444;
  --text-subtle: var(--bs-gray-500);
  --text-accent-1: var(--blue-light);
  --text-accent-2: var(--blue-dark);
  --text-absolute: #000;
  --text-link: var(--blue-mid);
  --text-link-hover: var(--red);
  --text-link-hover-bg: cornsilk;
  --text-weight-body: 350;
  --text-weight-heading: 400;
  --text-weight-bold: 600;
  --border-color: var(--bs-gray-300);
  --border-color-strong: var(--bs-gray-600);
  color-scheme: light;

  /* BS overwrites that also apply to dark theme */
  --bs-border-color: var(--border-color);
  --bs-card-border-color: var(--border-color);
  }

[data-theme="dark"] {
  --bg-primary: var(--gray-ultradark);
  --bg-secondary: var(--bs-gray-900);
  --bg-accent: #1d252c;
  --bg-absolute: #000;
  --text-primary: var(--bs-gray-300);
  --text-subtle: var(--bs-gray-500);
  --text-accent-1: var(--blue-mid);
  --text-accent-2: var(--blue-light);
  --text-absolute: #fff;
  --text-link: var(--blue-light);
  --text-link-hover: var(--red);
  --text-link-hover-bg: moccasin;
  --text-weight-body: 300;
  --text-weight-heading: 350;
  --text-weight-bold: 500;
  --border-color: #404040;
  --border-color-strong: var(--bs-gray-600);
  color-scheme: dark;
  }

html {
  }

body {
  color: var(--text-primary);
  font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--text-weight-body);
  letter-spacing: .01rem;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.3;
  min-height: 100vh;
  tab-size: 2;
  background: var(--bg-primary);
  overflow-x: hidden;
  }




/* ------------------------------

Color Utilities

------------------------------ */

.color-white { color: #fff !important; }
.color-red { color: var(--red); }
.color-blue-light { color: var(--blue-light); }
.color-blue-mid { color: var(--blue-mid); }
.color-blue-dark { color: var(--blue-dark); }
.color-gray-500 { color: var(--bs-gray-500); }
.color-gray-600 { color: var(--bs-gray-600); }
.color-gray-700 { color: var(--bs-gray-700); }

/* light/dark theming */
.color-subtle { color: var(--text-subtle); }
.color-accent-2 { color:var(--text-accent-2); }

.bg-white { background: #fff }
.bg-blue-ultralight { background: var(--blue-ultralight); }
.bg-blue-light { background: var(--blue-light); }
.bg-blue-mid { background: var(--blue-mid); }
.bg-blue-dark { background: var(--blue-dark); }
.bg-gray-ultralight { background: var(--gray-ultralight); }
.bg-gray-200 { background: var(--bs-gray-200); }
.bg-gray-900 { background: var(--bs-gray-900); }
.bg-black { background: #000; }

/* light/dark theming */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-absolute { background-color: var(--bg-absolute) !important; }

.border-blue-dark { border-color: var(--blue-dark) !important; }
.border-red { border-color: var(--red) !important; }

.border-heavy-y { 
  border-top-width: .5rem !important;
  border-bottom-width: .5rem !important;
  }


/* ------------------------------

Spacing and Sizing Utilities

------------------------------ */

.square { aspect-ratio: 1 }

.mt-6 { margin-top: 4.5rem }
.mb-6 { margin-bottom: 4.5rem }
.my-6 { margin-top: 4.5rem; margin-bottom: 4.5rem } 


@media only screen and (min-width: 992px) {

  .pt-lg-6 { padding-top: 4.5rem !important; }
  .pb-lg-6 { padding-bottom: 4.5rem !important; }
  .py-lg-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }

  .pt-lg-section { padding-top: 7rem !important; }
  .pb-lg-section { padding-bottom: 7rem !important; }
  .py-lg-section { padding-top: 7rem !important; padding-bottom: 7rem !important; }

  .mt-lg-6 { margin-top: 4.5rem !important; }
  .mb-lg-6 { margin-bottom: 4.5rem !important; }
  .my-lg-6 { margin-top: 4.5rem !important; margin-bottom: 4.5rem !important; } 


}


.g-6, .gy-6 { --bs-gutter-y: 4.5rem; }
.g-6, .gx-6 { --bs-gutter-x: 4.5rem; }

  @media (min-width: 992px) {

    .g-lg-6, .gy-lg-6 { --bs-gutter-y: 4.5rem; }
    .g-lg-6, .gx-lg-6 { --bs-gutter-x: 4.5rem; }

  }



.blue-border {
  border-top: .5rem solid var(--bg-accent);
  }



/* ------------------------------

Typography

------------------------------ */

h1, .h1, h2, .h2, h3, .h3 {
  font-family: var(--slab-f);
  font-optical-sizing: auto;
  font-weight: var(--text-weight-heading);
  font-style: normal;
  letter-spacing: var(--slab-ls);
  }

h1 {
  }

h2, .h2 {
  color: var(--text-accent-1);
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: calc(1.75rem + .9vw);
  }

  h2:first-child, .h2:first-child,
  h3:first-child, .h3:first-child { margin-top: 0 }

  @media only screen and (min-width: 1200px) { h2, .h2 { XXXXfont-size: 2.5rem; } }


h3, .h3 {
  color: var(--text-accent-2);
  margin-top: 2rem;
  margin-bottom: 1rem;
  }

h4, .h4 {
  font-family: 'League Spartan';
  color: var(--text-accent-2);
  font-size: 2rem;
  letter-spacing: .01rem;
  }

h5, .h5 {
  color: var(--text-absolute);
  font-family: "League Spartan", sans-serif;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0;
  }

  .color-white h3, 
  .color-white .h3,
  .color-white h4,
  .color-white .h4,
  .color-white h5,
  .color-white .h5,
  .color-white a {
    color: #fff;
    }

.display-1 { font-weight: 400 } /* bs override */

.subtitle { /* assumes other classes like .h5 or .text-uppercase */
  letter-spacing: .1rem;
  }

  .subtitle::after {
    content: "";
    width: 20vw;
    max-width: 200px;
    background: var(--border-color);
    display: block;
    height: 5px;
    margin: 1.4rem auto 1rem auto;
    }

:last-child {
  margin-bottom: 0;
  }

ol li {
  counter-increment: customlistcounter;
  margin-bottom: .25rem;
  padding-left: .5rem;
  }

  ol li::marker {
    color: var(--blue-mid);
    content: counter(customlistcounter) " ";
    font-weight: 700;
    }

.punchylist li { /* best when bullets are preceeded by a <strong> string */
  margin-top: 1rem;
  margin-bottom: 1rem;
  }

.punchylist strong {
  color: var(--text-accent-2);
  }


.slab {
  font-family: var(--slab-f);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 80%;
  letter-spacing: var(--slab-ls);
  }

.lead {
  font-size: 1.6rem;
  font-weight: 350;
  }

.fw-semibold { font-weight: 600 !important; /* bs override */ }

.tight { line-height: 1 }

.smaller { font-size: .9rem } /* for reference, .small is a bootstrap class that goes to 0.875rem */

a { 
  color: var(--text-link);
  transition: var(--transition-normal);
  text-underline-offset: .2rem;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
  }


a:not(:has(img)):hover,
a:not(:has(img)):focus,
a:not(:has(img)):focus-visible,
a:focus-visible {
  background-color: var(--text-link-hover-bg);
  color: var(--text-link-hover);
  }

b, strong { font-weight: var(--text-weight-bold); }

p,
li,
dd {
  text-wrap: pretty;
  }
  
a.list-group-item { /* BS override */
  color: var(--text-link);
  }



/* ------------------------------

Images

------------------------------ */

.featured-image {
  aspect-ratio: 1200 / 630;
  }

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  }

.frame-left {
  box-shadow:
    -50px -50px 0 -40px var(--bg-accent),
    50px 50px 0 -40px var(--bg-accent);
  }

.frame-center {
  box-shadow:
    0 -50px 0 -40px var(--bg-accent),
    0 50px 0 -40px var(--bg-accent);
  }

.frame-right {
  box-shadow:
    50px -50px 0 -40px var(--bg-accent),
    -50px 50px 0 -40px var(--bg-accent);
  }

.img-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  }

.video iframe {
  aspect-ratio: var(--w) / var(--h);
  }



/* ------------------------------

Main Nav

------------------------------ */

.navbar {
  background-color: var(--bg-secondary); /* redundant with body style but keeping the stem here in case circumstances change */
  }

.navbar-brand:focus, .navbar-brand:hover { background-color: transparent; }

.nav-link,
.dropdown-item { 
  color: var(--blue-dark);
  }

  .nav-link:hover,
  .dropdown-item:hover {
    color: var(--red);
    }

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: 0;
  content: "\27A4";
  font-size: 80%;
  border: 1px solid var(--bs-gray-400);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  color: var(--blue-light);
  margin-left: .4rem;
  transform: rotate(90deg);
  }

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  color: var(--red);
  }

.search-form .form-control,
.search-form .btn-minor {
  font-size: 1.1rem;
  }

@media (min-width: 992px) {

  .dropdown-menu-resources {
    width: 700px;
    margin-left: -282px;
    }

}

.dropdown-menu {
  font-size: 1.2rem;
  }

.resources-button::before,
.resources-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background: #BF0044;
  background: linear-gradient(90deg, rgba(191, 0, 68, 1) 0%, rgba(191, 0, 68, 1) 20%, rgba(241, 90, 41, 1) 20%, rgba(241, 90, 41, 1) 40%, rgba(210, 167, 65, 1) 40%, rgba(210, 167, 65, 1) 60%, rgba(129, 203, 172, 1) 60%, rgba(129, 203, 172, 1) 80%, rgba(0, 32, 145, 1) 80%, rgba(0, 32, 145, 1) 100%);  
  left: 0;
  }

  .resources-button::before { top: 0 }
  .resources-button::after { bottom: 0 }


/* ------------------------------

Content Blocks

------------------------------ */


/* 
    Jumbotron
*/

.jumbotron {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  }

  .jumbotron h1.marquee {
    background: rgba(var(--blue-dark_RGB) / .75);
    padding: 1.5rem;
    font-weight: 300;
    }


/* 
    Marquee Wrap for Single Pages
*/

.marquee-wrap {
  background-image: linear-gradient(295deg, hsl(215deg 92% 61%) 0%, hsl(215deg 90% 58%) 18%, hsl(216deg 88% 56%) 26%, hsl(217deg 85% 54%) 33%, hsl(219deg 82% 52%) 39%, hsl(221deg 79% 51%) 44%, hsl(225deg 75% 51%) 50%, hsl(226deg 74% 47%) 56%, hsl(227deg 74% 44%) 61%, hsl(228deg 76% 40%) 67%, hsl(229deg 78% 37%) 74%, hsl(229deg 82% 33%) 82%, hsl(229deg 89% 29%) 100%);
  box-shadow: 0 0 0 5px var(--bg-accent);
  overflow: hidden;
  position: relative;
  z-index: 1;
  }

  .marquee-wrap::after {
    --a: var(--blue-mid);
    --b: var(--blue-light);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      linear-gradient(45deg, var(--a) 45px, transparent 45px)64px 64px,
      linear-gradient(45deg, var(--a) 45px, transparent 45px,transparent 91px, var(--b) 91px, var(--b) 135px, transparent 135px),
      linear-gradient(-45deg, var(--a) 23px, transparent 23px, transparent 68px,var(--a) 68px,var(--a) 113px,transparent 113px,transparent 158px,var(--a) 158px);
      background-color:var(--b);
      background-size: 128px 128px;
    opacity: 1;
    mix-blend-mode: color-burn;
    z-index: 0;
    }

  .marquee-wrap-content {
    position: relative;
    z-index: 2;
    }

  .marquee-wrap-wave {
    content: "";
    display: block;
    width: 130%;
    background-color: var(--bg-accent);
    transform: rotate(-7.5deg);
    position: absolute;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 50%;
    top: 0;
    bottom: 0;
    left: -15%;
    z-index: -1;
    }

    @media only screen and (min-width: 1200px) { .marquee-wrap-wave { transform: rotate(-6deg); } }

    .marquee-wrap blockquote {
      font-family: var(--slab-f);
      font-optical-sizing: auto;
      font-style: normal;
      line-height: 1.4;
      letter-spacing: var(--slab-ls);
      }

      .marquee-wrap blockquote cite {
        font-size: 1rem;
        }

        .marquee-wrap blockquote cite::before {
          content: "\2014\00A0";
          }


/* 
    Breadcrumb
*/

.breadcrumb-wrapper {
  background-color: var(--border-color);
  }

.breadcrumb {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  }

  .breadcrumb-item {
    margin-left: 0;
    padding-left: 0;
    }

    .breadcrumb-item::marker {
      content: "";
      }

  .breadcrumb-item.active {
    color: var(--text-primary);
    }



/* 
    Events
*/

a.event { 
  display: block;
  padding: 40px; /* lines up with frame-center */
  text-decoration: none;
  color: #222;
  border: 1px solid var(--blue-ultralight);
  background: rgba(var(--blue-ultralight_RGB) / .1);
  }

  a.event, a.event * { transition: var(--transition-normal); }

  a.event:hover {
    border-color: var(--red);
    background: #fff;
    }

    a.event:hover .event-title { color: var(--red); }

  a.event.frame-center:hover {
    box-shadow:
    0 -45px 0 -40px var(--red),
    0 45px 0 -40px var(--red);
  }



/*
    Homepage
*/

.map {
  background-image:
    url(/assets/img/map4.webp),
    linear-gradient(180deg,var(--bg-accent) 0%, var(--bg-primary) 100%);
  background-repeat: 
    no-repeat, no-repeat;
  background-blend-mode: luminosity;
  background-size: 50%, 100%;
  }

.homepage-jumbo {
  min-height: 60vh;
  }

  @media only screen and (min-width: 992px) {

    .homepage-jumbo { min-height: 75vh; }

  }

.homepage-title p {
  font-family: 'League Spartan';
  font-size: 1.6rem;
  letter-spacing: .01rem;
  text-decoration: underline;
  text-decoration-color: var(--blue-mid);
  text-decoration-thickness: 1.32em;
  text-underline-offset: -0.92em;
  text-decoration-skip-ink: none;
  }

  .homepage-title p:first-of-type { text-decoration-color: var(--blue-light); }
  .homepage-title p:last-of-type { text-decoration-color: var(--blue-dark); }

  @media only screen and (min-width: 992px) {

    .homepage-title p {
      font-size: 2rem;
      text-decoration-thickness: 1.35em;
      text-underline-offset: -0.95em;
      }

  }


/*
    Images
*/

[data-theme="dark"] img { filter: brightness(85%); } /* dim the images slightly in dark mode */


/* 
    Individual Event Page
*/

.cal-date {
  line-height: .8;
  }

.cal-year {
  padding-bottom: 1rem;
  font-size: 1.7rem;
  }

/* --- MapBox styles --- */

.map-container {
  max-width: 960px; /* width of col-9 */
  margin: 0 auto;
  }

.map-image {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-sm);
  }

.loading {
  text-align: center;
  padding: 50px;
  color: #666;
  }

.error {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  }


/*
    Resource Card
*/

.resource-contact-link.website {
  font-family: monospace;
  font-size: 70%;
  }

.resource-contact-link.facebook,
.resource-contact-link.instagram {
  width: 30px;
  height: 30px;
  }

.card,
.card-header,
.card-footer {
  border-color: var(--border-color) !important;
  }

.card-body, .card-footer { color: var(--text-primary); }

.resource .card-header {
  padding-top: calc(var(--bs-card-cap-padding-y) + .25rem); /* slight visual adjustment to accomodate tags */
  }


/* 
    Tables
*/

.table td, 
.table th { 
  color: var(--text-primary);
  border-color: var(--border-color);
  }

.table.bg-transparent th,
.table.bg-transparent td {
  background-color: transparent !important;
  }


/* 
    Tag
*/

.tag {
  --tag-icon-stroke-width: 2;
  --tag-icon-stroke-color: white;
  background-color: var(--blue-mid);
  color: #fff;
  padding: 5px 10px 1px 10px;
  text-transform: uppercase;
  font-size: .8rem;
  border-radius: .2rem;
  letter-spacing: .05rem;
  }

  .tag.d-inline-flex {
    padding: 5px 10px;
    }

  [data-theme="dark"] .tag { background-color: var(--blue-dark); }

/* tag coloring */

/* red */
.tag.issue,
.tag.tag-crisis-center {
  background-color: var(--red);
  }

/* any tag containing the word "pantry" */ 
.tag[class*="pantry"] { background-color: goldenrod; }
.tag.tag-child-care-support { background-color: mediumaquamarine; }
.tag.tag-reproductive-care { background-color: lightcoral; }
.tag.tag-mental-health { background-color: cornflowerblue; }


/* orange */
.tag.news {
  background-color: var(--orange);
  }

/* tag icons */

.tag.tag-icon::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-position: 50%;
  margin-right: 5px;
  }

.tag.tag-crisis-center::before { background-image: url(/assets/img/icons/heart.svg); }
.tag.tag-food-pantry::before { background-image: url(/assets/img/icons/wheat.svg); }
.tag.tag-child-care-support::before { background-image: url(/assets/img/icons/baby-bottle.svg); }
.tag.tag-mental-health::before { background-image: url(/assets/img/icons/flower.svg); }
.tag.tag-reproductive-care::before { background-image: url(/assets/img/icons/venus.svg); }


/*
    Image Carousel
*/

.carousel-indicators {
  margin-bottom: -1.9rem;
  }

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 50%;
  background-color: var(--blue-light);
  border: 2px solid #fff;
  }

  @media only screen and (min-width: 992px) {

    .carousel-indicators {
      margin-bottom: -2.7rem;
      }

    .carousel-indicators [data-bs-target] {
      width: 18px;
      height: 18px;
      margin-left: 6px;
      margin-right: 6px;
      }

  }

.carousel-indicators .active {
  opacity: 1;
  box-shadow: 0 0 10px #fff;
  }





/* ------------------------------

Forms and Buttons

------------------------------ */


.form-control {
  font-size: 1.3rem;
  }

.btn {
  background-color: var(--green);
  color: #fff;
  padding-top: calc(var(--bs-btn-padding-y) + .3rem);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .05rem;
  transition: var(--transition-normal);
  }

  .btn.small { font-size: .875em; }

  a.event:hover .btn,
  a.event:focus .btn,
  .btn:hover,
  .btn:focus,
  .btn.btn-minor:hover,
  .btn.btn-minor:focus { 
    color: #fff;
    background: var(--blue-dark);
    }

.btn.btn-major {
  font-size: 2rem;
  border-radius: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .5);
  text-shadow: 0 -2px 2px rgba(0, 0, 0, .2);
  }

  .btn.btn-major:hover {
    padding-top: calc(var(--bs-btn-padding-y) + .35rem);
    padding-bottom: calc(var(--bs-btn-padding-y) - .05rem);
    box-shadow: 0 .05rem .1rem rgba(0, 0, 0, .4);
    text-shadow: 0 0 0 rgba(0, 0, 0, .2);
    background-color: var(--blue-dark);
    } 

.btn.btn-minor {
  background-color: var(--bg-accent);
  border: 1px solid var(--bg-accent);
  color: var(--text-accent-2);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .025rem;
  }

.btn.btn-subtle {
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-accent-2);
  font-size: 1rem;
  text-transform: uppercase;
  padding: 
    var(--bs-btn-padding-y) 
    var(--bs-btn-padding-x)
    calc(var(--bs-btn-padding-y) - .3rem)
    var(--bs-btn-padding-x);
  }

  .btn.btn-subtle:hover,
  .btn.btn-subtle:focus,
  .btn.btn-subtle:focus-visible {
    background-color: var(--bg-accent);
    border-color: var(--border-color-strong);
    }

.entry__error {
  border: 1px solid var(--red);
  padding: 1rem;
  color: var(--red);
  margin: 1rem 0;
  }

input[type="checkbox"], label { cursor: pointer; }



/* ------------------------------

Footer

------------------------------ */

.social-icons a {
  background-color: #000;
  border: 10px solid #000;
  border-radius: var(--bs-border-radius);
  position: relative;
  }

  .social-icons a:hover,
  .social-icons a:focus {
    background-color: moccasin;
    border-color: moccasin;
    }

  .social-icons a::before {
    content: "";
    display: block;
    width: 55px;
    height: 55px;
    top: -10px;
    left: -10px;
    background-color: transparent;
    position: absolute;
    mix-blend-mode: hue;
    filter: blur(10px);
    transition: var(--transition-normal);
    }

    .social-icons a:hover::before,
    .social-icons a:focus::before {
      background-color: var(--red);
      }

.bottom-links a {
  
  color: #fff;
  margin: .3rem 0;
  text-underline-offset: .2rem;
  }

  @media only screen and (min-width: 992px) {

    .bottom-links a {
      display: inline-block;
      margin: 0 .7rem;
      }

    .bottom-links a:first-of-type {
      margin-left: 0;
      }

    .bottom-links a:last-of-type {
      margin-right: 0;
      }

  }



::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}







/* ==========================================================================
   Helper classes
   ========================================================================== */


.hidden,
[hidden] {
  display: none !important;
  }

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  }

  .visually-hidden.focusable:active,
  .visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
    }


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */




