#top-nav {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 123, 0, 0.95);
}

.nav-link {
  padding: .2rem 0;
}

.navbar-brand {
  display: inline-block;
  padding-top: .0125rem;
  padding-bottom: .0125rem;
  margin-right: 0;
  line-height: inherit;
  white-space: nowrap;
}

.brand-text {
  font-size: x-large
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

.banner-image {
  background-image: url("https://mskiesstorage.blob.core.windows.net/www-images/three_marmalade_jars.jpg");
  background-attachment: fixed;
  background-position-x: center;
  /* Maybe try a parallax scrolling effect */

  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  height: 35vh;
}

.banner-image {
  min-height: 200px;
}

@media (min-width: 576px) {
    .banner-image {
        min-height: 200px
    }
}

@media (min-width: 768px) {
  .banner-image {
    min-height: 200px
  }
}

@media (min-width: 992px) {
  .banner-image {
    min-height: 250px
  }
}

@media (min-width: 1200px) {
  .banner-image {
    min-height: 300px
  }
}

@media screen and (max-device-width: 1024px) {
  .banner-image {
    background-attachment: scroll
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}

.title-block {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.page-title {
  font-size: x-large;
  font-weight: 700;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    column-count: 3;
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
}

@media (min-width: 576px) {
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.card-columns .card {
  margin-bottom: .75rem;
}

.card {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
}
      