/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.card {
  --bs-card-spacer-y: 1em;
  --bs-card-spacer-x: 1em;
  --bs-card-title-spacer-y: 0.5em;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5em;
  --bs-card-cap-padding-x: 1em;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1em;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 641px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

figure {
  border-radius: 10px;
  max-width: 1424px !important;
  max-height: 632px !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 0 3rem 0; }
  figure .feature-img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; }

article.content-area h1,
article.content-area h2,
article.content-area h3,
article.content-area h4,
article.content-area h5,
article.content-area h6,
article.content-area .h1,
article.content-area .h2,
article.content-area .h3,
article.content-area .h4,
article.content-area .h5,
article.content-area .h6 {
  color: #111111; }

article.content-area .h1,
article.content-area .h2,
article.content-area .h3,
article.content-area .h4,
article.content-area .h5,
article.content-area .h6,
article.content-area h4,
article.content-area h5,
article.content-area h6 {
  font-family: "Formata-Regular";
  font-weight: 400; }

article.content-area p a {
  font-weight: 700;
  color: #7b7c80; }
  article.content-area p a:hover {
    color: #ffc729; }

article.content-area h1 {
  font-size: clamp(1.875rem, calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320))), 2.5rem); }

article.content-area h2 {
  font-size: clamp(1.875rem, calc(30px + (30 - 30) * ((100vw - 320px) / (1920 - 320))), 1.875rem); }

article.content-area h3 {
  font-size: clamp(1.5rem, calc(24px + (20 - 24) * ((100vw - 320px) / (1920 - 320))), 1.25rem); }

article .entry-meta {
  color: #7b7c80;
  margin-bottom: 1rem;
  font-size: 16px; }
  article .entry-meta .posted-on {
    display: block; }
  article .entry-meta .sep {
    width: 6px;
    height: 6px;
    background-color: #ffc729;
    border-radius: 50%;
    margin: 7px 8px 5px 8px; }

.blog-sidebar {
  border-radius: 10px;
  background-color: #343131;
  padding: 3rem 0; }
  .blog-sidebar .h2 {
    color: #eeeff0;
    margin: 0 2rem 0 2rem; }
  .blog-sidebar .blog-card-sm {
    padding: 2rem 2rem;
    border-bottom: 1px solid #7b7c80; }
    .blog-sidebar .blog-card-sm .entry-meta {
      color: #7b7c80;
      margin-bottom: 1rem;
      font-size: 16px; }
      .blog-sidebar .blog-card-sm .entry-meta .posted-on {
        display: block; }
      .blog-sidebar .blog-card-sm .entry-meta .sep {
        width: 6px;
        height: 6px;
        background-color: #ffc729;
        border-radius: 50%;
        margin: 7px 8px 5px 8px; }
    .blog-sidebar .blog-card-sm .h3 {
      display: block;
      color: #eeeff0;
      font-size: 24px;
      margin-bottom: 1.5rem;
      line-height: 1.5; }
      .blog-sidebar .blog-card-sm .h3:hover {
        color: #ffc729; }
    .blog-sidebar .blog-card-sm:last-of-type {
      border: 0;
      padding-bottom: 0; }
